@font-face {
    font-family: 'Zoho Puvi';
    src: url('../fonts/zoho-puvi/Zoho Puvi Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Zoho Puvi';
    src: url('../fonts/zoho-puvi/Zoho Puvi Semibold.ttf') format('truetype');
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Zoho Puvi';
    src: url('../fonts/zoho-puvi/Zoho Puvi Bold.ttf') format('truetype');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --blue: #0369e2;
    --blue-dark: #263fd5;
    --green: #1ab268;
    --yellow: #f1b620;
    --ink: #141821;
    --muted: #B8B8B8;
    --line: #dfddd5;
}

* {
    box-sizing: border-box;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    margin: 0;
    font-family: 'Zoho Puvi', Arial, sans-serif;
    color: var(--ink);
    background: #02090A;
    overflow-x: hidden;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.section-kicker {
    margin: 0 0 10px;
    color: var(--yellow);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-kicker.cyan {
    color: #05F2FF;
    font-size: 20px;
    font-weight: 600;
}

.section-title {
    margin: 0 0 12px;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 0;
    color: #fff;
}

.section-sub {
    max-width: 760px;
    margin: 0 0 30px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    min-height: 72px;
    margin-bottom: 0;
    background: #030707;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

.header-nav .container {
    display: flex;
    align-items: center;
    min-height: 72px;
}

@media (min-width: 1400px) {
    .container {
        width: 1260px;
    }
}

.header-nav .navbar-header {
    float: none;
}

.header-nav .navbar-brand {
    display: inline-flex;
    align-items: center;
    height: 72px;
    padding: 0;
    margin-left: 0 !important;
    margin-right: 40px;
}

.header-nav .navbar-brand img {
    width: 158px;
    height: auto;
}

.header-nav .navbar-collapse {
    flex: 1;
    padding-left: 0;
    padding-right: 0;
}

.nav-main,
.nav-links {
    display: flex;
    align-items: center;
}

.nav-main {
    width: 100%;
    justify-content: space-between;
}

.nav-links {
    gap: 4px;
    margin-left: 0;
}

.nav-links>li>a {
    padding: 28px 16px !important;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

.nav-cta {
    margin-left: auto;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    margin-top: 72px;
    overflow: hidden;
    background: #0b0f10;
}

.hero-video-shell,
.hero-video,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.38) 100%),
        rgba(0, 0, 0, 0.12);
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 230px;
    padding-bottom: 80px;
    color: #fff;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.hero-flag-icon {
    flex-shrink: 0;
    width: 22px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero-title {
    max-width: 930px;
    margin: 0 0 18px;
    font-size: 70px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0;
}

.hero-subtitle {
    max-width: 880px;
    margin: 0 0 28px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-primary-btn,
.hero-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.hero-primary-btn {
    background: linear-gradient(90deg, #FFD888 0%, #DB9400 100%);
    color: #111 !important;
    border: none;
}

.hero-primary-btn:hover,
.hero-primary-btn:focus {
    background: #f5f5f5;
    color: #111 !important;
}

.hero-secondary-btn {
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.88);
}

.hero-secondary-btn:hover,
.hero-secondary-btn:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
}

.seller-showcase {
    padding: 80px 0 60px;
    background: #040608;
    color: #fff;
}

.seller-heading {
    margin-bottom: 54px;
}

.seller-heading h2 {
    margin: 0;
    font-size: 0;
}

.seller-heading-top,
.seller-heading-line {
    display: block;
}

.seller-heading-top,
.seller-muted,
.seller-gradient {
    font-size: 40px;
    line-height: 1.2;
}

.seller-heading-top {
    margin-bottom: 6px;
    color: #fff;
    font-weight: 400;
}

.seller-muted {
    color: #95959d;
}

.seller-gradient {
    font-weight: 500;
    background: linear-gradient(90deg, #67adff 0%, #00c972 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.seller-rotating-text {
    display: inline;
    white-space: nowrap;
}

.seller-no {
    display: inline;
}

.seller-rotator {
    display: inline-block;
    vertical-align: bottom;
    overflow: hidden;
    text-align: left;
}

.seller-rotator-inner {
    display: block;
    will-change: transform;
}

.seller-rotator-item {
    display: block;
    line-height: 1.2;
    white-space: nowrap;
}

.seller-grid {
    margin-left: -12px;
    margin-right: -12px;
    display: flex;
    justify-content: start;
    align-items: stretch;
}

.seller-col {
    padding-left: 10px;
    padding-right: 10px;
}

.seller-col-side {
    flex: 0 0 320px;
    max-width: 320px;
}

.seller-col-center {
    flex: 0 0 553px;
    max-width: 553px;
}

.seller-card {
    height: 100%;
    overflow: hidden;
    background: #111;
    width: 100%;
    height: 496px;
    aspect-ratio: auto;
}

.seller-card-wide {
    width: 100%;
    height: 496px;
    border-radius: 0px;
}

.seller-col-side .seller-card {
    border-radius: 0 10px 10px 0;
}

.seller-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare-section {
    margin: 0;
    padding: 88px 0;
    border-radius: 50px 50px 0 0;
    background: radial-gradient(73.76% 73.76% at 50% 26.24%, rgba(25, 68, 70, 0.33) 0%, #061a1c 100%);
    color: #fff;
    overflow: hidden;
}

.compare-section .section-title span {
    background: linear-gradient(90deg, #FF9933 0%, #FFFFFF 50%, #10BD00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.compare-section .section-sub {
    max-width: 720px;
    color: #c7d0d1;
    margin-bottom: 44px;
}

.compare-table-wrap {
    margin-bottom: 0;
    border-top: 0;
    border-bottom: 0;
}

.compare-table {
    min-width: 900px;
    margin-bottom: 0;
    table-layout: fixed;
}

.compare-table>thead>tr>th,
.compare-table>tbody>tr>td {
    padding: 20px 14px;
    border: 0;
    border-bottom: 1px solid #838383;
    color: #eef4f5;
    font-size: 18px;
    line-height: 1.5;
    vertical-align: middle;
}

.compare-table>thead>tr>th {
    font-size: 18px;
    font-weight: 700;
    border-bottom: 2px solid #fff;
}

.compare-table .accent {
    color: #0369E2;
    text-transform: uppercase;
}

.compare-table>thead>tr>th:first-child {
    width: 40%;
    padding-right: 8px;
}

.compare-table>thead>tr>th:nth-child(2),
.compare-table>tbody>tr>td:nth-child(2) {
    background: #eef8d9;
    color: #00B364;
    font-weight: 600;
    white-space: nowrap;
}

.compare-table>thead>tr>th:nth-child(2),
.compare-table>tbody>tr>td:nth-child(2) {
    width: 314px;
    padding-left: 28px;
    padding-right: 18px;
    border-bottom: 2px solid #838383;
}

.compare-table>thead>tr>th:nth-child(3),
.compare-table>tbody>tr>td:nth-child(3) {
    width: auto;
    padding-left: 60px;
}

.compare-table>thead>tr>th:nth-child(2) {
    color: #1f4fff;
}

.compare-table>tbody>tr>td:nth-child(2) {
    color: #00c972;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.compare-table>thead>tr>th:nth-child(2),
.compare-table>tbody>tr>td:nth-child(2) {
    border-left: 0;
    border-right: 0;
}

.compare-table>thead>tr>th:nth-child(2) {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.compare-table td:first-child {
    font-weight: 400;
}

.compare-table .no {
    font-weight: 600;
}

.status-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    position: relative;
    vertical-align: -2px;
}

.status-icon.check {
    border: 2px solid #00d26f;
    border-radius: 50%;
}

.status-icon.check:after {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 7px;
    height: 4px;
    border-left: 2px solid #00d26f;
    border-bottom: 2px solid #00d26f;
    transform: rotate(-45deg);
}

.status-icon.cross:before,
.status-icon.cross:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    width: 2px;
    height: 16px;
    background: #ff2323;
}

.status-icon.cross:before {
    transform: rotate(45deg);
}

.status-icon.cross:after {
    transform: rotate(-45deg);
}

.compare-actions {
    margin-top: 44px;
}

.compare-note {
    margin: 16px 0 0;
    color: #d7dddd;
    font-size: 14px;
    line-height: 1.6;
}

.pricing-section {
    padding: 76px 0;
    background: #212121;
    text-align: center;
    border-top: 1px solid rgba(236, 228, 213, 0.12);
    border-bottom: 1px solid rgba(236, 228, 213, 0.12);
}

.pricing-section .section-title,
.pricing-section .section-sub,
.pricing-section .switch-label,
.pricing-section .switch-label em,
.pricing-section .pricing-explore a {
    color: #f5f3ee;
}

.pricing-section .section-title span {
    color: #FFE000;
}

.pricing-section .section-sub {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.billing-switch-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 28px 0 44px;
}

.switch-label {
    color: #f5f3ee;
    font-size: 14px;
    font-weight: 700;
}

.switch-label em {
    color: #d8dbe1;
    font-size: 12px;
    font-weight: 600;
}

.billing-switch {
    position: relative;
    width: 45px;
    height: 25px;
    margin: 0;
}

.billing-switch input {
    display: none;
}

.billing-slider {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #c8cfdd;
    cursor: pointer;
    transition: background 0.2s ease;
}

.billing-slider:before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s ease;
}

.billing-switch input:checked+.billing-slider {
    background: #225fe6;
}

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

.pricing-board {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(236, 228, 213, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(37, 245, 255, 0.02) 100%);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
    border-radius: 10px;
}

/* .pricing-board::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(236, 228, 213, 0.08) 1px, transparent 1px) 0 0 / 25% 100%,
        linear-gradient(90deg, rgba(236, 228, 213, 0.05) 1px, transparent 1px) 0 0 / 50% 100%,
        linear-gradient(90deg, rgba(236, 228, 213, 0.03) 1px, transparent 1px) 0 0 / 75% 100%;
    opacity: 0.35;
    pointer-events: none;
}

.pricing-board::after {
    content: '';
    position: absolute;
    inset: 10px 12px;
    border-left: 1px solid rgba(236, 228, 213, 0.18);
    border-right: 1px solid rgba(236, 228, 213, 0.18);
    pointer-events: none;
} */

.price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 0;
}

.price-row:before,
.price-row:after {
    content: none;
}

.price-col {
    display: flex;
    padding: 0;
    border-right: 1.5px solid rgba(236, 228, 213, 0.18);
}

.price-col:last-child {
    border-right: 0;
}

.price-card {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    padding: 30px 22px 30px;
    text-align: left;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(153, 153, 153, 0.1) 100%);
    border-right: 1.5px solid rgba(236, 228, 213, 0.2);
    color: #f5f3ee;
    z-index: 1;
}

.price-card.active {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(37, 245, 255, 0.2) 100%);
    border-right-color: rgba(37, 245, 255, 0.28);
    box-shadow: inset 0 0 0 1px rgba(37, 245, 255, 0.15);
}

.price-card h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
}

.price-desc {
    min-height: 32px;
    margin-bottom: 10px;
    color: #e1e4eb;
    font-size: 12px;
    line-height: 1.5;
}

.price {
    margin-bottom: 2px;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
}

.price-card.active .price {
    color: #FFE000;
}

.price span {
    color: inherit;
    font-size: 30px;
    font-weight: 700;
}

.price span:last-child {
    font-size: 24px;
}

.billed-text {
    min-height: 30px;
    margin-bottom: 12px;
    color: #edf2ff;
    font-size: 12px;
    font-weight: 600;
}

.price-features {
    flex: 1;
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
}

.price-features li {
    position: relative;
    padding: 6px 0 6px 22px;
    border-bottom: 1px solid rgba(236, 228, 213, 0.14);
    color: #eff4ff;
    font-size: 13px;
    line-height: 1.45;
}

.price-features li:last-child {
    border-bottom: 0;
}

.price-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFE000;
    font-weight: 800;
}

.price-features .feature-inherit {
    color: #FFE000;
    font-weight: 700;
}

.price-features .feature-inherit:before {
    content: '+';
    color: #FFE000;
}

.price-card .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 40px;
    margin: auto;
    margin-top: auto;
    padding: 9px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.price-card .btn-warning {
    background: #fff;
    color: #262626;
    border: none;
}

.price-card .btn-primary {
    background: linear-gradient(135deg, #FFE000 0%, #FFE000 100%);
    border-color: #FFE000;
    color: #07131f;
}

.pricing-explore {
    padding: 18px 10px;
    border-top: 1px solid rgba(236, 228, 213, 0.14);
    text-align: center;
}

.pricing-explore a {
    color: #f5f3ee;
    font-size: 16px;
    font-weight: 700;
}

.feature-showcase-section {
    padding: 76px 0;
    background: linear-gradient(180deg, #07111b 0%, #04080d 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
}

.feature-showcase-section .section-title span {
    color: #25f5ff;
}

.feature-showcase-section .section-sub {
    max-width: 820px;
    color: #dbe2ec;
}

.feature-showcase-grid {
    margin-top: 32px;
}

.feature-card-wrap {
    margin-bottom: 24px;
}

.feature-show-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    padding: 18px;
    border-radius: 24px;
    /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%); */
    /* border: 1px solid rgba(255, 255, 255, 0.08); */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.feature-show-card img {
    width: 100%;
    max-width: 355px;
    height: auto;
    aspect-ratio: 355 / 258;
    margin: 0 auto 18px;
    border-radius: 20px;
    object-fit: cover;
}

.feature-img1 {
    box-shadow: 0 0 10px 0 #F9ECC5;
}

.feature-img2 {
    box-shadow: 0px 0px 10px 0px #AAD0D0;
}

.feature-img3 {
    box-shadow: 0px 0px 10px 0px #D2D7F4;

}

.feature-show-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -1px;
}

.feature-show-card p {
    margin: 0;
    color: #B9B9B9;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
}

.growth-metrics-section {
    padding: 76px 0;
    background: #34004C;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    border-radius: 50px;
}

.growth-metrics-section .section-title {
    text-align: center;
}

.growth-metrics-section .section-title span {
    color: #25f5ff;
}

.growth-metrics-section .section-sub {
    color: #e5d8f1;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.growth-metrics-grid {
    margin-top: 50px;
}

.growth-metric-wrap {
    display: flex;
    margin-bottom: 24px;
    padding-left: 8px;
    padding-right: 8px;
}

.growth-metric-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 32px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.growth-metric-number {
    display: inline-block;
    margin-bottom: 14px;
    color: #FFBD00;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.growth-metric-card h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.growth-metric-card p {
    margin: 0;
    color: #C1C1C1;
    font-size: 17px;
    font-weight: 400;
    line-height: 33px;
    padding-right: 60px;
}

.themes-carousel-section {
    padding: 76px 0;
    background: linear-gradient(180deg, #07111b 0%, #04080d 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    overflow: hidden;
    /* Added to clip the peek bleed */
}


.carousel-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
}

.carousel-header-content {
    flex: 1;
    max-width: 800px;
}

.themes-carousel-section .section-title {
    text-align: left;
    margin-bottom: 12px;
}

.themes-carousel-section .section-sub {
    text-align: left;
    color: #dbe2ec;
}

.carousel-nav-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    margin-top: 10px;
}

.carousel-nav-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-nav-btn:hover {
    background: rgba(37, 245, 255, 0.18);
    border-color: rgba(37, 245, 255, 0.3);
    color: #25f5ff;
}

.themes-carousel-custom {
    position: relative;
    overflow: visible;
    /* Let slides peek beyond container */
}

/* Enable peek by allowing slick-list to overflow */
.themes-carousel-track .slick-list {
    overflow: visible !important;
}

@media (min-width: 992px) {
    .themes-carousel-custom {
        clip-path: inset(0 -100vw 0 -100vw);
        /* Bleed both left and right for symmetric peek */
    }
}

/* Fix layout shift for carousels */
.themes-carousel-track:not(.slick-initialized),
.testimonials-slick:not(.slick-initialized):not(.testimonials-marquee-mode) {
    display: flex;
    overflow: hidden;
    gap: 20px;
}

.themes-carousel-track:not(.slick-initialized) .theme-carousel-card {
    flex: 0 0 280px;
}

.testimonials-slick:not(.slick-initialized):not(.testimonials-marquee-mode) .testi-card {
    flex: 0 0 350px;
}

.theme-carousel-card {
    position: relative;
    margin: 0 10px;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #F9ECC5 0%, #FFE0A0 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    text-align: center;
    outline: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.theme-carousel-card:hover {
    transform: translateY(-5px);
}

.theme-carousel-card.bg-yellow {
    background: linear-gradient(135deg, #F9ECC5 0%, #FFE0A0 100%);
}

.theme-carousel-card.bg-blue {
    background: #EBF6FA;
}

.theme-carousel-card.bg-purple {
    background: #EDEFFB;
}

.theme-carousel-card.bg-peach {
    background: #FFD7BA;
}

.theme-carousel-card.bg-pink {
    background: #FFE1EE;
}

.theme-carousel-card.bg-green {
    background: #EFFFF7;
}

.theme-carousel-card.bg-red {
    background: #FFEDEC;
}

.theme-carousel-card.bg-cream {
    background: #FFF5E4;
}

.theme-color-block {
    display: none;
}

.theme-image-area {
    position: relative;
    width: 100%;
    height: 180px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    flex-shrink: 0;
}

.theme-image-area img {
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 100%;
    object-fit: contain;
}

.theme-label {
    position: relative;
    z-index: 3;
    margin: 0;
    padding: 12px 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}



.site-footer {
    padding: 48px 0 0;
    background: #030c0d;
    color: #d9e2f2;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-top {
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    margin-bottom: 24px;
}

.footer-brand-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 40px;
}

.footer-brand-block img {
    width: 50px;
    height: auto;
    display: block;
}

.footer-brand-block h4 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.site-footer h5 {
    margin: 0 0 24px;
    color: #98a6bd;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-mini-title {
    margin-bottom: 14px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.footer-social a:hover {
    transform: scale(1.1);
}

.footer-social-wa,
.footer-social-fb,
.footer-social-li,
.footer-social-ig {
    background: transparent !important;
}

.footer-social img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li {
    margin-bottom: 14px;
}

.site-footer .links-col a {
    color: #c8d4e8;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.site-footer .links-col a:hover {
    color: #fff;
}

.footer-about {
    max-width: 480px;
    margin-bottom: 20px;
    color: #98a6bd;
    font-size: 14px;
    line-height: 1.75;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff9f40 !important;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.footer-contact-link:hover {
    opacity: 0.8;
}

.footer-contact-link svg {
    flex-shrink: 0;
    color: #ff9f40;
}

.footer-bottom {
    padding: 16px 0;
    color: #4e5a6e;
    font-size: 12px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ================================================
   Build Your Website 1-2-3 Section
   ================================================ */

.build-steps-section {
    padding: 90px 0 80px;
    background: radial-gradient(50% 50% at 50% 50%, #003A42 0%, #02090A 100%);
    color: #fff;
    overflow: hidden;
}

.build-steps-title {
    text-align: center;
    color: #fff;
    margin-bottom: 56px;
}

.build-steps-body {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* --- Images left column --- */
.build-steps-images {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.build-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    flex-shrink: 0;
}

.build-img-wrap img {
    width: 248px;
    height: 346px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.build-img-bottom {
    margin-top: 90px;
    /* right image pushed down */
}

/* --- Steps right column --- */
.build-steps-content {
    flex: 1;
    min-width: 0;
}

.build-step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.build-step-item:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.build-step-item:nth-child(3) {
    border: none;
}

.build-step-num {
    flex-shrink: 0;
    color: #00c972;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    min-width: 36px;
}

.build-step-text {
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
}

.build-cta-wrap {
    margin-top: 36px;
}

.sn-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 56px;
    padding: 6px 6px 6px 32px;
    border-radius: 999px;
    background: linear-gradient(90deg, #FFD888 0%, #DB9400 100%);
    color: #111 !important;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    border: none;
    box-shadow: 0 8px 24px rgba(219, 148, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sn-cta-text {
    white-space: nowrap;
}

.sn-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #111;
}

.sn-cta-btn:hover,
.sn-cta-btn:focus {
    color: #111 !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(219, 148, 0, 0.3);
    background: linear-gradient(90deg, #DB9400 0%, #FFD888 100%);
}

.nav-cta.sn-cta-btn {
    min-height: 44px;
    padding: 4px 4px 4px 18px;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(219, 148, 0, 0.18);
}

.nav-cta .sn-cta-icon {
    width: 36px;
    height: 36px;
}

/* ================================================
   Testimonials Section
   ================================================ */

.testimonials-section {
    padding: 80px 0;
    background: radial-gradient(77% 77% at 50% 45.52%, #26262D 0%, #02090A 100%);
    color: #fff;
    overflow: hidden;
}

.testimonials-title {
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.testimonials-carousel-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Marquee Mode Styles (Desktop) */
.testimonials-marquee-mode {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.testimonials-marquee-mode:hover {
    animation-play-state: paused;
}

.testimonials-marquee-mode .testi-card {
    flex-shrink: 0;
    width: 350px;
    /* Slightly wider for better spacing */
    padding: 0 15px;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testi-card {
    outline: none;
    padding: 0 8px;
}

.testi-card-inner {
    width: 322px;
    background: #1A1A1F;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.testi-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testi-name {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.testi-meta {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.3;
}

.testi-store {
    color: #FDF274;
}

.testi-content {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #929292;
    line-height: 1.65;
}

.testimonials-slick .slick-list {
    cursor: grab;
}

.testimonials-slick .slick-list:active {
    cursor: grabbing;
}

.testimonials-slick .slick-slide {
    opacity: 1;
    transition: transform 0.4s ease;
}




/* ================================================
   RESPONSIVENESS (UNIFIED GLOBAL QUERIES)
   ================================================ */

@media (max-width: 1439px) {
    .container {
        width: 1140px;
    }
}

@media (max-width: 1199px) {
    .container {
        width: 940px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-content-wrap {
        padding-top: 150px;
    }

    .seller-col-side {
        flex: 0 0 250px;
        max-width: 250px;
    }

    .seller-col-center {
        flex: 0 0 420px;
        max-width: 420px;
    }

    .seller-card {
        height: 400px;
    }

    .carousel-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .carousel-nav-buttons {
        order: -1;
        align-self: flex-end;
        margin-bottom: 16px;
    }

    .build-img-wrap img {
        width: 200px;
        height: 280px;
    }

    .build-step-text {
        font-size: 26px;
    }
}

@media (max-width: 991px) {
    .container {
        width: 720px;
    }

    .section-title {
        font-size: 36px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-content-wrap {
        padding-top: 120px;
    }

    .seller-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .seller-col-side,
    .seller-col-center {
        flex: 1 1 100%;
        max-width: 500px;
    }

    .seller-card {
        height: auto;
        aspect-ratio: 16/9;
    }

    .compare-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .compare-table {
        min-width: 750px;
    }

    .price-col:nth-child(2n) {
        border-right: 0;
    }

    .price-col:nth-child(n+3) {
        border-top: 1px solid rgba(236, 228, 213, 0.18);
    }

    .themes-carousel-section {
        padding: 56px 0;
    }

    .carousel-header-wrapper {
        margin-bottom: 32px;
    }

    .theme-carousel-card {
        flex: 0 0 240px;
    }

    .theme-image-area {
        height: 160px;
    }

    .theme-label {
        font-size: 14px;
    }

    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .feature-show-card {
        padding: 16px;
    }

    .feature-show-card h3 {
        font-size: 24px;
    }

    .feature-show-card p {
        font-size: 16px;
    }

    .build-steps-section {
        padding: 60px 0;
    }

    .build-steps-body {
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }

    .build-steps-content {
        width: 100%;
    }

    .build-step-text {
        font-size: 24px;
    }

    .sn-cta-btn {
        min-height: 52px;
        padding: 5px 5px 5px 24px;
        gap: 16px;
        font-size: 15px;
    }

    .sn-cta-icon {
        width: 40px;
        height: 40px;
    }

    .nav-cta.sn-cta-btn {
        min-height: 44px;
        padding: 4px 4px 4px 16px;
    }

    .nav-cta .sn-cta-icon {
        width: 34px;
        height: 34px;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .testi-card-inner {
        width: 100%;
        max-width: 322px;
    }
}

@media (max-width: 767px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-sub {
        font-size: 14px;
    }

    /* 1. Navbar Mobile: Brand Left, Toggle Right */
    .header-nav {
        min-height: 54px;
    }

    .header-nav .container {
        display: block;
        padding: 0 15px;
        min-height: 64px;
    }

    .header-nav .navbar-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between !important;
        width: 100%;
        min-height: 64px;
        float: none;
        margin: 0;
    }

    .header-nav .navbar-brand {
        height: 64px;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        float: none;
        order: -1 !important;
    }

    .header-nav .navbar-brand img {
        width: 110px;
    }

    .navbar-toggle {
        display: block !important;
        margin: 0 !important;
        padding: 8px 10px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 4px;
        float: right !important;
        order: 1 !important;
    }

    .header-nav .navbar-collapse {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #030707;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: none;
    }

    .nav-main {
        flex-direction: column;
        width: 100%;
        padding: 10px 0 20px;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        margin: 0;
        display: block;
    }

    .nav-links>li {
        width: 100%;
        display: block;
        float: none;
    }

    .nav-links>li>a {
        display: block;
        padding: 14px 20px !important;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-cta.sn-cta-btn {
        display: inline-flex !important;
        width: auto;
        margin: 20px auto 0;
        justify-content: space-between;
    }

    .hero-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        margin-top: 0px;
    }

    .hero-content-wrap {
        padding-top: 80px;
        padding-bottom: 80px;
        min-height: 0;
        text-align: center;
        width: 100%;
    }

    .hero-kicker {
        justify-content: center;
        font-size: 14px;
        margin: 0 auto 14px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -0.5px;
        margin: 0 auto 16px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
        margin: 0 auto 28px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        width: 100%;
        max-width: 320px;
        font-size: 14px;
        min-height: 52px;
    }

    /* 3. Seller Showcase: Spacing Fixes */
    .seller-showcase {
        padding: 30px 0 40px;
        margin-top: 20px;
    }

    .seller-heading {
        margin-bottom: 24px;
    }

    .seller-heading-top,
    .seller-muted,
    .seller-gradient {
        font-size: 24px;
    }

    .seller-grid {
        gap: 16px;
    }

    .seller-card {
        border-radius: 12px !important;
        aspect-ratio: 4/3;
    }

    .seller-col:nth-child(3) {
        display: none;
    }

    .mob-d-block {
        display: block;
    }

    /* 4. Comparison Section: Mobile Refinement */
    .compare-section {
        padding: 60px 0;
        border-radius: 20px 20px 0 0;
    }

    .compare-section .container {
        padding: 0 0 0 14px;
        width: 100%;
    }

    .compare-table-wrap {
        border: none !important;
        margin: 0;
        padding: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .compare-table {
        min-width: none;
        border-collapse: separate;
        border-spacing: 0;
        table-layout: fixed;
    }

    .compare-table th,
    .compare-table td {
        padding: 12px 10px !important;
        font-size: 13px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        white-space: normal;
        line-height: 1.4;
    }

    .compare-table>thead>tr>th:first-child,
    .compare-table>tbody>tr>td:first-child {
        width: 42%;
        padding-right: 12px !important;
        vertical-align: middle;
    }

    .compare-table>thead>tr>th:nth-child(2),
    .compare-table>tbody>tr>td:nth-child(2) {
        width: 32%;
        padding-left: 21px !important;
        padding-right: 20px !important;
        /* Increased right spacing */
        vertical-align: middle;
    }

    .compare-table>thead>tr>th:nth-child(3),
    .compare-table>tbody>tr>td:nth-child(3) {
        width: 37%;
        padding-left: 40px !important;
        vertical-align: middle;
    }

    .feature-showcase-section {
        padding: 60px 0;
    }

    /* 5. Pricing Section: Stack Center */
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-board {
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .price-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        background: transparent;
    }

    .price-col {
        width: 100%;
        max-width: 340px;
        border: none !important;
        margin: 0 auto;
    }

    .price-card {
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 16px;
        min-height: 0;
        padding: 32px 24px;
        text-align: center;
    }

    .price-features li {
        padding-left: 0;
    }

    .price-features li:before {
        position: relative;
        left: auto;
        padding-right: 6px;
        display: inline-block;
        vertical-align: middle;
    }

    .price-features .feature-inherit:before {
        position: relative;
        left: auto;
        padding-right: 6px;
        display: inline-block;
        vertical-align: middle;
    }

    .price-features {
        margin-bottom: 24px;
    }

    .price-card .btn {
        width: 100%;
    }

    .growth-metrics-section {
        padding: 60px 0;
        border: none !important;
        background: transparent;
    }

    .growth-metric-card {
        background: #34004C;
    }

    /* 6. Themes & Testimonials: White Dots & Peeking */
    .themes-carousel-section {
        padding: 70px 0 45px 0;
    }

    .carousel-nav-buttons {
        display: none !important;
    }

    .themes-carousel-track {
        display: block;
        overflow: visible;
    }

    .theme-carousel-card {
        margin: 0 10px;
        flex: none;
        width: 250px;
    }

    .theme-image-area {
        height: 140px;
    }

    .testimonials-section {
        padding: 70px 0 45px 0;
    }

    .testimonials-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .testi-card {
        padding: 0 10px;
    }

    .testi-card-inner {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        margin: 0 auto;
    }

    /* Reveal side cards (peek) - Fixed for Testimonials */
    .themes-carousel-track .slick-list,
    .testimonials-slick .slick-list {
        overflow: visible !important;
    }

    .testimonials-slick .slick-dots {
        margin-top: 20px;
    }

    /* White Dots styling */
    .slick-dots {
        position: relative;
        bottom: auto;
        margin-top: 70px;
        display: flex !important;
        justify-content: center;
        gap: 10px;
        list-style: none;
        padding: 0;
        width: 100%;
    }

    .slick-dots li button:before {
        content: '';
    }

    .slick-dots li {
        margin: 0 5px;
        width: 7px;
        height: 7px;

    }

    .slick-dots li button {
        font-size: 0;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.25);
        border: none;
        padding: 0;
        transition: all 0.3s ease;
    }

    .slick-dots li.slick-active button {
        background: #fff;
        width: 8px;
        height: 8px;
    }

    /* Footer Mobile */
    .site-footer {
        text-align: center;
    }

    .footer-brand-block {
        align-items: center;
        margin-bottom: 30px;
    }

    .footer-social {
        justify-content: center;
        margin-bottom: 24px;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-about {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
        padding: 0 10px;
    }
}

/* ═══════════════════════════════════════════════════════
   PRICING PAGE  (pages/pricing.html)
   ═══════════════════════════════════════════════════════ */

/* ── Active nav link ─────────────────────────────────── */
.nav-item-active>a,
.nav-links li.nav-link-active>a {
    color: #f1b620 !important;
}

/* ── Hero ────────────────────────────────────────────── */
.pr-hero {
    position: relative;
    min-height: 100vh;
    margin-top: 72px;
    overflow: hidden;
    background: #0b0f10;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.pr-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/pricing-hero.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.pr-hero-overlay {
    position: absolute;
    inset: 0;
    background: #00000099;
}

.pr-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 100px 0 60px;
    color: #fff;
    text-align: center;
}

.pr-hero-title {
    margin: 0 auto 32px;
    font-size: 60px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.pr-hero-accent {
    color: #f1b620;
}

.pr-hero-sub {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

.features-page-body .ft-hero .pr-hero-sub.fw-400 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
}

.pr-hero-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 30px;
    list-style: none;
    margin: 60px auto 0;
    padding: 60px 0 0;
    max-width: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.pr-hero-badges li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.pr-tick {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

/* ── Plans Section ────────────────────────────────────── */
.pr-plans-section {
    padding: 80px 0 100px;
    background: #0e1212;
    color: #f5f3ee;
}

.pr-plans-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.pr-compare-link {
    font-size: 14px;
    font-weight: 500;
    color: #aaa;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s;
}

.pr-compare-link:hover {
    color: #f1b620;
}

/* Billing toggle */
.pr-billing-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pr-billing-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
    margin: 0;
}

.pr-billing-toggle input {
    display: none;
}

.pr-billing-slider {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #333;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pr-billing-slider:before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.3s ease;
}

.pr-billing-toggle input:checked+.pr-billing-slider {
    background: #00B364;
}

.pr-billing-toggle input:checked+.pr-billing-slider:before {
    transform: translateX(28px);
}

.pr-toggle-label {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.pr-toggle-label em {
    font-size: 13px;
    font-weight: 500;
    color: #00B364;
    font-style: normal;
    margin-left: 4px;
}

/* ── Cards Grid ───────────────────────────────────────── */
.pr-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pr-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: #141A1A;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.pr-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pr-card-popular {
    position: relative;
    background: linear-gradient(180deg, #1A2020 0%, rgba(255, 224, 0, 0.12) 100%);
    border-color: rgba(241, 182, 32, 0.3);
}

.pr-card-popular:hover {
    border-color: rgba(241, 182, 32, 0.6);
    box-shadow: 0 15px 35px rgba(241, 182, 32, 0.15);
}

.pr-card-top {
    padding: 24px 25px 0;
}

.pr-plan-name {
    margin: 0 0 8px;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.pr-plan-desc {
    margin: 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    min-height: 40px;
}

.pr-desc-green {
    color: #4dd866;
}

.pr-desc-yellow {
    color: #f1b620;
}

.pr-desc-cyan {
    color: #25f5ff;
}

.pr-desc-purple {
    color: #be93ff;
}

.pr-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
    margin-bottom: 8px;
}

.pr-currency {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    align-self: flex-start;
    margin-top: 4px;
}

.pr-amount {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

.pr-per-month {
    font-size: 14px;
    font-weight: 400;
    color: #888;
}

.pr-billed {
    margin: 0 0 24px;
    font-size: 13px;
    font-weight: 400;
    color: #888;
    line-height: 1.4;
}

.pr-signup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 46px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.pr-signup-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.pr-signup-btn-pop {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.pr-signup-btn-pop:hover {
    background: #f0f0f0;
}

.pr-features {
    flex: 1;
    list-style: none;
    margin: 0;
    padding: 8px 25px 12px;
}

.pr-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    font-weight: 400;
    color: #d0d4d4;
    line-height: 1.5;
}

.pr-features li:last-child {
    border-bottom: none;
}

.pr-features li.pr-inherit {
    color: #f1b620;
    font-weight: 600;
    margin-bottom: 4px;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1199px) {
    .pr-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .pr-hero-title {
        font-size: 46px;
    }

    .pr-hero-badges li {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .pr-hero {
        min-height: 100vh;
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
    }

    .pr-hero-content {
        padding: 80px 0 60px;
    }

    .pr-hero-title {
        font-size: 36px;
        line-height: 1.18;
    }

    .pr-hero-sub {
        font-size: 16px;
    }

    .pr-hero-badges {
        padding: 20px 0;
        margin: 0;
        gap: 10px 20px;
    }

    .pr-hero-badges li {
        font-size: 13px;
        gap: 4px;
    }

    .pr-tick {
        font-size: 14px;
    }

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

    .pr-plans-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .pr-plans-section {
        padding: 60px 0 70px;
    }
}

/* ───────────────────────────────────────────────────────
   PRICING PAGE - REFINED STYLES
   ─────────────────────────────────────────────────────── */


/* ── Stacking Animation ─────────────────────────────── */

.stack-sections-wrapper {
    position: relative;
}

.stack-section {
    position: sticky !important;
    top: -100px;
    z-index: 1;
    transition: box-shadow 0.3s ease;
}

.seller-showcase.stack-section,
.pr-hero.stack-section {
    z-index: 2;
    margin-bottom: 10vh;
}

.compare-section.stack-section,
.growth-metrics-section.stack-section,
.pr-plans-section.stack-section {
    z-index: 3;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-section {
    background-color: #061A1C !important;
    background: #19444654;
}

.pr-plans-section.stack-section {
    background: #02090A;
}

.why-save-section.stack-section {
    z-index: 2;
    margin-bottom: 10vh;
}

.cmp-section.stack-section {
    z-index: 3;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #02090A;
}

@media (max-width: 768px) {
    .seller-showcase.stack-section {
        margin-bottom: 0;
    }

    .stack-section {
        position: relative !important;
        top: -60px;
    }

    .why-save-section.stack-section {
        margin-bottom: 0;
    }
}


/* ── Why Save More Section ───────────────────────────── */
.why-save-section {
    position: relative;
    z-index: 20;
    background: #15181C;
    border-radius: 50px;
    padding: 100px 0;
    margin: 60px auto 0;
    max-width: none;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-save-header {
    text-align: center;
    margin-bottom: 70px;
    padding: 0 20px;
}

.why-save-header .section-kicker {
    color: #25f5ff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.why-save-header h2 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.why-save-header .section-sub {
    font-size: 20px;
    font-weight: 400;
    color: #aeaeae;
    max-width: 860px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 60px;
}

.benefit-card {
    background: #1A1A1A;
    border-radius: 16px;
    padding: 40px;
    border: 2px solid #2D2D2D;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-card:hover {
    border-color: rgba(37, 245, 255, 0.4);
    background: #222;
    transform: translateY(-8px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    max-width: 100%;
    max-height: 100%;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

/* ── Responsive ──────────────────── */
@media (max-width: 1199px) {
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 40px;
    }
}

@media (max-width: 991px) {
    .why-save-header h2 {
        font-size: 42px;
    }

    .why-save-section {
        padding: 80px 0;
        border-radius: 30px;
    }
}

@media (max-width: 767px) {
    .why-save-header h2 {
        font-size: 30px;
    }

    .why-save-header .section-sub {
        font-size: 16px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .benefit-card {
        padding: 30px;
        min-height: auto;
    }

    .why-save-section {
        padding: 60px 0;
        margin-top: 0;
        margin-bottom: 0;
    }
}

/* ══════════════════════════════════════════════════════
   COMPARE PLANS TABLE SECTION
   ══════════════════════════════════════════════════════ */

.cmp-section {
    padding: 0 0 100px;
    background: #030707;
    /* dark backdrop — card pops white */
}

/* Full-width white card */
.cmp-card {
    background: #fff;
    border-radius: 50px;
    padding: 80px 60px;
    width: 100%;
}

/* Horizontal scroll shell — active only when content overflows */
.cmp-scroll-shell {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ── Table base ──────────────────────────────────────── */
.cmp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
    /* triggers horizontal scroll on small screens */
}

/* ── Header row ─────────────────────────────────── */
.cmp-head-row th {
    padding: 0 14px 36px;
    vertical-align: top;
    border-bottom: 1.5px solid #AAAAAA;
    text-align: left;
    white-space: nowrap;
}

/* "Compare Plans" heading — col 1 */
.cmp-col-label {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    width: 24%;
}

/* Plan name column header */
.cmp-plan-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.cmp-plan-name {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    line-height: 1.2;
    white-space: nowrap;
}

.cmp-try-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    background: transparent;
    border: 1px solid #000;
    padding: 9px 24px;
    border-radius: 6px;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.cmp-try-btn:hover {
    background: #000;
    color: #fff;
}

/* ── Group header rows (Pricing / Core Features) ────── */
.cmp-group-row td {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    padding: 40px 24px 20px;
    border-bottom: 1.5px solid #AAAAAA;
    text-align: left;
    white-space: nowrap;
}

/* ── Data rows ───────────────────────────────────── */
.cmp-data-row td {
    font-size: 20px;
    font-weight: 400;
    color: #111;
    padding: 20px 24px;
    border-bottom: 1px solid #C5C5C5;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
}

/* Plan value columns — centered (all td except col 1) */
.cmp-data-row td:not(.cmp-row-label) {
    text-align: left;
    padding-left: 0;
}

/* First column (feature label) — slightly muted */
.cmp-data-row .cmp-row-label {
    color: #555;
    width: 24%;
}

/* N/A cells */
.cmp-data-row .cmp-na {
    color: #AAAAAA;
}

/* Last row — no bottom border */
.cmp-last-row td {
    border-bottom: none;
}

/* hover tint on data rows */
.cmp-data-row:hover td {
    background: #FAFAFA;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1199px) {
    .cmp-card {
        padding: 60px 30px;
        border-radius: 30px;
    }
}

@media (max-width: 767px) {
    .cmp-section {
        padding: 0 0 40px;
    }

    .cmp-card {
        padding: 40px 0 40px 8px;
        border-radius: 30px;
        margin-top: 60px;
    }
}

/* ══════════════════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════════════════ */

.faq-section {
    padding: 20px 0 120px;
    background: radial-gradient(50% 50% at 50% 50%, #003A42 0%, #02090A 100%);
}

.faq-heading {
    font-size: 46px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: none;
    border: none;
    padding: 28px 0;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    text-align: left;
    cursor: pointer;
    line-height: 1.3;
    transition: color 0.2s;
}

.faq-question:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* Circle +/− icon */
.faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    transition: background 0.2s, border-color 0.2s;
}

.faq-open .faq-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.faq-answer {
    padding: 0 0 28px;
    animation: faqFadeIn 0.25s ease;
}

.faq-answer p {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
    max-width: 860px;
}

.faq-answer-no {
    margin-right: -4px;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── FAQ Responsive ──────────────────────────────────── */
@media (max-width: 767px) {
    .faq-section {
        padding: 0 0 60px;
    }

    .faq-heading {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .faq-question {
        font-size: 18px;
        padding: 22px 0;
    }

    .faq-answer p {
        font-size: 16px;
    }
}

/* ══════════════════════════════════════════════════════
   PRICING CTA SECTION
   ══════════════════════════════════════════════════════ */

.pricing-cta-section {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.pricing-cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/cta-background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pricing-cta-overlay {
    position: absolute;
    inset: 0;
    background: #00000099;
}

.pricing-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 150px 20px;
}

.pricing-cta-title {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.pricing-cta-sub {
    font-size: 23px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 40px;
    line-height: 1.6;
}

.pricing-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.pricing-cta-primary {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #000;
    background: #fff;
    border: 2px solid #fff;
    padding: 14px 32px;
    border-radius: 8px;
    transition: background 0.25s, color 0.25s;
    white-space: nowrap;
}

.pricing-cta-primary:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
    color: #000;
}

.pricing-cta-secondary {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 14px 32px;
    border-radius: 8px;
    transition: border-color 0.25s, background 0.25s;
    white-space: nowrap;
}

.pricing-cta-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* ── CTA Responsive ──────────────────────────────────── */
@media (max-width: 767px) {
    .pricing-cta-title {
        font-size: 30px;
    }

    .pricing-cta-sub {
        font-size: 16px;
    }

    .pricing-cta-primary,
    .pricing-cta-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ================================================
   Trial Popup
   ================================================ */

body.trial-popup-open {
    overflow: hidden;
}

.trial-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(3, 8, 12, 0.72);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.trial-popup-overlay.is-open {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.trial-popup-dialog {
    position: relative;
    width: 100%;
    max-width: 980px;
    max-height: calc(100vh - 40px);
    overflow: hidden;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.trial-popup-panels {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    transition: min-height 0.38s ease;
}

.trial-popup-panel {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.38s ease, transform 0.38s ease, visibility 0.38s ease;
    pointer-events: none;
}

.trial-popup-panel.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 1;
}

.trial-popup-panel-form {
    display: flex;
    max-height: calc(100vh - 40px);
    min-height: 0;
}

.trial-popup-panel:not(.is-active) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.trial-popup-panel.is-active {
    position: relative;
}

.trial-popup-dialog.is-success-view .trial-popup-close {
    color: #111;
    background: rgba(255, 255, 255, 0.95);
}

.trial-popup-form-col {
    position: relative;
    flex: 1 1 58%;
    min-height: 0;
    max-height: calc(100vh - 40px);
    padding: 30px 32px 36px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    color: #111827;
}

.trial-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.trial-popup-brand {
    margin-bottom: 28px;
}

.trial-popup-brand img {
    display: block;
    max-width: 140px;
    height: auto;
}

.trial-popup-title {
    margin: 0 0 10px;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.15;
    color: #111827;
}

.trial-popup-subtitle {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.5;
    color: #6b7280;
}

.trial-form-group {
    margin-bottom: 18px;
}

.trial-form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.trial-req {
    color: #ef4444;
}

.trial-form-input {
    width: 96%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    color: #111827;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.trial-form-input:focus {
    outline: none;
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}

.trial-form-input.is-invalid {
    border-color: #ef4444;
}

.trial-form-error {
    display: none;
    margin: 6px 0 0;
    font-size: 13px;
    line-height: 1.4;
    color: #ef4444;
}

.trial-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    min-height: 48px;
    margin-top: 20px;
    border: 0;
    border-radius: 8px;
    background: #111827;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.trial-submit-btn:hover,
.trial-submit-btn:focus {
    background: #000;
}

.trial-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.trial-submit-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: trial-spin 0.7s linear infinite;
}

@keyframes trial-spin {
    to {
        transform: rotate(360deg);
    }
}

.trial-form-note {
    margin: 30px 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: #9ca3af;
}

.trial-form-note-heading {
    display: block;
    color: #000;
}

.trial-popup-visual-col {
    position: relative;
    flex: 0 0 42%;
    align-self: stretch;
    min-height: 0;
    overflow: hidden;
    background: #0b1118;
}

.trial-popup-visual-img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center top;
}

.trial-popup-panel-success {
    max-height: calc(100vh - 40px);
    padding: 28px 48px 42px;
    overflow-y: auto;
    text-align: center;
}

.trial-success-animation {
    display: flex;
    justify-content: center;
    margin: 0 auto 8px;
}

.trial-success-kicker {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 600;
    color: #111827;
}

.trial-success-kicker span {
    color: #16a34a;
}

.trial-success-title {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.25;
    color: #111827;
}

.trial-success-status {
    margin: 0 0 22px;
    font-size: 16px;
    color: #9ca3af;
}

.trial-success-copy {
    max-width: 620px;
    margin: 0 auto 24px;
    font-size: 15px;
    line-height: 1.65;
    color: #4b5563;
}

.trial-success-link {
    max-width: 700px;
    margin: 0 auto;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
    color: #2563eb;
}

@media (max-width: 991px) {
    .trial-popup-panel-form {
        flex-direction: column;
        min-height: 0;
    }

    .trial-popup-panel-form {
        max-height: calc(100vh - 40px);
    }

    .trial-popup-form-col {
        flex: 1 1 auto;
        max-height: none;
        padding: 56px 24px 28px;
    }

    .trial-popup-visual-col {
        order: -1;
        flex: 0 0 200px;
        max-height: 200px;
    }

    .trial-popup-visual-img {
        min-height: 100%;
    }

    .trial-popup-title {
        font-size: 28px;
    }

    .trial-popup-subtitle {
        font-size: 16px;
    }

    .trial-popup-panel-success {
        padding: 56px 20px 32px;
    }

    .trial-success-title {
        font-size: 24px;
    }

    .trial-success-copy,
    .trial-success-link {
        font-size: 16px;
    }
}



/* =====================================================
   SCROLL REVEAL  (IntersectionObserver driven)
   ===================================================== */

/* Base reveal state — sections fade+rise when observed */
.sn-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.sn-reveal.sn-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Home: feature cards stagger ── */
.feature-card-wrap {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.sn-visible .feature-card-wrap:nth-child(1) {
    transition-delay: 0.05s;
}

.sn-visible .feature-card-wrap:nth-child(2) {
    transition-delay: 0.18s;
}

.sn-visible .feature-card-wrap:nth-child(3) {
    transition-delay: 0.31s;
}

.sn-visible .feature-card-wrap {
    opacity: 1;
    transform: translateY(0);
}

/* ── Home: growth metric cards stagger ── */
.growth-metric-wrap {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.sn-visible .growth-metric-wrap:nth-child(1) {
    transition-delay: 0.05s;
}

.sn-visible .growth-metric-wrap:nth-child(2) {
    transition-delay: 0.16s;
}

.sn-visible .growth-metric-wrap:nth-child(3) {
    transition-delay: 0.27s;
}

.sn-visible .growth-metric-wrap:nth-child(4) {
    transition-delay: 0.38s;
}

.sn-visible .growth-metric-wrap {
    opacity: 1;
    transform: translateY(0);
}

/* ── Home: pricing cards stagger ── */
.price-col {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.sn-visible .price-col:nth-child(1) {
    transition-delay: 0.05s;
}

.sn-visible .price-col:nth-child(2) {
    transition-delay: 0.15s;
}

.sn-visible .price-col:nth-child(3) {
    transition-delay: 0.25s;
}

.sn-visible .price-col:nth-child(4) {
    transition-delay: 0.35s;
}

.sn-visible .price-col {
    opacity: 1;
    transform: translateY(0);
}

/* ── Pricing page: plan cards stagger ── */
.pr-card {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.sn-visible .pr-card:nth-child(1) {
    transition-delay: 0.05s;
}

.sn-visible .pr-card:nth-child(2) {
    transition-delay: 0.17s;
}

.sn-visible .pr-card:nth-child(3) {
    transition-delay: 0.29s;
}

.sn-visible .pr-card:nth-child(4) {
    transition-delay: 0.41s;
}

.sn-visible .pr-card {
    opacity: 1;
    transform: translateY(0);
}

/* ── Pricing page: benefit cards stagger ── */
.benefit-card {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.sn-visible .benefit-card:nth-child(1) {
    transition-delay: 0.04s;
}

.sn-visible .benefit-card:nth-child(2) {
    transition-delay: 0.13s;
}

.sn-visible .benefit-card:nth-child(3) {
    transition-delay: 0.22s;
}

.sn-visible .benefit-card:nth-child(4) {
    transition-delay: 0.31s;
}

.sn-visible .benefit-card:nth-child(5) {
    transition-delay: 0.40s;
}

.sn-visible .benefit-card:nth-child(6) {
    transition-delay: 0.49s;
}

.sn-visible .benefit-card {
    opacity: 1;
    transform: translateY(0);
}

/* ── Pricing page: FAQ items stagger ── */
.faq-item {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.sn-visible .faq-item:nth-child(1) {
    transition-delay: 0.05s;
}

.sn-visible .faq-item:nth-child(2) {
    transition-delay: 0.14s;
}

.sn-visible .faq-item:nth-child(3) {
    transition-delay: 0.23s;
}

.sn-visible .faq-item:nth-child(4) {
    transition-delay: 0.32s;
}

.sn-visible .faq-item {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   BARBA PAGE TRANSITION — baseline opacity
   ===================================================== */
[data-barba="container"] {
    opacity: 1;
}

/* Support for Barba Sync (overlapping transitions) */
[data-barba="wrapper"] {
    position: relative;
    width: 100%;
    /* overflow: hidden removed to allow position:sticky stack animations */
    min-height: 100vh;
}

/* Ensure Barba containers don't break sticky stacking */
[data-barba="container"] {
    overflow: visible !important;
}

/* ================================================
   Features Page Specific Styles
   ================================================ */
.features-page-body .ft-hero {
    align-items: flex-start !important;
    /* Match homepage hero start position */
}

.features-page-body .ft-hero .pr-hero-bg {
    background-image: url('../images/features-page-hero.webp');
}

.features-page-body .pricing-cta-bg {
    background-image: url('../images/feature-cta-bg.webp');
}

.features-page-body .ft-hero .pr-hero-content {
    text-align: left;
    padding: 40px 0 100px;
    max-width: 1060px;
}

.features-page-body .ft-hero .pr-hero-title,
.features-page-body .ft-hero .pr-hero-sub {
    margin-left: 0;
    margin-right: 0;
}

.features-page-body .ft-hero .pr-hero-sub {
    font-style: italic;
    font-size: 28px;
    font-weight: 600;
}

/* Features Comparison Section Styles */
.features-page-body .ft-compare {
    color: #fff;
    background-color: #34004C !important;
}

.features-page-body .ft-compare .section-title {
    color: #fff;
}


.features-page-body .compare-table>tbody>tr>td:nth-child(2) {
    text-transform: none;
}


/* Features CTA Section Styles */
.features-page-body .ft-cta {
    color: inherit;
}

@media (max-width: 991px) {
    .features-page-body .ft-hero {
        align-items: center !important;
    }

    .features-page-body .ft-hero .pr-hero-content {
        text-align: center;
        padding: 120px 0 60px;
    }

    .features-page-body .ft-hero .pr-hero-title,
    .features-page-body .ft-hero .pr-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {

    .features-page-body .ft-hero .pr-hero-sub {
        font-size: 20px !important;
    }

    .features-page-body .ft-hero .pr-hero-sub.fw-400 {
        font-size: 16px !important;
        margin-bottom: 24px;
    }
}




/* ================================================
   Convert Section — "A Store That's Built To Convert"
   (Features page)
   ================================================ */

.convert-section {
    padding: 80px 0 60px;
    background: #040608;
    color: #fff;
}

.convert-header {
    margin-bottom: 48px;
}

.convert-title {
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
}

.convert-sub {
    margin-left: auto;
    margin-right: auto;
    color: var(--muted);
}

/* Grid */
.convert-grid {
    margin-left: -10px;
    margin-right: -10px;
}

.convert-col {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 50px;
}

/* Base card */
.convert-card {
    position: relative;
    border-radius: 13px;
    overflow: hidden;
    min-height: 357px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #676767;
}

.convert-card-body {
    padding: 28px 28px 16px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.convert-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.3;
}

.convert-card-desc {
    font-size: 17px;
    line-height: 1.65;
    color: #B9B9B9;
    margin: 0;
    max-width: 490px;
}

/* Card media */
.convert-card-media {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 42px 0 0;
}

.convert-card-img {
    display: block;
    max-width: 100%;
    object-position: bottom;
    border-radius: 6px 6px 0 0;
}

/* Card colour variants — gradient backgrounds matching the design */
.convert-card--green {
    background: radial-gradient(500px circle at 0% 100%, rgba(255, 224, 0, 0.30) 0%, rgba(255, 224, 0, 0.15) 30%, transparent 70%), #1b2328;
}

.convert-card--green .convert-card-media {
    bottom: 0;
}

.convert-card--purple {
    background: radial-gradient(500px circle at 0% 100%, rgba(195, 66, 255, 0.30) 0%, rgba(195, 66, 255, 0.15) 30%, transparent 70%), #1b2328;
}

.convert-card--purple .convert-card-media {
    bottom: -15px;
}

.convert-card--dark-purple {
    background: radial-gradient(500px circle at 0% 100%, rgba(255, 59, 148, 0.30) 0%, rgba(255, 59, 148, 0.15) 30%, transparent 70%), #1b2328;
}

.convert-card--dark-purple .convert-card-media {
    bottom: -90px;
    right: -20px;
}

.convert-card--brown {
    background: radial-gradient(500px circle at 0% 100%, rgba(255, 121, 27, 0.30) 0%, rgba(255, 121, 27, 0.15) 30%, transparent 70%), #1b2328;
}

.convert-card--brown .convert-card-media {
    bottom: -60px;
}

/* Stagger animation (matches existing .benefit-card pattern) */
.convert-col .convert-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.sn-visible .convert-col:nth-child(1) .convert-card {
    transition-delay: 0.05s;
}

.sn-visible .convert-col:nth-child(2) .convert-card {
    transition-delay: 0.17s;
}

.sn-visible .convert-col:nth-child(3) .convert-card {
    transition-delay: 0.29s;
}

.sn-visible .convert-col:nth-child(4) .convert-card {
    transition-delay: 0.41s;
}

.sn-visible .convert-col .convert-card {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .convert-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .convert-section {
        padding: 60px 0 40px;
    }

    .convert-title {
        font-size: 28px;
    }

    .convert-header {
        margin-bottom: 32px;
    }

    .convert-card-title {
        font-size: 18px;
    }

    .convert-card-desc {
        font-size: 14px;
    }
}

/* ================================================
   Built-In Marketing Tools Section
   ================================================ */

/* Section */
.tools-section {
    padding: 80px 0;
    background:
        radial-gradient(900px circle at 50% 50%,
            rgba(0, 92, 92, 0.35) 0%,
            rgba(0, 92, 92, 0.12) 40%,
            transparent 80%),
        #021517;
}

.tools-header {
    margin-bottom: 48px;
}

.tools-title {
    color: #fff;
    margin-bottom: 16px;
    font-weight: 600;
}

.tools-sub {
    max-width: 750px;
}

/* Bootstrap spacing */
.tools-col {
    margin-bottom: 24px;
}

/* Card */
.tools-card {
    position: relative;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
}

.tools-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark image overlay */
.tools-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .92) 0%,
            rgba(0, 0, 0, .55) 38%,
            rgba(0, 0, 0, .12) 45%,
            transparent 70%);
    z-index: 1;
}

/* Content Panel */
.tools-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 30px 20px 20px;
    z-index: 2;

    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity .8s ease,
        transform .8s ease;

    transition-delay: 1s;
}

/* Reveal after section visible */
.tools-section.sn-visible .tools-card-content {
    opacity: 1;
    transform: translateY(0);
}

.tools-card-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
}

.tools-card-desc {
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* Slight stagger */
.tools-section.sn-visible .tools-col:nth-child(1) .tools-card-content {
    transition-delay: 1s;
}

.tools-section.sn-visible .tools-col:nth-child(2) .tools-card-content {
    transition-delay: 1.2s;
}

.tools-section.sn-visible .tools-col:nth-child(3) .tools-card-content {
    transition-delay: 1.4s;
}

.tools-section.sn-visible .tools-col:nth-child(4) .tools-card-content {
    transition-delay: 1.6s;
}

/* Tablet */
@media (max-width: 991px) {
    .tools-card {
        height: auto;
    }

    .tools-card-title {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .tools-section {
        padding: 60px 0;
    }

    .tools-card {
        height: auto;
    }

    .tools-card::before {
        background:
            linear-gradient(to top,
                rgba(0, 0, 0, .92) 0%,
                rgba(0, 0, 0, .55) 28%,
                rgba(0, 0, 0, .12) 45%,
                transparent 70%);
    }

    .tools-card-content {
        padding: 30px 30px 30px 18px;
    }

    .tools-card-title {
        font-size: 20px;
    }

    .tools-card-desc {
        font-size: 14px;
        line-height: 1.6;
    }
}



/* =====================================================
   Features Page Benefits Flip Cards
   ===================================================== */

.ft-benefits-section {
    position: relative;
    padding: 100px 0;
    background: transparent;
}

.ft-benefits-header {
    text-align: center;
    margin-bottom: 70px;
}

.ft-benefit-sub {
    max-width: 677px;
    margin-left: auto;
    margin-right: auto;
}

.ft-benefit-sub span {
    display: block;
}

.ft-benefit-col {
    margin-bottom: 24px;
}

/* Card Container */

.ft-benefit-card {
    perspective: 1400px;
    height: 175px;
}

.ft-benefit-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
}

.ft-benefit-card:hover .ft-benefit-inner {
    transform: rotateY(180deg);
}

/* Front + Back */

.ft-benefit-front,
.ft-benefit-back {
    position: absolute;
    inset: 0;

    background: #1A1A1A;
    border-radius: 16px;
    padding: 40px;

    border: 2px solid #2D2D2D;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    transition:
        border-color 0.4s ease,
        background 0.4s ease;
}

.ft-benefit-card:hover .ft-benefit-front,
.ft-benefit-card:hover .ft-benefit-back {
    background: #222;
}

/* Front */

.ft-benefit-front {
    justify-content: flex-start;
    background: radial-gradient(800px circle at 100% 0%,
            rgba(0, 58, 66, 0.45) 0%,
            rgba(0, 58, 66, 0.20) 20%,
            rgba(0, 58, 66, 0.08) 40%,
            transparent 70%),
        #1A1A1A
}

/* Back */

.ft-benefit-back {
    transform: rotateY(180deg);
    justify-content: flex-start;
}

/* Icon */

.ft-benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.ft-benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Heading */

.ft-benefit-front h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    margin: 0;
    text-align: left;
}

/* Description */

.ft-benefit-back p {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
    margin: 0;
    text-align: left;
}

/* Tablet */

@media (max-width: 991px) {

    .ft-benefits-section {
        padding: 80px 0;
    }

    .ft-benefits-header {
        margin-bottom: 50px;
    }

    .ft-benefit-card {
        height: 175px;
    }

    .ft-benefit-front,
    .ft-benefit-back {
        padding: 32px;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .ft-benefits-section {
        padding: 60px 0;
    }

    .ft-benefits-header {
        margin-bottom: 40px;
    }

    .ft-benefit-sub span {
        display: inline;
    }

    .ft-benefit-card {
        height: 170px;
    }

    .ft-benefit-front,
    .ft-benefit-back {
        padding: 30px;
        justify-content: center;
    }

    .ft-benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .ft-benefit-front h3 {
        font-size: 18px;
    }

    .ft-benefit-back p {
        font-size: 14px;
        line-height: 1.6;
    }
}



/* ================================================
   AI Features Section — 3 Card Static Layout
   ================================================ */

.ai-feat-section {
    padding: 80px 0 70px;
    background:
        radial-gradient(1400px circle at -10% -10%,
            rgba(66, 133, 244, 0.30) 0%,
            rgba(66, 133, 244, 0.20) 40%,
            rgba(66, 133, 244, 0.06) 70%,
            transparent 100%),
        radial-gradient(1400px circle at 110% 110%,
            rgba(181, 0, 145, 0.30) 0%,
            rgba(181, 0, 145, 0.20) 40%,
            rgba(181, 0, 145, 0.06) 70%,
            transparent 100%),
        #000;
    color: #fff;
}

.ai-feat-section .section-kicker {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ai-feat-header {
    margin-bottom: 48px;
}

.ai-feat-title {
    color: #fff;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 16px;
}

.ai-feat-sub {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    max-width: none;
}

.ai-feat-grid {
    margin: 0 -10px;
}

.ai-feat-col {
    padding: 0 10px;
    margin-bottom: 50px;
}

/* Card */
.ai-feat-card {
    border-radius: 0;
    overflow: visible;
}

/* Media = image IS the card */
.ai-feat-card-media {
    position: relative;
    width: 100%;
    height: 390px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 22px;
    padding: 20px 20px
}

/* Image fills the card */
.ai-feat-card-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

/* Text area below card */
.ai-feat-card-body {
    padding: 0 4px;
}

.ai-feat-card-title {
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.3;
}

.ai-feat-card-desc {
    font-size: 17px;
    line-height: 1.65;
    color: var(--muted);
    margin: 0;
    max-width: 340px;
}

.ai-feat-card-media.desc-generate-media {
    background: linear-gradient(135deg,#bccae8 0%,#d4d6e2 35%,#d8d4e3 55%,#c7d3e7 75%,#959ed1 100%);
}

.ai-feat-card-media.desc-generate-media img {
    margin-top: 24px;
}

.ai-feat-card-media.bg-remover-media {
    background: linear-gradient(135deg, #f2c7d3 0%, #e8d8d2 35%, #d7ddd8 65%, #b5e5e6 100%);
}

.ai-feat-card-media.whatsapp-eco-media {
    background: linear-gradient(135deg, #dfe3cf 0%, #d6e4d5 35%, #c7e7d8 70%, #a8ece6 100%);
}

/* Responsive */
@media (max-width: 991px) {
    .ai-feat-title {
        font-size: 36px;
    }

    .ai-feat-card-media {
        height: auto;
    }
}

@media (max-width: 767px) {
    .ai-feat-section {
        padding: 60px 0 0;
    }

    .ai-feat-title {
        font-size: 28px;
    }

    .ai-feat-header {
        margin-bottom: 32px;
    }

    .ai-feat-card-title {
        font-size: 20px;
    }

    .ai-feat-card-desc {
        font-size: 16px;
        max-width: none;
    }
    .ai-feat-card-media.desc-generate-media img {
       margin-top: 10px;
    }
}



/* ================================================
   Built For India — Carousel Section
   ================================================ */


.built-for-india-section {
    padding: 100px 0 120px;
    background: #040608;
    color: #fff;
    overflow: hidden;
}

/* Header row */
.built-for-india-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.built-for-india-header-left {
    flex: 1;
}

.built-for-india-title {
    color: #fff;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 16px;
}

.built-for-india-sub {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    max-width: 887px;
}

/* Nav buttons */
.built-for-india-header-right {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
    padding-top: 8px;
}

.built-for-india-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.built-for-india-nav-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
}

/* Carousel outer — overflow visible to allow right peek */
.built-for-india-carousel-outer {
    overflow: hidden;
}

.built-for-india-carousel-outer .container {
    overflow: visible;
}

/* Slick track overrides */
.built-for-india-carousel-track .slick-list {
    overflow: visible !important;
}

@media (min-width: 992px) {
    .built-for-india-carousel-track .slick-list {
        padding-left: 30px !important;
        padding-right: 100px !important;
    }
}

.built-for-india-carousel-track .slick-slide {
    padding-right: 0;
}

/* Slide */
.built-for-india-slide {
    width: 543px;
    /* 513 card + 30 gap */
    padding-right: 30px;
    outline: none;
}

/* Card image frame */
.built-for-india-card {
    position: relative;
    width: 513px;
    height: 360px;
    background: #FFFFFF1F;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
}

.built-for-india-card-num {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 11px;
    font-weight: 600;
    color: #000;
    background: #fff;
    border: 1px solid #676767;
    border-radius: 6px;
    padding: 3px 8px;
    letter-spacing: 0.04em;
    z-index: 2;
}

.built-for-india-card-media {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 0 20px;
}

.built-for-india-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Slide text */
.built-for-india-slide-title {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.3;
}

.built-for-india-slide-desc {
    font-size: 17px;
    line-height: 1.65;
    color: var(--muted);
    margin: 0;
    max-width: 490px;
}

/* Hide slick dots */
.built-for-india-carousel-track .slick-dots {
    display: none !important;
}

/* Responsive */
@media (max-width: 991px) {
    .built-for-india-title {
        font-size: 36px;
    }

    .built-for-india-slide,
    .built-for-india-card {
        width: 100%;
        max-width: none;
        padding-right: 0;
    }

    .built-for-india-card {
        height: auto !important;
        aspect-ratio: 513 / 384;
    }
}

/* Mobile — full-width card, no left/right peek, breathing room */
@media (max-width: 767px) {
    .built-for-india-carousel-outer {
        overflow: hidden;
    }

    .built-for-india-carousel-track .slick-list {
        overflow: hidden !important;
        padding: 0 !important;
    }

    .built-for-india-carousel-outer .container {
        overflow: hidden;
        padding-left: 24px;
        padding-right: 24px;
    }

    .built-for-india-carousel-track .slick-slide {
        padding: 0 10px;
    }
}

@media (max-width: 767px) {
    .built-for-india-section {
        padding: 60px 0 50px;
    }

    .built-for-india-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 32px;
    }

    .built-for-india-title {
        font-size: 28px;
    }

    .built-for-india-sub {
        font-size: 14px;
        line-height: 1.6;
    }

    .built-for-india-header-right {
        padding-top: 0;
    }

    .built-for-india-carousel-track .slick-slide {
        padding-right: 0;
    }

    .built-for-india-slide-title {
        font-size: 16px;
    }

    .built-for-india-slide-desc {
        font-size: 14px;
    }
}

/* Built For India Carousel Pre-initialization Layout */
.built-for-india-carousel-track:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
    margin-left: 0;
    justify-content: center;
}

.built-for-india-carousel-track:not(.slick-initialized) .built-for-india-slide {
    flex: 0 0 calc(50% - 40px);
    padding-right: 20px;
}

@media (max-width: 991px) {
    .built-for-india-carousel-track:not(.slick-initialized) .built-for-india-slide {
        flex: 0 0 85%;
        padding-right: 14px;
    }
}

@media (max-width: 767px) {
    .built-for-india-header-right {
        display: none !important;
    }

    .built-for-india-carousel-track .slick-dots {
        display: block !important;
        position: relative;
        bottom: 0;
        margin-top: 30px;
    }
}