/* style.css */
:root {
    /* Brand palette from the provided design */
    --brand-white: #FFFFFF;
    --brand-purple: #792D85;
    --brand-gold: #E6B64E;
    --brand-gold-soft: #E0B952;
    --brand-gold-strong: #E7BA48;
    --brand-surface: #FAFAFA;
    --brand-black: #000000;
    --brand-white-12: rgba(255, 255, 255, 0.12);
    --brand-white-10: rgba(255, 255, 255, 0.10);
    --brand-purple-18: rgba(121, 45, 133, 0.18);
    --brand-purple-42: rgba(121, 45, 133, 0.42);
    --brand-gold-72: rgba(230, 182, 78, 0.72);

    --purple-dark: #28164B;
    --purple-mid: #432062;
    --purple-light: var(--brand-purple);
    --gold: var(--brand-gold);
    --gold-soft: var(--brand-gold-soft);
    --gold-strong: var(--brand-gold-strong);
    --text-white: var(--brand-white);
    --text-dark: var(--brand-black);
    --bg-light: var(--brand-surface);
    --font-heading: 'Arimo', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    --radius-pill: 999px;
    --radius-card: 22px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.18);
    --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.22);
    --gradient-dark:
        radial-gradient(circle at 32% 18%, rgba(121, 45, 133, 0.38) 0%, rgba(121, 45, 133, 0) 36%),
        linear-gradient(116deg, #47256A 0%, #341D59 42%, #28164B 100%);
    --gradient-panel: linear-gradient(145deg, rgba(121, 45, 133, 0.96) 0%, rgba(67, 32, 98, 0.97) 54%, rgba(40, 22, 75, 0.99) 100%);
    --gradient-review: linear-gradient(96deg, #5E2C81 0%, #41256A 38%, #26174C 100%);
}

html {
    overflow-x: hidden;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.section-heading-primary {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.text-gold {
    color: var(--gold);
}

.text-white {
    color: var(--text-white);
}

.text-center {
    text-align: center;
}

.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.section-dark::before,
.section-dark::after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.55;
    transform: translateZ(0);
}

/* Default dark-section glow balance (matches reference vibe) */
.section-dark::before {
    width: min(680px, 70vw);
    height: min(680px, 70vw);
    left: -18%;
    top: 10%;
    background-image: url("web_page/img/image-71.png");
    mix-blend-mode: screen;
    opacity: 0.42;
}

.section-dark::after {
    width: min(760px, 78vw);
    height: min(760px, 78vw);
    right: -22%;
    bottom: -18%;
    background-image: url("web_page/img/image-177.png");
    mix-blend-mode: screen;
    opacity: 0.38;
}

.section-dark .container {
    z-index: 2;
}

.section-dark .bg-swoosh {
    z-index: 0;
}

.section-dark::before,
.section-dark::after {
    filter: saturate(1.05);
}

.bg-swoosh {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

html.no-scroll {
    overflow: hidden;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 15px;
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--purple-dark);
}

.btn-primary {
    background: var(--gold);
    color: var(--purple-dark);
    border: none;
    box-shadow: 0 10px 25px rgba(230, 182, 78, 0.22);
}

.btn-primary:hover {
    background: var(--gold-soft);
    transform: translateY(-1px);
}

/* Navbar */
.navbar {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    z-index: 10;
    padding: 35px 0;
    background: transparent;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.logo img {
    height: 38px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    background: linear-gradient(90deg, rgba(121, 45, 133, 0.58), rgba(121, 45, 133, 0.4));
    padding: 9px 28px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(230, 182, 78, 0.18);
    backdrop-filter: blur(8px);
    transition: gap 0.3s ease;
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 20px;
        padding: 8px 20px;
    }
}

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

    .nav-toggle {
        display: flex;
    }
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.95;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-toggle {
    width: 46px;
    height: 42px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(230, 182, 78, 0.28);
    background: rgba(121, 45, 133, 0.38);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 12px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
}

.mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 220ms ease;
}

.mobile-menu__panel {
    position: absolute;
    top: 16px;
    right: 16px;
    left: 16px;
    max-width: 520px;
    margin-left: auto;
    background: var(--gradient-panel);
    border: 1px solid rgba(230, 182, 78, 0.28);
    border-radius: 26px;
    padding: 18px;
    transform: translateY(-14px);
    opacity: 0;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
    transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-menu.is-open .mobile-menu__backdrop {
    opacity: 1;
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 10px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__close {
    width: 44px;
    height: 40px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(230, 182, 78, 0.25);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 26px;
    line-height: 0;
    cursor: pointer;
}

.mobile-menu__link {
    display: block;
    padding: 14px 12px;
    color: #fff;
    font-weight: 600;
    border-radius: 14px;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu__link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--gold);
}

.mobile-menu__cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

/* Hero Section */
.hero {
    padding: 0;
    isolation: isolate;
    overflow: hidden;
}

/* Hero has stronger top-left purple glow + subtle line-wave */
.hero.section-dark::before {
    width: min(720px, 74vw);
    height: min(720px, 74vw);
    left: -22%;
    top: -6%;
    background-image: url("web_page/img/image-71.png");
    opacity: 0.55;
}

.hero.section-dark::after {
    width: min(820px, 82vw);
    height: min(820px, 82vw);
    right: -26%;
    bottom: -24%;
    background-image: url("web_page/img/image-50.png");
    opacity: 0.30;
}

.hero-wave {
    max-width: none;
    mix-blend-mode: screen;
    pointer-events: none;
    user-select: none;
}

.hero-wave-left {
    top: 18px;
    left: 0;
    width: clamp(290px, 31vw, 500px);
    opacity: 0.22;
}

.hero-wave-right {
    top: -10%;
    right: -5%;
    width: min(760px, 50vw);
    opacity: 0.28;
    transform: scale(1.06);
    transform-origin: top right;
}

/* Dedicated inner-page hero used by the FAQ page */
.site-page-hero {
    min-height: 346px;
    padding: 0;
}

.site-page-hero .hero-wave-left {
    top: 0;
    left: 0;
    width: 500px;
    opacity: 0.26;
}

.site-page-hero .hero-wave-right {
    top: 0;
    right: 0;
    width: 480px;
    opacity: 0.23;
    transform: none;
}

.page-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: 119px;
}

.page-title-pill {
    position: relative;
    width: 306px;
    min-height: 79px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1.3px solid rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-pill);
    background: transparent;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    box-shadow: none;
}

.page-title-pill::before {
    content: "";
    position: absolute;
    inset: -44px -72px;
    background: url("../img/image-41.png") no-repeat center / contain;
    opacity: 0.23;
    mix-blend-mode: screen;
    pointer-events: none;
}

.page-title-pill::after {
    content: none;
}

.page-title-pill {
    isolation: isolate;
}

.page-title-pill>*,
.page-title-pill {
    z-index: 1;
}

.page-title-pill--wide {
    width: auto;
    min-width: 396px;
    padding-inline: clamp(30px, 3vw, 46px);
    white-space: nowrap;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    padding-top: 15px;
    min-height: 800px;
}

@media (max-width: 1200px) {
    .hero-container {
        gap: 30px;
        min-height: 700px;
    }
}

@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
        padding-bottom: 0;
        min-height: auto;
        gap: 40px;
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-top: -150px;
    position: relative;
    z-index: 5;
}

@media (max-width: 1200px) {
    .hero-content {
        margin-top: -60px;
    }
}

@media (max-width: 991px) {
    .hero-content {
        margin-top: 0;
        max-width: 100%;
    }
}

.hero-content h1 {
    font-size: clamp(34px, 4.3vw, 54px);
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-white);
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 440px;
    opacity: 0.92;
}

@media (max-width: 991px) {
    .hero-content p {
        margin: 0 auto;
    }
}

.hero-image {
    flex: 1;
    text-align: right;
    position: relative;
    padding-right: 0;
    padding-left: 100px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-self: flex-end;
    margin-right: -40px;
    margin-top: 0;
    overflow: visible;
    z-index: 10;
}

@media (max-width: 1200px) {
    .hero-image {
        padding-left: 50px;
        margin-right: 0;
    }
}

@media (max-width: 991px) {
    .hero-image {
        padding-left: 0;
        width: 100%;
        margin-top: 20px;
    }
}

/* â”€â”€ Phone Mockup Frame â”€â”€ */
.phone-mockup {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transform: translateY(128px);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5)) drop-shadow(0 10px 20px rgba(120, 50, 180, 0.35));
}

@media (max-width: 1200px) {
    .phone-mockup {
        transform: translateY(100px) scale(0.9);
    }
}

@media (max-width: 991px) {
    .phone-mockup {
        transform: translateY(60px) scale(0.8);
    }
}

.phone-frame {
    position: relative;
    width: 360px;
    height: 740px;
    background: linear-gradient(145deg, #2a2a2e 0%, #1a1a1e 40%, #111114 100%);
    border-radius: 54px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 0 0 1px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.6),
        0 20px 60px rgba(0, 0, 0, 0.55),
        inset 2px 0 4px rgba(255, 255, 255, 0.04),
        inset -2px 0 4px rgba(0, 0, 0, 0.3);
    overflow: visible;
    animation: heroPhoneFloat 6s ease-in-out infinite;
}

@keyframes heroPhoneFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .phone-frame {
        animation: none !important;
    }
}

/* Dynamic Island notch */
.phone-notch {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    /* Scaled up notch */
    height: 30px;
    background: #0a0a0c;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.07);
}

/* Volume buttons */
.phone-side-btn {
    position: absolute;
    left: -3px;
    background: linear-gradient(180deg, #2e2e32, #222226);
    border-radius: 2px 0 0 2px;
    box-shadow: -1px 0 0 rgba(255, 255, 255, 0.08), inset 1px 0 0 rgba(255, 255, 255, 0.04);
}

.phone-side-btn--vol-up {
    top: 100px;
    width: 3px;
    height: 36px;
}

.phone-side-btn--vol-down {
    top: 148px;
    width: 3px;
    height: 36px;
}

/* Power button */
.phone-side-btn--power {
    left: auto;
    right: -3px;
    top: 120px;
    width: 3px;
    height: 52px;
    border-radius: 0 2px 2px 0;
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.08);
}

/* Screen area */
.phone-screen {
    position: absolute;
    inset: 6px;
    border-radius: 40px;
    overflow: hidden;
    background: #000;
}

/* Carousel lives inside .phone-screen */
.phone-carousel {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 40px;
    position: relative;
}

.phone-carousel__track {
    display: flex;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.55, 0, 0.1, 1);
    will-change: transform;
}

.phone-carousel__slide {
    flex: 0 0 auto;
    height: 100%;
    overflow: hidden;
    border-radius: 40px;
    flex-shrink: 0;
}

.phone-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 40px;
    pointer-events: none;
    user-select: none;
}

/* Dot indicators */
.phone-carousel__dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 20;
    pointer-events: none;
}

.phone-carousel__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
    flex-shrink: 0;
}

.phone-carousel__dot.active {
    background: #f8be37;
    width: 18px;
    border-radius: 3px;
    transform: scaleY(1.1);
}



/* Trusted By */
.trusted {
    background: var(--text-white);
    padding: 10px 0 30px;
    /* Reduced top padding from 40px to 10px to minimize vertical space */
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.trusted::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("web_page/img/image-52.png") no-repeat center / cover;
    opacity: 0.55;
    pointer-events: none;
}

.trusted>.container {
    position: relative;
    z-index: 1;
}

.trusted-title {
    text-align: center;
    color: var(--purple-light);
    font-size: 26px;
    /* Increased font size for better visibility */
    font-weight: 700;
    /* Bolder font weight */
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.trusted-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    /* Increased gap for larger items */
}

.trusted-item {
    background: rgba(255, 255, 255, 0.85);
    color: var(--purple-light);
    font-weight: 600;
    /* Bolder font weight */
    font-size: 18px;
    /* Increased font-size */
    padding: 12px 24px;
    /* Increased padding */
    border-radius: 50px;
    border: 1.5px solid rgba(230, 182, 78, 0.55);
    box-shadow: 0 4px 15px rgba(121, 45, 133, 0.05);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.trusted-item:hover {
    transform: translateY(-3px);
    border-color: var(--gold, #E6B64E);
    box-shadow: 0 8px 20px rgba(121, 45, 133, 0.12);
    background: #FFFFFF;
}

.trusted-star {
    width: 28px;
    /* Increased star size */
    height: 28px;
}

/* Features Diagram */
.features-section {
    padding: 47px 0 126px;
    background:
        radial-gradient(circle at 18% 16%, rgba(123, 58, 145, 0.28) 0%, rgba(123, 58, 145, 0) 34%),
        radial-gradient(circle at 84% 18%, rgba(230, 182, 78, 0.12) 0%, rgba(230, 182, 78, 0) 26%),
        linear-gradient(98deg, #23124a 0%, #33195a 46%, #6f3779 100%);
}

.features-section .features-bg-wave {
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    opacity: 0.34;
    mix-blend-mode: screen;
}

.features-section.section-dark::before {
    width: min(660px, 58vw);
    height: min(760px, 76vw);
    left: -18%;
    top: 8%;
    background-image: url("web_page/img/image-43.png");
    opacity: 0.2;
    filter: none;
    mix-blend-mode: screen;
}

.features-section.section-dark::after {
    content: none;
}

.features-section .section-title {
    position: relative;
    z-index: 2;
}

.features-section .section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -22px;
    width: min(540px, 78vw);
    height: 104px;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at center, rgba(230, 182, 78, 0.16) 0%, rgba(230, 182, 78, 0) 68%);
    opacity: 0.8;
    pointer-events: none;
}

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

.section-title--features {
    text-align: center;
    margin: 0 auto 34px;
    max-width: 760px;
}

.section-title--features h2 {
    font-size: clamp(34px, 4.6vw, 52px);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-title--features h3 {
    /* font-size: clamp(34px, 4.6vw, 52px); */
    line-height: 1;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-title--features .section-subtitle {
    font-size: clamp(17px, 2vw, 24px);
    line-height: 1.24;
    letter-spacing: -0.02em;
    opacity: 0.96;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    opacity: 0.95;
}

.features-showcase {
    position: relative;
    border-radius: 34px;
    padding: clamp(24px, 3.2vw, 36px);
    background:
        radial-gradient(circle at 12% 48%, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 26%),
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 24%),
        linear-gradient(94deg, rgba(34, 20, 71, 0.96) 0%, rgba(67, 32, 98, 0.94) 54%, rgba(112, 56, 123, 0.92) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 28px 56px rgba(13, 8, 31, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.features-showcase::before,
.features-showcase::after {
    content: "";
    position: absolute;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    mix-blend-mode: screen;
    opacity: 0.22;
}

.features-showcase::before {
    inset: auto auto -20% -20%;
    width: min(640px, 70vw);
    height: min(640px, 70vw);
    background-image: url("web_page/img/image-74.png");
}

.features-showcase::after {
    inset: -16% -14% auto auto;
    width: min(620px, 62vw);
    height: min(620px, 62vw);
    background-image: url("img/image-171.png");
}

.features-diagram-wrapper {
    position: relative;
    width: 100%;
    max-width: 1380px;
    aspect-ratio: 1180 / 690;
    margin: 0 auto;
    overflow: visible;
    isolation: isolate;
}

.features-section .features-diagram-wrapper {
    margin-top: 2px;
}

.feature-connector {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    filter: drop-shadow(0 0 18px rgba(232, 191, 84, 0.16));
}

.feature-route {
    fill: none;
    stroke: rgba(230, 182, 78, 0.94);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 4 8;
    opacity: 0.96;
    animation: feature-dash 14s linear infinite;
}

.feature-route--scheme,
.feature-route--vault {
    animation-duration: 12s;
}

.feature-traveler {
    fill: #ffe29c;
    opacity: 0.96;
    filter: drop-shadow(0 0 6px rgba(230, 182, 78, 0.92));
}

.feature-node {
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    width: min(var(--w, 290px), calc(100% - 24px));
    transform: translate(-50%, -50%);
    z-index: 2;
    min-width: 0;
    will-change: transform;
    animation: feature-float var(--float-duration, 7.2s) ease-in-out infinite;
    animation-delay: var(--float-delay, 0s);
}

.feature-node--hub {
    z-index: 4;
}

.feature-card {
    position: relative;
    width: 100%;
    min-height: clamp(62px, 5vw, 74px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
        linear-gradient(135deg, rgba(110, 72, 146, 0.96), rgba(75, 44, 115, 0.98) 54%, rgba(55, 32, 82, 0.99) 100%);
    border: 1.4px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    padding: 12px 22px 13px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow:
        inset 0 -2px 0 rgba(255, 255, 255, 0.18),
        0 14px 30px rgba(16, 10, 35, 0.28);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
    opacity: 0.55;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow:
        inset 0 -2px 0 rgba(255, 255, 255, 0.26),
        0 18px 34px rgba(13, 7, 31, 0.34);
}

.feature-card--highlight {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06)),
        linear-gradient(135deg, rgba(138, 83, 168, 0.98), rgba(91, 53, 131, 0.98) 52%, rgba(58, 34, 91, 1) 100%);
}

.feature-node--scheme .feature-card,
.feature-node--vault .feature-card {
    padding-inline: 26px;
}

.feature-node--scheme .feature-card h3,
.feature-node--vault .feature-card h3 {
    font-size: clamp(17px, 1.54vw, 21px);
}

.feature-node--scheme .feature-card p,
.feature-node--vault .feature-card p {
    font-size: clamp(10px, 0.78vw, 11.5px);
}

.feature-card h3 {
    color: var(--text-white);
    font-size: clamp(17px, 1.52vw, 21px);
    line-height: 1.02;
    margin-bottom: 3px;
    letter-spacing: -0.03em;
    text-wrap: balance;
    white-space: nowrap;
}

.feature-card p {
    font-size: clamp(10px, 0.82vw, 11.5px);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.18;
    text-wrap: balance;
    white-space: nowrap;
}

.feature-hub {
    position: relative;
    width: 100%;
    min-height: clamp(112px, 8.6vw, 126px);
    padding: 28px 34px 28px;
    border-radius: 36px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
        linear-gradient(135deg, rgba(102, 76, 151, 0.98), rgba(76, 54, 122, 0.99) 58%, rgba(60, 39, 98, 1) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        inset 0 -3px 0 rgba(255, 255, 255, 0.16),
        0 18px 36px rgba(11, 7, 28, 0.36);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-hub::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.feature-hub__logo {
    display: block;
    width: min(100%, 276px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.08));
}

.feature-node--admin .feature-card {
    padding-inline: 24px;
}

.feature-node--admin .feature-card h3 {
    font-size: clamp(17px, 1.48vw, 20px);
}

.feature-node--admin .feature-card p {
    font-size: clamp(10px, 0.76vw, 11px);
}

@keyframes feature-dash {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -120;
    }
}

@keyframes feature-float {

    0%,
    100% {
        transform: translate(-50%, -50%) translate3d(0, 0, 0);
    }

    50% {
        transform: translate(-50%, -50%) translate3d(var(--float-x, 0px), var(--float-y, -8px), 0);
    }
}

/* Laptop and short desktop viewports: scale diagram to fit screen height */
@media (min-width: 981px) and (max-height: 950px) {
    .features-section {
        padding: 30px 0 40px;
    }

    .section-title--features {
        margin-bottom: 20px;
    }

    .section-title--features h3 {
        font-size: clamp(24px, 3.5vw, 36px);
        margin-bottom: 8px;
    }

    .section-title--features .section-subtitle {
        font-size: clamp(15px, 1.8vw, 20px);
    }

    .features-diagram-wrapper {
        transform: scale(0.8);
        transform-origin: top center;
        margin-bottom: -11.69%;
    }
}

@media (min-width: 981px) and (max-height: 800px) {
    .features-section {
        padding: 20px 0 25px;
    }

    .section-title--features {
        margin-bottom: 12px;
    }

    .section-title--features h3 {
        font-size: clamp(22px, 3.2vw, 32px);
        margin-bottom: 4px;
    }

    .section-title--features .section-subtitle {
        font-size: clamp(14px, 1.6vw, 18px);
    }

    .features-diagram-wrapper {
        transform: scale(0.72);
        transform-origin: top center;
        margin-bottom: -16.37%;
    }
}

@media (max-width: 980px) {
    .features-section {
        padding: 68px 0 78px;
    }

    .features-section .features-bg-wave {
        object-position: center top;
        opacity: 0.3;
    }

    .section-title--features {
        margin-bottom: 24px;
        max-width: 100%;
    }

    .features-section .section-title::after {
        width: min(420px, 88vw);
    }

    .section-title--features h2 {
        font-size: clamp(28px, 4vw, 38px);
        margin-bottom: 8px;
    }

    .section-title--features .section-subtitle {
        font-size: clamp(15px, 2.2vw, 19px);
    }

    .features-showcase {
        border-radius: 26px;
        padding: 20px 16px;
    }

    .features-diagram-wrapper {
        aspect-ratio: auto;
        max-width: none;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .feature-connector {
        display: none;
    }

    .feature-node {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        transform: none;
        min-width: 0;
        animation: none;
    }

    .feature-node--hub {
        grid-column: 1 / -1;
    }

    .feature-hub,
    .features-diagram-wrapper .feature-card {
        width: 100%;
        min-height: 96px;
        padding: 18px 18px 19px;
        border-radius: 22px;
    }

    .feature-hub {
        padding: 24px 22px 26px;
    }

    .features-diagram-wrapper .feature-card:hover {
        transform: translateY(-4px);
    }

    .features-diagram-wrapper .feature-card h3 {
        font-size: clamp(15px, 2.2vw, 18px);
        white-space: normal;
        text-wrap: balance;
    }

    .features-diagram-wrapper .feature-card p {
        font-size: clamp(11px, 1.5vw, 12.5px);
        white-space: normal;
        text-wrap: balance;
    }

    .feature-hub__logo {
        width: min(100%, 250px);
    }
}

@media (max-width: 560px) {
    .features-section {
        padding: 48px 0 56px;
    }

    .features-section .features-bg-wave {
        object-position: center 18%;
        opacity: 0.26;
    }

    .section-title--features h2 {
        font-size: 24px;
    }

    .section-title--features .section-subtitle {
        font-size: 14px;
    }

    .features-showcase {
        padding: 16px 12px;
        border-radius: 20px;
    }

    .features-diagram-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-node--hub {
        grid-column: auto;
    }

    .feature-hub,
    .features-diagram-wrapper .feature-card {
        min-height: 80px;
        padding: 14px 18px;
        border-radius: 14px;
    }

    .feature-hub {
        padding: 20px 18px 22px;
    }

    .features-diagram-wrapper .feature-card h3 {
        font-size: 16px;
    }

    .features-diagram-wrapper .feature-card p {
        font-size: 12px;
    }

    .feature-hub__logo {
        width: min(100%, 216px);
    }
}

@media (prefers-reduced-motion: reduce) {

    .feature-node,
    .feature-route {
        animation: none;
    }

    .feature-traveler {
        display: none;
    }
}

/* Digital Scheme Management Feature Section */
.dsm-feature-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #28164B 0%, #432062 40%, #792D85 100%);
    position: relative;
    overflow: hidden;
}

.dsm-feature-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.dsm-feature-glow--1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(230, 182, 78, 0.18) 0%, transparent 70%);
    top: -120px;
    right: 10%;
}

.dsm-feature-glow--2 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    bottom: -80px;
    left: 5%;
}

.dsm-feature-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.dsm-feature-text {
    color: #fff;
}

.dsm-feature-badge {
    display: inline-block;
    background: var(--brand-gold);
    color: var(--purple-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 7px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.dsm-feature-title {
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 20px;
}

.dsm-feature-desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 32px;
}

.dsm-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dsm-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
}

.dsm-feature-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--brand-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.dsm-feature-check svg {
    width: 13px;
    height: 13px;
    stroke: var(--purple-dark);
    stroke-width: 2.5;
}

/* Right image column */
.dsm-feature-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dsm-feature-image-wrap {
    position: relative;
    display: inline-block;
    animation: featureImageFloat 6s ease-in-out infinite;
}

@keyframes featureImageFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .dsm-feature-image-wrap {
        animation: none !important;
    }
}

.dsm-feature-image-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(230, 182, 78, 0.30) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.dsm-feature-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 540px;
    width: auto;
    display: block;
    margin: 0 auto;
    /* Clean phone drop shadow without bounding card box */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

@media (max-width: 900px) {
    .dsm-feature-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .dsm-feature-image-col {
        order: -1;
    }

    .dsm-feature-img {
        max-height: 380px;
    }
}

@media (max-width: 576px) {
    .dsm-feature-section {
        padding: 60px 0;
    }

    .dsm-feature-title {
        font-size: 24px;
    }
}

/* Admin Dashboard Feature Section */
.admin-feature-section {
    padding: 90px 0;
    background: #FAFAFA;
    position: relative;
    overflow: hidden;
}

/* Background Assets for Admin Section */
.admin-bg {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    max-width: none;
    user-select: none;
}

.admin-bg-left {
    top: 50%;
    left: 0;
    width: clamp(240px, 31vw, 560px);
    transform: translate(-18%, -50%);
    object-fit: contain;
    object-position: left center;
    opacity: 0.8;
}

.admin-bg-right {
    top: 50%;
    right: 0;
    width: clamp(220px, 25vw, 420px);
    transform: translate(14%, -50%);
    object-fit: contain;
    object-position: right center;
    opacity: 0.8;
}


.admin-feature-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.admin-feature-glow--1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(121, 45, 133, 0.05) 0%, transparent 70%);
    top: -120px;
    left: 10%;
}

.admin-feature-glow--2 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(230, 182, 78, 0.04) 0%, transparent 70%);
    bottom: -80px;
    right: 5%;
}

.admin-feature-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.admin-feature-text {
    color: var(--purple-dark);
}

.admin-feature-badge,
.about-badge {
    display: inline-block;
    background: var(--brand-purple);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 7px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.mobile-badge {
    display: none;
}

.admin-feature-title {
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--purple-dark);
    margin-bottom: 20px;
}

.admin-feature-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #4A3E56;
    margin-bottom: 32px;
}

.admin-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.admin-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--purple-dark);
    line-height: 1.5;
}

.admin-feature-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--brand-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.admin-feature-check svg {
    width: 13px;
    height: 13px;
    stroke: #ffffff;
    stroke-width: 2.5;
}

/* Left image column */
.admin-feature-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.admin-feature-image-wrap {
    position: relative;
    display: inline-block;
    animation: featureImageFloat 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .admin-feature-image-wrap {
        animation: none !important;
    }
}

.admin-feature-image-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(121, 45, 133, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.admin-feature-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 540px;
    width: auto;
    display: block;
    margin: 0 auto;
    /* Clean phone drop shadow without bounding card box */
    filter: drop-shadow(0 20px 40px rgba(40, 22, 75, 0.15));
}

@media (max-width: 900px) {
    .admin-feature-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .admin-feature-image-col {
        order: -1;
    }

    .admin-feature-img {
        max-height: 380px;
    }

    .mobile-badge {
        display: inline-block !important;
        justify-self: center;
        margin-bottom: 24px;
        order: -2;
    }

    .admin-feature-text .admin-feature-badge,
    .dsm-feature-text .dsm-feature-badge {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .admin-feature-section {
        padding: 60px 0;
    }

    .admin-feature-title {
        font-size: 24px;
    }
}

/* How It Works */
.hiw-section {
    padding: 80px 0 120px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hiw-bg {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    max-width: none;
    user-select: none;
}

.hiw-bg-left {
    top: 50%;
    left: 0;
    width: clamp(240px, 31vw, 560px);
    transform: translate(-18%, -50%);
    object-fit: contain;
    object-position: left center;
    opacity: 0.8;
}

.hiw-bg-middle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max(100vw, 1440px);
    min-width: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
}

.hiw-bg-right {
    top: 50%;
    right: 0;
    width: clamp(220px, 25vw, 420px);
    transform: translate(14%, -50%);
    object-fit: contain;
    object-position: right center;
    opacity: 0.8;
}

.hiw-section .container {
    position: relative;
    z-index: 2;
}

.hiw-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(32px, 4vw, 56px);
}

@media (max-width: 991px) {
    .hiw-container {
        flex-direction: column;
        text-align: center;
    }
}

/* â”€â”€â”€ Premium Flow Panel â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hiw-flow-panel {
    flex: 1;
    position: relative;
    max-width: 500px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px 10px 20px 20px;
    overflow: visible;
}

/* Gradient glow orbs */
.hiw-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    z-index: 0;
}

.hiw-orb--purple {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(121, 45, 133, 0.28) 0%, transparent 70%);
    top: -40px;
    left: -60px;
    animation: hiwOrbFloat 7s ease-in-out infinite;
}

.hiw-orb--gold {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(230, 182, 78, 0.22) 0%, transparent 70%);
    bottom: 20px;
    right: -20px;
    animation: hiwOrbFloat 9s ease-in-out infinite reverse;
}

/* Floating particles */
.hiw-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hiw-p {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: hiwParticleDrift linear infinite;
}

.hiw-p--1 {
    width: 5px;
    height: 5px;
    background: #E6B64E;
    top: 10%;
    left: 15%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.hiw-p--2 {
    width: 3px;
    height: 3px;
    background: #792D85;
    top: 30%;
    left: 80%;
    animation-duration: 10s;
    animation-delay: 1.5s;
}

.hiw-p--3 {
    width: 4px;
    height: 4px;
    background: #E6B64E;
    top: 55%;
    left: 5%;
    animation-duration: 7s;
    animation-delay: 0.8s;
}

.hiw-p--4 {
    width: 6px;
    height: 6px;
    background: #792D85;
    top: 70%;
    left: 70%;
    animation-duration: 11s;
    animation-delay: 2.2s;
}

.hiw-p--5 {
    width: 3px;
    height: 3px;
    background: #fff;
    top: 20%;
    left: 50%;
    animation-duration: 9s;
    animation-delay: 3s;
}

.hiw-p--6 {
    width: 5px;
    height: 5px;
    background: #E6B64E;
    top: 85%;
    left: 30%;
    animation-duration: 6s;
    animation-delay: 0.3s;
}

.hiw-p--7 {
    width: 4px;
    height: 4px;
    background: #792D85;
    top: 45%;
    left: 90%;
    animation-duration: 12s;
    animation-delay: 1s;
}

.hiw-p--8 {
    width: 3px;
    height: 3px;
    background: #fff;
    top: 5%;
    left: 60%;
    animation-duration: 8s;
    animation-delay: 4s;
}

/* â”€â”€â”€ Premium Compact Ladder Layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hiw-flow-panel.hiw-ladder-layout {
    flex: 1.4;
    position: relative;
    max-width: 640px;
    min-height: 480px;
    /* More compact */
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    perspective: 1200px;
}

/* Steps Staggering (Subtle Pattern) */
.hiw-ladder-step--1 {
    transform: translateX(0);
    z-index: 10;
}

.hiw-ladder-step--2 {
    transform: translateX(45px);
    z-index: 9;
}

.hiw-ladder-step--3 {
    transform: translateX(90px);
    z-index: 8;
}

.hiw-flow-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 0 0 50px 0;
    /* Tight vertical spacing */
    z-index: 3;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Floating animation */
.hiw-flow-step .hiw-card {
    animation: hiwFloat 7s ease-in-out infinite;
}

.hiw-ladder-step--2 .hiw-card {
    animation-delay: -2.5s;
}

.hiw-ladder-step--3 .hiw-card {
    animation-delay: -5s;
}

.hiw-flow-step.hiw-visible {
    opacity: 1;
}

.hiw-flow-step--2 {
    transition-delay: 0.25s;
}

.hiw-flow-step--3 {
    transition-delay: 0.5s;
    padding-bottom: 0;
}

/* Pulse ring */
.hiw-pulse-ring {
    position: absolute;
    left: -6px;
    top: -6px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--brand-purple-40);
    animation: hiwPulse 3.5s ease-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Step badge */
.hiw-badge {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #432062 0%, #28164B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(230, 182, 78, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hiw-flow-step:hover .hiw-badge {
    transform: scale(1.15) rotate(10deg);
    border-color: var(--brand-gold);
}

.hiw-badge__num {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--brand-gold);
    line-height: 1;
}

/* Compact Premium Card */
.hiw-card {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    /* Centered icons for compact look */
    gap: 16px;
    padding: 18px 24px;
    /* Reduced padding */
    border-radius: 24px;
    /* Slightly smaller radius */
    background: #411f60;
    border: 1.2px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hiw-flow-step:hover .hiw-card {
    transform: translateY(-8px) rotateX(3deg) rotateY(1deg);
    border-color: var(--brand-gold-72);
}

.hiw-card__sheen {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.15) 50%, transparent 65%);
    transform: translateX(-150%);
    transition: transform 1s ease;
    pointer-events: none;
}

.hiw-flow-step:hover .hiw-card__sheen {
    transform: translateX(150%);
}

.hiw-card__dot {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-gold);
    box-shadow: 0 0 15px 4px rgba(230, 182, 78, 0.5);
    animation: hiwDotPulse 2s ease-in-out infinite;
}

/* Card icon (Smaller) */
.hiw-card__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    /* width: 44px;
    height: 44px; */
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.5s ease;
}

.hiw-card__icon svg {
    width: 40px;
    height: 40px;

    /* width: 24px;
        height: 24px; */
}

.hiw-flow-step:hover .hiw-card__icon {
    transform: translateZ(15px) scale(1.1);
    background: rgba(230, 182, 78, 0.1);
}

/* Card text (Slightly smaller) */
.hiw-card__body {
    flex: 1;
}

.hiw-card__title {
    font-size: 19px;
    font-weight: 750;
    color: #FFFFFF;
    margin: 0 0 4px;
    line-height: 1.2;
}

.hiw-card__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* â”€â”€ HIW image (right side) â”€â”€ */
.hiw-image {
    flex: 1.1;
    display: flex;
    justify-content: flex-end;
    text-align: right;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .hiw-image {
        justify-content: center;
        text-align: center;
        margin-top: 40px;
        width: 100%;
    }
}

.hiw-image img {
    width: min(100%, 540px);
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.35));
    transform: scale(1.02) rotate(-2deg);
    /* Slightly less intense rotation */
    animation: hiwFloat 9s ease-in-out infinite alternate;
}

/* â”€â”€ Keyframes â”€â”€ */
@media (max-width: 1200px) {
    .hiw-bg-middle {
        width: max(115vw, 1440px);
    }

    .hiw-ladder-step--2 {
        transform: translateX(28px);
    }

    .hiw-ladder-step--3 {
        transform: translateX(56px);
    }
}

@keyframes hiwFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(0.5deg);
    }
}

@keyframes hiwPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes hiwDotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {

    .hiw-orb,
    .hiw-p,
    .hiw-pulse-ring,
    .hiw-card__dot,
    .hiw-card__sheen,
    .hiw-flow-step .hiw-card {
        animation: none !important;
        transition: none !important;
    }

    .hiw-flow-step {
        opacity: 1 !important;
        transform: none !important;
    }
}








/* Consumer Stories */
.reviews-section {
    padding: 34px 0;
    overflow: hidden;
    position: relative;
    background: var(--gradient-review);
}

.reviews-section.section-dark::before {
    width: min(800px, 80vw);
    height: min(800px, 80vw);
    left: -20%;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("web_page/img/image-71.png");
    opacity: 0.25;
    filter: blur(60px);
}

.reviews-section.section-dark::after {
    width: min(900px, 90vw);
    height: min(900px, 90vw);
    right: -25%;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("web_page/img/image-50.png");
    opacity: 0.15;
    filter: blur(60px);
}

.reviews-slider-container {
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.reviews-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 40px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    width: 100%;
}

@media (min-width: 1730px) {
    .reviews-track {
        justify-content: center;
    }
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    background: rgba(255, 255, 255, 0.09);
    padding: 50px 40px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 400px;
    max-width: 400px;
    scroll-snap-align: center;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

@media (max-width: 500px) {
    .review-card {
        min-width: 280px;
        max-width: 280px;
        padding: 30px 20px;
        border-radius: 40px;
    }
}

.review-card.is-active {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.16);
    transform: scale(1.02);
    box-shadow: 0 30px 70px rgba(40, 22, 75, 0.3);
}

.review-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 0.95;
}

.review-author {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: right;
    width: 100%;
    font-weight: 500;
    margin-top: auto;
}

.reviews-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.reviews-pagination .dash {
    width: 32px;
    height: 3px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.reviews-pagination .dash:hover {
    background: rgba(255, 255, 255, 0.4);
}

.reviews-pagination .dash.active {
    background: var(--gold-strong);
    width: 40px;
}

/* Demo Section */
.demo-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.demo-section::before,
.demo-section::after {
    display: none;
}

/* image-58 â€” cream blob, top-left */
.demo-bg {
    position: absolute;
    pointer-events: none;
    object-fit: contain;
    z-index: 0;
}

.demo-bg-left {
    top: -10%;
    left: -10%;
    width: 42%;
    max-width: 540px;
    opacity: 0.5;
}

/* image-71 â€” purple blob, top-right */
.demo-bg-right {
    top: -8%;
    right: -5%;
    width: 42%;
    max-width: 560px;
    z-index: 0;
}

.demo-section .container {
    position: relative;
    z-index: 2;
}

.demo-section h2 {
    margin-bottom: 40px;
}

.demo-form-wrapper {
    background: linear-gradient(135deg, rgba(109, 45, 136, 0.97) 0%, rgba(72, 37, 111, 0.98) 40%, rgba(40, 22, 75, 1) 100%);
    border-radius: 40px;
    padding: 50px 60px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    box-shadow: 12px 20px 0 rgba(121, 45, 133, 0.28), 0 20px 60px rgba(40, 22, 75, 0.16);
    border: none;
    position: relative;
    z-index: 3;
}

@media (max-width: 1200px) {
    .demo-form-wrapper {
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .demo-form-wrapper {
        padding: 30px 20px;
    }
}

.form-subtitle {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}

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

@media (max-width: 1200px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fn,
    .sn,
    .mn,
    .em,
    .ci,
    .st,
    .nc,
    .ns,
    .btn-submit-wrapper {
        grid-column: span 1 !important;
        grid-row: auto !important;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.fn {
    grid-column: 1 / 3;
    grid-row: 1;
}

.sn {
    grid-column: 3 / 5;
    grid-row: 1;
}

.mn {
    grid-column: 1 / 3;
    grid-row: 2;
}

.em {
    grid-column: 3 / 5;
    grid-row: 2;
}

.ci {
    grid-column: 1 / 2;
    grid-row: 3;
}

.st {
    grid-column: 2 / 3;
    grid-row: 3;
}

.nc {
    grid-column: 1 / 2;
    grid-row: 4;
}

.ns {
    grid-column: 2 / 3;
    grid-row: 4;
}

.btn-submit-wrapper {
    grid-column: 3 / 5;
    grid-row: 4;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 2px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
}

.form-group input,
.form-group select {
    padding: 14px 20px;
    border-radius: 20px;
    border: 1px solid var(--gold);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.86);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    /* remove default select arrow */
}

.form-group select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 20px top 50%;
    background-size: 10px auto;
}

.form-group select option {
    color: var(--text-dark);
    background: #fff;
}

.form-group input:focus,
.form-group select:focus {
    border-color: rgba(230, 182, 78, 0.6);
    box-shadow: 0 0 0 3px rgba(230, 182, 78, 0.15);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.btn-demo {
    background: var(--gold);
    color: var(--purple-dark);
    font-weight: 600;
    font-size: 16px;
    border-radius: 20px;
    padding: 14px 40px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 182, 78, 0.3);
}

/* FAQs */
.faq-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.faq-bg-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
}

.faq-section.section-dark::before {
    width: min(720px, 74vw);
    height: min(720px, 74vw);
    left: -32%;
    top: 10%;
    background-image: url("web_page/img/image-71.png");
    opacity: 0.30;
}

.faq-section.section-dark::after {
    display: none;
}

.faq-section .container {
    position: relative;
    z-index: 10;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(230, 182, 78, 0.62);
    border-radius: 46px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 16px 35px rgba(40, 22, 75, 0.18);
}

.faq-question {
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
}

.faq-question span:last-child {
    color: var(--gold);
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.faq-answer {
    display: none;
    padding: 0 22px 18px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
}

/* Trusted Partners â€” redesigned dark section */
/* Standalone FAQ page */
.faq-page {
    background: #fff;
}

.faq-page-section {
    position: relative;
    min-height: 950px;
    padding: 88px 0 150px;
    overflow: hidden;
    background: #fff;
}

.faq-page-section .container {
    position: relative;
    z-index: 2;
}

.faq-page-decor {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.faq-page-decor--wave {
    top: -2px;
    left: 22px;
    width: 671px;
    max-width: none;
    opacity: 0.22;
}

.faq-page-decor--gold {
    left: -30px;
    bottom: 20px;
    width: 340px;
    max-width: none;
    opacity: 0.85;
}

.faq-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 572px) minmax(420px, 526px);
    gap: 98px;
    max-width: 1196px;
    margin: 0 auto;
    align-items: start;
}

.faq-page__intro {
    padding-left: 19px;
}

.faq-page__small-star {
    width: 71px;
    height: 71px;
    margin: 0 0 12px;
}

.faq-page__heading {
    margin: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    color: var(--brand-purple);
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: 0;
}

.faq-page__heading-line {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    white-space: nowrap;
}

.faq-page__line {
    width: 220px;
    height: 2px;
    margin-top: 34px;
    background: linear-gradient(to right, var(--brand-purple) 0%, transparent 100%);
    border-radius: 999px;
}

.faq-page__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 83px;
}

.faq-page-section .faq-item {
    overflow: hidden;
    border: 2px solid #8a3197;
    border-radius: var(--radius-pill);
    background: #fff;
    box-shadow: none;
    transition: border-radius 0.2s ease, box-shadow 0.2s ease;
}

.faq-page-section .faq-item.active {
    border-radius: 48px;
}

.faq-page-section .faq-question {
    width: 100%;
    min-height: 40px;
    padding: 9px 20px 9px 24px;
    border: 0;
    background: transparent;
    color: var(--brand-purple);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}

.faq-page-section .faq-item.active .faq-question {
    min-height: auto;
    padding-top: 27px;
    padding-bottom: 4px;
}

.faq-page-section .faq-answer {
    padding: 0 64px 24px 24px;
    color: var(--brand-purple);
    font-size: 15px;
    line-height: 1.35;
}

.faq-copy-icon {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    overflow: hidden;
    color: transparent !important;
    font-size: 0 !important;
}

.faq-copy-icon::before,
.faq-copy-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 21px;
    height: 2.4px;
    border-radius: 999px;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, width 0.2s ease;
}

.faq-copy-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-page-section .faq-item.active .faq-copy-icon::before {
    width: 15px;
    transform: translate(-72%, -50%) rotate(45deg);
}

.faq-page-section .faq-item.active .faq-copy-icon::after {
    width: 15px;
    transform: translate(-22%, -50%) rotate(-45deg);
}

@media (max-width: 1180px) {
    .faq-page__grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 526px);
        gap: 54px;
    }

    .faq-page__heading {
        font-size: 54px;
    }
}

@media (max-width: 992px) {
    .faq-page-section {
        min-height: auto;
        padding: 76px 0 130px;
    }

    .faq-page__grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        gap: 34px;
    }

    .faq-page__intro {
        padding-left: 0;
    }

    .faq-page__list {
        margin-top: 0;
    }

    .faq-page__heading {
        font-size: 46px;
    }
}

@media (max-width: 576px) {
    .faq-page__heading {
        font-size: 38px;
    }

    .faq-page__heading-line {
        gap: 8px;
    }

    .faq-page__line {
        width: 180px;
        margin-top: 28px;
    }
}

@media (max-width: 420px) {
    .faq-page__heading {
        font-size: 32px;
    }
}

.partners-showcase {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-top: 2%;
}

/* Override section-dark pseudo glows for partners */
.partners-showcase.section-dark::before {
    width: min(700px, 70vw);
    height: min(700px, 70vw);
    left: -20%;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("web_page/img/image-71.png");
    opacity: 0.22;
    filter: blur(40px);
}

.partners-showcase.section-dark::after {
    width: min(600px, 60vw);
    height: min(600px, 60vw);
    right: -18%;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("web_page/img/image-50.png");
    opacity: 0.14;
    filter: blur(40px);
}

/* Heading */
.partners-heading {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(20px, 2.6vw, 32px);
    line-height: 1.3;
    text-align: center;
    margin: 0 auto 14px;
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.partners-subtext {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 2;
}

/* New logo row */
.partners-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Individual partner card */
.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    width: 200px;
    height: 100px;
    overflow: hidden;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(230, 182, 78, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(230, 182, 78, 0.2);
}

.partner-card img {
    display: block;
    max-height: 52px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-card:hover img {
    opacity: 1;
    transform: scale(1.05);
}




/* CTA Bottom */
.cta-bottom {
    padding: 43px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    pointer-events: none;
    object-fit: contain;
}

/* Cream/beige blob â€” left side */
.cta-bg-left {
    left: -8%;
    top: 50%;
    transform: translateY(-50%);
    width: 52%;
    max-width: 650px;
    z-index: 0;
}

/* Purple/lavender blob â€” top-right corner */
.cta-bg-right {
    right: -8%;
    top: -20%;
    width: 38%;
    max-width: 480px;
    z-index: 0;
}

/* Wave lines â€” full-width overlay on top */
.cta-bg-waves {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.9;
}

.cta-bottom .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.cta-text-col {
    max-width: 640px;
}

.cta-bottom h2 {
    font-size: 32px;
    color: var(--purple-light);
    line-height: 1.3;
    margin: 0 0 16px;
}

.cta-bottom .cta-text-col p {
    color: var(--purple-light);
    font-size: 15px;
    opacity: 0.85;
    margin: 0;
}

.cta-btn-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 360px;
}

.btn-cta {
    background: var(--gold-strong);
    color: #fff;
    font-weight: 500;
    font-size: 26px;
    border-radius: 40px;
    padding: 14px 48px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(230, 182, 78, 0.25);
    transition: transform 0.2s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(230, 182, 78, 0.35);
}

.cta-btn-col p {
    color: var(--purple-light);
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.85;
    margin: 0;
}

/* Footer */
.footer {
    background: #ffffff;
    /* padding: 18px 0 0; */
    color: #fff;
    position: relative;
}

.footer .container {
    max-width: none;
    padding: 0;
}

.footer-shell {
    position: relative;
}

.footer-star {
    position: absolute;
    top: -105px;
    left: 50%;
    width: 211px;
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
}

.footer-main {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 86px 0 36px;
    background: linear-gradient(97deg, #5e2d86 0%, #341c5e 42%, #261446 100%);
}

.footer-main::after {
    content: "";
    position: absolute;
    top: -18px;
    right: 0;
    width: 700px;
    height: 300px;
    background-image: url("../img/image-171.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right top;
    opacity: 0.45;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.footer-side {
    padding-top: 44px;
}

.footer-side--left {
    max-width: 325px;
}

.footer-side--right {
    max-width: 295px;
    margin-left: auto;
    text-align: right;
}

.footer-brand {
    align-self: center;
    text-align: center;
    transform: translateY(8px);
}

.footer-logo {
    display: inline-block;
}

.footer-logo img {
    display: block;
    width: min(100%, 290px);
    height: auto;
}

.footer-tagline {
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 400;
}

.footer-powered-by {
    display: block;
    margin-top: 10px;
    /* font-weight: 700; */
}

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

.footer-nav a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
    line-height: 1;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-phone {
    display: inline-block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.footer-email {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    text-decoration: none;
    word-break: break-word;
}

.footer-address {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    line-height: 1.35;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 14px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #fff;
    transition: transform 0.2s;
}

.footer-social svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.footer-social a:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    background: #4c3a6a;
    padding: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    position: relative;
    z-index: 2;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 28px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 34px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: #fff;
}

.copyright {
    color: rgba(255, 255, 255, 0.88);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .partners-panel {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 38px;
    }

    .partners-copy p {
        max-width: none;
    }

    .partners-stage {
        padding: 28px;
    }

    .hiw-container {
        flex-direction: column;
        text-align: center;
        align-items: stretch;
        gap: 36px;
    }

    .hiw-step {
        text-align: left;
    }

    .hiw-section {
        padding: 50px 0 88px;
    }

    .hiw-bg-left {
        top: 20%;
        width: clamp(170px, 40vw, 320px);
        transform: translate(-34%, -50%);
        opacity: 0.3;
    }

    .hiw-bg-middle {
        top: 44%;
        width: max(190vw, 980px);
        opacity: 0.34;
    }

    .hiw-bg-right {
        top: 77%;
        width: clamp(130px, 28vw, 240px);
        transform: translate(40%, -50%);
        opacity: 0.25;
    }

    .hiw-flow-panel.hiw-ladder-layout {
        max-width: 100%;
        min-height: auto;
    }

    .hiw-ladder-step--1,
    .hiw-ladder-step--2,
    .hiw-ladder-step--3 {
        transform: none;
    }

    .hiw-flow-step {
        gap: 12px;
        padding-bottom: 24px;
    }

    .hiw-card {
        padding: 18px 18px 18px 16px;
        border-radius: 22px;
    }

    .hiw-card__title {
        font-size: 18px;
    }

    .hiw-card__desc {
        font-size: 13.5px;
    }

    .hiw-image {
        justify-content: center;
        text-align: center;
    }

    .hiw-image img {
        width: min(100%, 440px);
    }

    .why-grid,
    .reviews-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        padding: 68px 0 34px;
    }

    .footer-grid,
    .footer-bottom-inner {
        padding-left: 30px;
        padding-right: 30px;
    }

    .footer-side,
    .footer-side--right {
        max-width: none;
        margin-left: 0;
        text-align: center;
        padding-top: 0;
    }

    .footer-nav,
    .footer-social,
    .footer-bottom-links {
        justify-content: center;
    }

    .footer-brand {
        order: -1;
        transform: none;
    }

    /* CTA tablet fix */
    .cta-bottom .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
    }

    .cta-text-col {
        max-width: 100%;
    }

    .cta-btn-col {
        align-items: center;
        max-width: 100%;
    }

    .btn-cta {
        font-size: 20px;
    }

    /* Hero tablet */
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content p {
        margin: 0 auto;
    }

    .hero-image {
        text-align: center;
        padding-right: 0;
    }

    /* Form tablet */
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fn,
    .sn,
    .mn,
    .em {
        grid-column: auto;
        grid-row: auto;
    }

    .ci {
        grid-column: 1;
        grid-row: auto;
    }

    .st {
        grid-column: 2;
        grid-row: auto;
    }

    .nc {
        grid-column: 1;
        grid-row: auto;
    }

    .ns {
        grid-column: 2;
        grid-row: auto;
    }

    .btn-submit-wrapper {
        grid-column: 1 / -1;
        grid-row: auto;
        justify-content: center;
    }

    .demo-form-wrapper {
        padding: 36px 28px;
    }
}

@media (max-width: 768px) {
    .partners-showcase {
        padding: 50px 0 70px;
    }

    .partners-heading {
        font-size: 20px;
    }

    .partners-logos-row {
        gap: 12px;
    }

    .partner-card {
        min-width: 130px;
        min-height: 82px;
        padding: 14px 18px;
    }

    .partner-card img {
        max-height: 38px;
        max-width: 110px;
    }



    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .why-grid,
    .reviews-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .demo-form-wrapper {
        padding: 30px;
    }

    .footer-main {
        padding: 58px 0 26px;
    }

    .footer-main::after {
        right: -180px;
        width: 460px;
        opacity: 0.3;
    }

    .footer-shell {
        padding-top: 0;
    }

    .footer-star {
        top: -40px;
        width: 108px;
    }

    .footer-tagline {
        margin-bottom: 18px;
        font-size: 14px;
    }

    .footer-phone {
        font-size: 24px;
    }

    .footer-nav {
        gap: 14px 18px;
        justify-content: center;
    }

    .footer-bottom {
        padding: 10px 16px;
        text-align: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        padding-left: 22px;
        padding-right: 22px;
    }

    .footer-bottom-links {
        gap: 18px;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .hero-image img {
        max-width: min(420px, 92%);
    }

    .cta-bottom .container {
        justify-content: center;
        text-align: center;
    }

    .cta-bottom p {
        margin-bottom: 18px;
    }

    .hero.section-dark .hero-container::after {
        opacity: 0.08;
        left: -22%;
        top: 28%;
    }
}

@media (max-width: 576px) {
    .hiw-section {
        padding: 40px 0 72px;
    }

    .hiw-bg-left,
    .hiw-bg-right {
        display: none;
    }

    .hiw-bg-middle {
        top: 41%;
        width: max(255vw, 920px);
        opacity: 0.28;
    }

    .hiw-flow-step {
        gap: 10px;
        padding-bottom: 18px;
    }

    .hiw-pulse-ring {
        width: 46px;
        height: 46px;
    }

    .hiw-badge {
        width: 34px;
        height: 34px;
    }

    .hiw-badge__num {
        font-size: 13px;
    }

    .hiw-card {
        gap: 12px;
        padding: 16px 16px 16px 14px;
    }

    .hiw-card__icon {
        width: 60px;
        height: 60px;
    }

    .hiw-card__icon svg {
        width: 40px;
        height: 40px;
    }

    .hiw-card__title {
        font-size: 17px;
    }

    .hiw-card__desc {
        font-size: 13px;
        line-height: 1.45;
    }

    .hiw-image img {
        width: min(100%, 360px);
        transform: none;
    }
}

@media (max-width: 420px) {
    .partners-copy h2 {
        font-size: 24px;
    }

    .partners-logos {
        grid-template-columns: 1fr;
    }

    .partner-logo,
    .partner-logo--wide,
    .partner-logo--brinks {
        grid-column: auto;
    }

    .btn {
        padding: 12px 22px;
    }

    .trusted-title {
        font-size: 18px;
        /* Proportional increase on mobile */
    }

    .hero-content p {
        font-size: 16px;
    }

    .review-card {
        padding: 30px 25px;
        min-width: 280px;
        max-width: 280px;
        border-radius: 40px;
    }

    .review-card p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .reviews-pagination .dash {
        width: 24px;
    }

    .reviews-pagination .dash.active {
        width: 32px;
    }

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

    .faq-answer {
        padding: 0 18px 18px;
        font-size: 14px;
    }
}

/* â”€â”€ Terms & Conditions Page â”€â”€ */
.tc-page {
    background: var(--text-white);
}

.tc-section {
    padding: 88px 0 40px;
    background: var(--text-white);
}

.tc-content {
    max-width: 1210px;
    margin: 0 auto;
}

.tc-heading {
    font-family: var(--font-heading);
    font-size: clamp(48px, 5vw, 62px);
    font-weight: 700;
    color: var(--purple-light);
    margin-bottom: 36px;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.tc-body {
    max-width: none;
}

.tc-body p {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.35vw, 17px);
    line-height: 1.82;
    color: rgba(121, 45, 133, 0.86);
    margin-bottom: 24px;
}

.tc-body p:last-child {
    margin-bottom: 0;
}

.trusted--terms {
    padding: 20px 0 150px;
    box-shadow: none;
    background: #fff;
}

.trusted--terms::before {
    display: none;
}

.trusted--terms .trusted-title {
    margin-bottom: 22px;
}

/* â”€â”€ Contact Page â”€â”€ */
.contact-page {
    background: var(--brand-surface);
}

.contact-section {
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
    background: var(--brand-surface);
}

.contact-gold-star {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* â”€â”€ Left info panel â”€â”€ */
.contact-info {
    position: relative;
    padding-top: 10px;
}

.contact-star {
    width: 36px;
    margin-bottom: 18px;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    color: var(--purple-dark);
    line-height: 1.15;
    margin-bottom: 16px;
}

.contact-subtext {
    font-size: 15px;
    color: #4A3B52;
    line-height: 1.65;
    max-width: 440px;
    margin-bottom: 28px;
    opacity: 0.9;
}

.contact-divider {
    width: 220px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 36px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    border: 2px solid #5D2667;
    border-radius: 20px;
    background: #F9F4F9;
    max-width: 440px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(121, 45, 133, 0.12);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    border: 2px solid #5D2667;
    background: #EADCEC;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5D2667;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
}

.contact-info-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-purple);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 15px;
    font-weight: 500;
    color: #2D1A47;
    line-height: 1.5;
    text-decoration: none;
}

a.contact-info-value:hover {
    color: var(--brand-purple);
}

/* â”€â”€ Right form card â”€â”€ */
.contact-form-card {
    background: linear-gradient(135deg, rgba(109, 45, 136, 0.97) 0%, rgba(72, 37, 111, 0.98) 40%, rgba(40, 22, 75, 1) 100%);
    border-radius: 28px;
    padding: 40px 36px 36px;
    box-shadow: var(--shadow-card);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form-msg {
    grid-column: 1 / -1;
}

.contact-form-msg textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: 16px;
    border: 1px solid var(--gold);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.86);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    resize: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-msg textarea:focus {
    border-color: rgba(230, 182, 78, 0.6);
    box-shadow: 0 0 0 3px rgba(230, 182, 78, 0.15);
}

.contact-form-msg textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.contact-form-footer {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.contact-submit-btn {
    min-width: 180px;
    padding: 14px 40px;
    font-size: 15px;
    border-radius: 20px;
}

.contact-response-msg {
    margin-top: 12px;
    font-size: 14px;
    text-align: center;
    color: #fff;
    padding: 8px 16px;
    border-radius: 10px;
}

.contact-response-msg.error-msg {
    background: rgba(220, 53, 69, 0.25);
    border: 1px solid rgba(220, 53, 69, 0.4);
}

.contact-response-msg.success {
    background: rgba(40, 167, 69, 0.25);
    border: 1px solid rgba(40, 167, 69, 0.4);
}

/* error labels inside contact form */
.contact-form-card label.error,
.contact-form-card .error-label {
    color: rgba(255, 180, 100, 0.9);
    font-size: 11px;
    display: block;
    margin-top: 4px;
}

/* â”€â”€ Success popup â”€â”€ */
.success-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.success-popup-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.success-popup {
    background: var(--gradient-panel);
    border: 1px solid rgba(230, 182, 78, 0.3);
    border-radius: 24px;
    padding: 44px 48px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.success-popup__icon {
    margin-bottom: 18px;
}

.success-popup__icon svg {
    width: 52px;
    height: 52px;
}

.success-popup__title {
    color: #fff;
    font-size: 26px;
    margin-bottom: 10px;
}

.success-popup__msg {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.success-popup__btn {
    min-width: 120px;
}

body.popup-open {
    overflow: hidden;
}

/* â”€â”€ Contact responsive â”€â”€ */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-item {
        max-width: 100%;
    }

    .contact-subtext {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 28px 20px 24px;
    }

    .contact-section {
        padding: 60px 0 80px;
    }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Contact Page Refresh Ã¢â€â‚¬Ã¢â€â‚¬ */
.contact-page {
    position: relative;
    background: #fff;
    overflow: hidden;
    isolation: isolate;
}

.contact-page::before,
.contact-page::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    mix-blend-mode: multiply;
}

.contact-page::before {
    top: 78px;
    left: -170px;
    width: min(560px, 40vw);
    height: min(700px, 58vw);
    background-image: url("../img/image-43.png");
    opacity: 0.08;
}

.contact-page::after {
    right: -210px;
    bottom: 28px;
    width: min(650px, 43vw);
    height: min(620px, 44vw);
    background-image: url("../img/image-171.png");
    opacity: 0.09;
}

.contact-section {
    position: relative;
    z-index: 1;
    padding: 74px 0 138px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(246, 236, 214, 0.85) 0%, rgba(255, 250, 240, 0) 30%),
        linear-gradient(270deg, rgba(228, 216, 244, 0.55) 0%, rgba(255, 255, 255, 0) 25%),
        linear-gradient(180deg, #fef9f0 0%, #fdf6ee 100%);
}

.contact-section::before,
.contact-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(12px);
}

.contact-section::before {
    left: -120px;
    top: 180px;
    width: min(360px, 32vw);
    height: min(520px, 42vw);
    background: radial-gradient(circle at 50% 50%, rgba(237, 206, 140, 0.5) 0%, rgba(237, 206, 140, 0) 68%);
    opacity: 0.7;
}

.contact-section::after {
    right: -120px;
    bottom: 82px;
    width: min(420px, 36vw);
    height: min(520px, 44vw);
    background: radial-gradient(circle at 50% 50%, rgba(195, 168, 225, 0.44) 0%, rgba(195, 168, 225, 0) 70%);
    opacity: 0.7;
}

.contact-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 0.84fr) minmax(560px, 1fr);
    gap: clamp(48px, 5vw, 90px);
    align-items: center;
    max-width: 1230px;
    margin: 0 auto;
}

.contact-info {
    position: relative;
    padding: 42px 0 24px 10px;
    max-width: 455px;
}

.contact-star {
    width: 62px;
    margin: 0 0 22px;
}

.contact-heading {
    margin: 0 0 18px;
    color: var(--brand-purple);
    font-family: var(--font-heading);
    font-size: clamp(52px, 5vw, 66px);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.03em;
}

.contact-subtext {
    max-width: 430px;
    margin: 0 0 22px;
    color: rgba(121, 45, 133, 0.92);
    font-size: clamp(18px, 1.42vw, 19px);
    line-height: 1.55;
}

.contact-divider {
    width: 255px;
    height: 1px;
    margin-bottom: 26px;
    background: linear-gradient(90deg, rgba(224, 185, 82, 0.92) 0%, rgba(121, 45, 133, 0.38) 48%, rgba(121, 45, 133, 0) 100%);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 420px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 94px;
    padding: 14px 18px 14px 16px;
    border: 1.8px solid rgba(121, 45, 133, 0.68);
    border-radius: 22px;
    background: linear-gradient(112deg, rgba(226, 207, 238, 0.55) 0%, rgba(237, 220, 248, 0.72) 100%);
    box-shadow: 0 6px 18px rgba(128, 80, 150, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-info-item:hover {
    transform: translateY(-2px);
    border-color: rgba(121, 45, 133, 0.88);
    box-shadow: 0 16px 28px rgba(128, 80, 150, 0.12);
}

.contact-info-item--location {
    align-items: flex-start;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    border: 1.8px solid rgba(121, 45, 133, 0.75);
    background: linear-gradient(180deg, rgba(228, 210, 242, 0.85) 0%, rgba(214, 186, 232, 0.95) 100%);
    color: var(--brand-purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 30px;
    height: 30px;
}

.contact-info-copy {
    min-width: 0;
}

.contact-info-label {
    margin-bottom: 4px;
    color: var(--brand-purple);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1;
    opacity: 0.85;
}

.contact-info-value {
    color: #5a2070;
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    word-break: normal;
    overflow-wrap: anywhere;
}

.contact-info-value--address {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

a.contact-info-value:hover {
    color: var(--purple-dark);
}

.contact-form-shell {
    position: relative;
    padding: 54px 6px 0 0;
}

.contact-form-shell::after {
    content: "";
    position: absolute;
    top: 74px;
    right: -6px;
    bottom: -8px;
    left: 34px;
    border-radius: 38px;
    background: rgba(174, 146, 204, 0.72);
    z-index: 0;
}

.contact-form-card {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin-left: auto;
    padding: 30px 34px 22px;
    border-radius: 40px;
    background: linear-gradient(130deg, #743199 0%, #532777 34%, #28164b 100%);
    box-shadow: 0 22px 50px rgba(33, 17, 63, 0.22);
    overflow: hidden;
}

.contact-form-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/image-41.png") no-repeat center top -8px / 320px;
    opacity: 0.08;
    mix-blend-mode: screen;
    pointer-events: none;
}

.contact-form-card>* {
    position: relative;
    z-index: 1;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
    align-items: start;
}

.contact-form-card .form-group {
    gap: 5px;
}

.contact-form-card .form-group input,
.contact-form-card .form-group select {
    min-height: 29px;
    padding: 11px 18px 10px 28px;
    border-radius: 999px;
    border: 1.5px solid rgba(230, 182, 78, 0.95);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    box-shadow: none;
}

.contact-form-card .form-group select {
    padding-right: 28px;
    background-image: none;
}

.contact-form-card .form-group input::placeholder,
.contact-form-card .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.contact-form-card .form-group select,
.contact-form-card .form-group select:invalid {
    color: rgba(255, 255, 255, 0.62);
}

.contact-form-card .form-group select:not(:invalid) {
    color: rgba(255, 255, 255, 0.82);
}

.contact-form-card .form-group select option {
    color: #2d1a53;
    background: #fff;
}

.contact-form-card .form-group input:focus,
.contact-form-card .form-group select:focus,
.contact-form-msg textarea:focus {
    border-color: #f1c85b;
    box-shadow: 0 0 0 3px rgba(230, 182, 78, 0.12);
}

.contact-form-msg {
    grid-column: 1 / -1;
    margin-top: 2px;
}

.contact-form-msg textarea {
    width: 100%;
    min-height: 154px;
    padding: 16px 28px;
    border-radius: 24px;
    border: 1.5px solid rgba(230, 182, 78, 0.95);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: rgba(255, 255, 255, 0.84);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.45;
    outline: none;
    resize: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-footer {
    margin-top: 14px;
    display: flex;
    justify-content: center;
}

.contact-submit-btn {
    min-width: 232px;
    padding: 10px 34px 9px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(230, 182, 78, 0.22);
}

.contact-response-msg {
    margin-top: 14px;
    font-size: 14px;
    text-align: center;
    color: #fff;
    padding: 10px 16px;
    border-radius: 14px;
}

.contact-response-msg.error-msg {
    background: rgba(220, 53, 69, 0.25);
    border: 1px solid rgba(220, 53, 69, 0.4);
}

.contact-response-msg.success {
    background: rgba(40, 167, 69, 0.25);
    border: 1px solid rgba(40, 167, 69, 0.4);
}

.contact-form-card label.error,
.contact-form-card .error-label {
    display: block;
    padding-left: 14px;
    color: rgba(255, 196, 120, 0.96);
    font-size: 11px;
    line-height: 1.3;
}

@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 42px;
        max-width: 760px;
    }

    .contact-info {
        max-width: 100%;
        padding: 0;
    }

    .contact-info-list,
    .contact-info-item,
    .contact-subtext {
        max-width: 100%;
    }

    .contact-form-shell {
        padding: 0;
    }

    .contact-form-shell::after {
        top: 18px;
        right: -6px;
        bottom: -8px;
        left: 18px;
    }

    .contact-form-card {
        max-width: none;
        margin-left: 0;
    }
}

@media (max-width: 680px) {
    .contact-section {
        padding: 58px 0 96px;
    }

    .contact-page::before {
        top: 30px;
        left: -200px;
        width: 420px;
        opacity: 0.06;
    }

    .contact-page::after {
        right: -220px;
        bottom: -10px;
        width: 440px;
        opacity: 0.07;
    }

    .contact-heading {
        font-size: clamp(40px, 12vw, 54px);
    }

    .contact-subtext {
        font-size: 16px;
    }

    .contact-info-item {
        padding: 14px 14px 14px 12px;
    }

    .contact-info-icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }

    .contact-info-icon svg {
        width: 26px;
        height: 26px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-form-card {
        padding: 26px 22px 20px;
        border-radius: 30px;
    }

    .contact-form-shell::after {
        left: 14px;
        border-radius: 30px;
    }

    .contact-form-msg textarea {
        min-height: 140px;
        padding: 14px 20px;
        border-radius: 22px;
    }

    .contact-submit-btn {
        width: 100%;
        min-width: 0;
        font-size: 20px;
    }
}

/* Contact page background override to match original design */
.contact-page {
    background: #fef9f0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHY INDIA'S JEWELLERS CHOOSE DIGI JEWELS APP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.why-choose-section {
    position: relative;
    background: linear-gradient(135deg, #28164B 0%, #432062 40%, #792D85 100%);
    padding: 96px 0 100px;
    overflow: hidden;
}

.why-choose-bg-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    opacity: 0.15;
}

.why-choose-bg-blob--1 {
    width: 480px;
    height: 480px;
    background: #792D85;
    top: -120px;
    left: -160px;
}

.why-choose-bg-blob--2 {
    width: 360px;
    height: 360px;
    background: #E6B64E;
    bottom: -80px;
    right: -100px;
}

/* Header */
.why-choose-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.why-choose-eyebrow {
    display: inline-block;
    padding: 7px 20px;
    border-radius: 999px;
    background: rgba(230, 182, 78, 0.15);
    border: 1px solid rgba(230, 182, 78, 0.35);
    color: var(--brand-gold);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.why-choose-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.why-choose-title-accent {
    color: var(--brand-gold);
    position: relative;
    display: inline-block;
}

.why-choose-title-accent::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #E6B64E, #792D85);
    opacity: 0.8;
}

.why-choose-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: #ffffff;
    max-width: 640px;
    margin: 0 auto;
}

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

/* Cards */
.why-card {
    position: relative;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(230, 182, 78, 0.45);
    border-radius: 20px;
    padding: 36px 28px 32px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
    transform: translateY(-6px);
}

.why-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(230, 182, 78, 0.45);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.why-card:hover .why-card__accent {
    opacity: 1;
}

.why-card__accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E6B64E, #792D85);
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 0 0 20px 20px;
}

.why-card__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(230, 182, 78, 0.28) 0%, rgba(121, 45, 133, 0.18) 100%);
    border: 1px solid rgba(230, 182, 78, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--brand-gold);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.why-card:hover .why-card__icon-wrap {
    background: linear-gradient(135deg, rgba(230, 182, 78, 0.28) 0%, rgba(121, 45, 133, 0.18) 100%);
    border-color: rgba(230, 182, 78, 0.5);
}

.why-card__title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.35;
}

.why-card__desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 640px) {
    .why-choose-section {
        padding: 64px 0 72px;
    }

    .why-choose-header {
        margin-bottom: 44px;
    }

    .why-choose-title {
        font-size: clamp(1.7rem, 7vw, 2.1rem);
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-card {
        padding: 28px 22px 26px;
    }
}

/* Why-choose scroll animations */
.why-card--slide-right,
.why-card--slide-left {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.why-card--slide-right {
    transform: translate(-80px, -6px);
}

.why-card--slide-left {
    transform: translate(80px, -6px);
}

.why-card--slide-right.why-card--visible,
.why-card--slide-left.why-card--visible {
    opacity: 1;
    transform: translate(0, -6px);
}

/* â”€â”€ Statistics Section â”€â”€ */
.stats-section {
    padding: 40px 0 10px;
    /* Reduced vertical padding */
    position: relative;
    z-index: 3;
    background: #FFFFFF;
}

/* Ambient glows for stats (light version) */
.stats-section::before {
    content: "";
    position: absolute;
    width: min(500px, 50vw);
    height: min(500px, 50vw);
    left: 5%;
    top: 10%;
    background: radial-gradient(circle, rgba(121, 45, 133, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.stats-section::after {
    content: "";
    position: absolute;
    width: min(500px, 50vw);
    height: min(500px, 50vw);
    right: 5%;
    bottom: 10%;
    background: radial-gradient(circle, rgba(230, 182, 78, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stats-item {
    background: #FFFFFF;
    border: 2px dashed rgba(121, 45, 133, 0.22);
    border-radius: var(--radius-card, 22px);
    padding: 24px 20px;
    /* Reduced top/bottom padding to remove red-marked spaces */
    text-align: center;
    box-shadow:
        0 15px 35px rgba(121, 45, 133, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.stats-item::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: var(--radius-card, 22px);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect width='100%25' height='100%25' fill='none' rx='22' ry='22' stroke='%23E6B64E' stroke-width='4' stroke-dasharray='10,8'%3E%3Canimate attributeName='stroke-dashoffset' values='0;-18' dur='1.2s' repeatCount='indefinite'/%3E%3C/rect%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.stats-item:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 45px rgba(121, 45, 133, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 25px rgba(230, 182, 78, 0.12);
    border-color: transparent;
}

.stats-item:hover::after {
    opacity: 1;
}

.stats-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(121, 45, 133, 0.06);
    color: var(--brand-purple, #792D85);
    margin-bottom: 12px;
    /* Reduced bottom margin to remove space inside card */
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.stats-item:hover .stats-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--brand-purple, #792D85);
    color: #FFFFFF;
}

.stats-icon svg {
    width: 28px;
    height: 28px;
}

.stats-number-wrapper {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1;
    color: #3f2263;
    margin-bottom: 6px;
    /* Reduced bottom margin to keep card compact */
    letter-spacing: -0.02em;
}

.stats-suffix {
    color: var(--gold, #E6B64E);
    font-weight: 600;
    margin-left: 2px;
}

.stats-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

/* Responsive Breakpoints for Stats */
@media (max-width: 991px) {
    .stats-section {
        padding: 30px 0 10px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-item {
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 20px 0 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stats-item {
        padding: 18px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stats-number-wrapper {
        font-size: 2.6rem;
    }
}

/* ============================================================
   About Us Section Styles
   ============================================================ */
.about-section {
    padding: 100px 0 50px;
    background-color: var(--brand-surface);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Background glows */
.about-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.35;
}

.about-glow--purple {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(121, 45, 133, 0.15) 0%, transparent 70%);
    top: 10%;
    left: -100px;
}

.about-glow--gold {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(230, 182, 78, 0.15) 0%, transparent 70%);
    bottom: 15%;
    right: -100px;
}

/* Background Assets */
.about-bg {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    max-width: none;
    user-select: none;
}

.about-bg-left {
    top: 50%;
    left: 0;
    width: clamp(240px, 31vw, 560px);
    transform: translate(-18%, -50%);
    object-fit: contain;
    object-position: left center;
    opacity: 0.8;
}

.about-bg-right {
    top: 50%;
    right: 0;
    width: clamp(220px, 25vw, 420px);
    transform: translate(14%, -50%);
    object-fit: contain;
    object-position: right center;
    opacity: 0.8;
}

.about-container {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}

.about-text-col {
    display: flex;
    flex-direction: column;
    max-height: 550px;
    overflow: hidden;
    position: relative;
}

/* Bottom-fade hint â€” fades out once user has scrolled to the end */
.about-text-col::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 18px;
    height: 72px;
    background: linear-gradient(to bottom, transparent, var(--brand-surface));
    pointer-events: none;
    z-index: 3;
    opacity: 1;
    transition: opacity 0.35s ease;
}

.about-text-col.about-scrolled-end::after {
    opacity: 0;
}

.about-header {
    flex: 0 0 auto;
}

.about-scroll-content {
    flex: 1 1 auto;
    overflow-y: auto;
    padding-right: 18px;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.about-readmore-btn {
    display: none;
}


/* Custom Scrollbar Styles */
.about-scroll-content::-webkit-scrollbar {
    display: none;
}

/* Image wrapper and floating animation */
.about-image-col {
    display: flex;
    justify-content: center;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.about-mockup {
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: aboutImageFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(40, 22, 75, 0.18));
}

.about-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(121, 45, 133, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

@keyframes aboutImageFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Text Content styling */
.about-eyebrow {
    display: inline-block;
    color: var(--brand-purple);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--purple-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.text-purple-highlight {
    color: var(--brand-purple);
}

.about-intro {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--purple-dark);
    margin-bottom: 20px;
    opacity: 0.95;
}

.about-body {
    font-size: 15px;
    line-height: 1.65;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.about-list-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--purple-dark);
    margin: 28px 0 16px 0;
}

.about-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: #4a4a4a;
}

.about-list-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(230, 182, 78, 0.15);
    color: var(--gold-strong);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.about-list-icon svg {
    width: 13px;
    height: 13px;
}

/* Callout Box styling */
.about-callout {
    position: relative;
    background: linear-gradient(135deg, rgba(121, 45, 133, 0.04) 0%, rgba(67, 32, 98, 0.02) 100%);
    border-radius: 16px;
    padding: 22px 26px;
    margin-top: 28px;
    border: 1px solid rgba(121, 45, 133, 0.08);
    overflow: hidden;
}

.about-callout-border {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--brand-purple), var(--brand-gold));
}

.about-callout-text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--purple-dark);
    margin: 0;
}

/* ============================================================
   Notebooks vs Digital Section Styles (Unique Premium Brand Glow)
   ============================================================ */
.notebooks-section {
    padding: 50px 0 130px;
    /* Flowing, high-end background gradient containing brand colors exactly like the vault screenshot transition */
    background: radial-gradient(circle at 30% 20%, rgba(121, 45, 133, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(230, 182, 78, 0.15) 0%, transparent 60%),
        linear-gradient(116deg, #47256A 0%, #341D59 42%, #28164B 100%);
    /* Same as features section var(--gradient-dark) */
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.notebooks-bg-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.16;
    /* Same opacity as features section wave */
    pointer-events: none;
    z-index: 0;
}

/* Moving/Floating ambient glow blobs */
.notebooks-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(130px);
    z-index: 0;
    opacity: 0.55;
    animation: notebooksGlowFloat 15s ease-in-out infinite alternate;
}

.notebooks-glow--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(121, 45, 133, 0.35) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.notebooks-glow--2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(230, 182, 78, 0.18) 0%, transparent 70%);
    bottom: -15%;
    left: -10%;
    animation-delay: -5s;
}

.notebooks-glow--3 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(121, 45, 133, 0.25) 0%, transparent 70%);
    top: 40%;
    left: 45%;
    animation-delay: -10s;
}

@keyframes notebooksGlowFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -50px) scale(1.15);
    }

    100% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.notebooks-header {
    max-width: 1200px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.notebooks-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.notebooks-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.25;
    background: linear-gradient(135deg, #FFE596 0%, var(--brand-gold) 50%, #CFA13C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.notebooks-desc {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.85;
    color: #DECDE8;
    /* Soft lavender color */
    max-width: 840px;
    margin: 0 auto;
}

.notebooks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3.5vw, 44px);
    position: relative;
    z-index: 1;
}

/* Slide-up entrance animation */
@keyframes notebooksCardSlideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

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

/* Glassmorphism Card with Glowing Gradient Border */
.notebooks-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 50px 40px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    /* Hidden before animation triggers */
    opacity: 0;
    transform: translateY(60px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(121, 45, 133, 0.15);
}

.notebooks-card.is-visible {
    animation: notebooksCardSlideUp 0.7s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.notebooks-card.is-visible:nth-child(1) {
    animation-delay: 0s;
}

.notebooks-card.is-visible:nth-child(2) {
    animation-delay: 0.18s;
}

.notebooks-card.is-visible:nth-child(3) {
    animation-delay: 0.36s;
}

/* Moving colored gradient border on hover */
.notebooks-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-purple) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: all 0.5s ease;
}

.notebooks-card:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(121, 45, 133, 0.2);
}

.notebooks-card:hover::before {
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-purple) 100%);
}

.notebooks-card-header {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.notebooks-card-header .notebooks-card-title {
    margin: 0 !important;
    font-size: 21px;
    line-height: 1.35;
}

.notebooks-card-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    opacity: 1;
    transition: all 0.5s ease;
    line-height: 1;
}

.notebooks-card:hover .notebooks-card-num {
    color: var(--text-white);
    opacity: 1;
}

/* Comparison Badges styling */
.notebooks-card-comparison {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    padding: 6px 12px;
}

.badge-manual {
    font-size: 11.5px;
    font-weight: 600;
    color: #FFA3A3;
    letter-spacing: 0.02em;
}

.badge-arrow {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

.badge-digital {
    font-size: 11.5px;
    font-weight: 600;
    color: #FFE082;
    letter-spacing: 0.02em;
}

.notebooks-card-title {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--text-white);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.notebooks-card-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: #D2C9DC;
    /* Lavender gray */
    transition: color 0.4s ease;
}

.notebooks-card:hover .notebooks-card-desc {
    color: #ffffff;
}

/* Card inner glow overlay */
.card-glow-overlay {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(121, 45, 133, 0.2) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.notebooks-card:hover .card-glow-overlay {
    opacity: 1;
}

/* â”€â”€ Premium Blog page styles â”€â”€ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.blog-page {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 5% 15%, rgba(230, 182, 78, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 95% 85%, rgba(121, 45, 133, 0.07) 0%, transparent 45%),
        var(--bg-light);
    min-height: 800px;
}

.blog-section {
    padding: 96px 0 144px;
    position: relative;
    z-index: 1;
}

.blog-page-decor {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    opacity: 0.2;
}

.blog-page-decor--wave {
    top: -20px;
    left: -100px;
    width: 700px;
}

.blog-page-decor--gold {
    right: -80px;
    bottom: 120px;
    width: 380px;
    opacity: 0.08;
    /* Soft golden touch */
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 16px;
}

.blog-card {
    display: flex;
    background: linear-gradient(135deg, #432062 0%, #150A26 100%);
    border-radius: 36px;
    padding: 28px;
    gap: 40px;
    align-items: center;
    border: 1.5px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        border-color 0.4s ease;
    position: relative;
}

.blog-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 36px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.blog-card:hover {
    transform: translateY(-6px) scale(1.008);
    box-shadow: 0 24px 48px rgba(121, 45, 133, 0.22), 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(230, 182, 78, 0.3);
}

.blog-card-image-wrapper {
    width: 340px;
    height: 210px;
    flex-shrink: 0;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card-placeholder-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8F39A1 0%, #341D59 50%, #1E0E35 100%);
    position: relative;
}

.blog-card-placeholder-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-self: stretch;
    justify-content: center;
}

.blog-card-title {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
    color: #FFFFFF;
    font-family: var(--font-heading);
    letter-spacing: -0.2px;
}

.blog-card-title a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.25s ease;
}

.blog-card-title a:hover {
    color: var(--brand-gold);
}

.blog-card-description {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    margin-bottom: 22px;
    font-family: var(--font-body);
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-body);
    font-weight: 500;
    margin-top: auto;
}

.blog-card-author {
    color: rgba(255, 255, 255, 0.78);
}

.blog-card-date {
    position: relative;
    padding-left: 14px;
}

.blog-card-date::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
}

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 56px;
}

.blog-pagination-link,
.blog-pagination-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 6px;
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--purple-light);
    background: transparent;
    border: 1.5px solid var(--brand-purple-18);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-pagination-link:hover {
    border-color: var(--brand-purple-42);
    background: var(--brand-purple-18);
    color: var(--purple-dark);
}

.blog-pagination-link--active {
    background: var(--brand-purple);
    border-color: var(--brand-purple);
    color: var(--text-white);
}

.blog-pagination-arrow--disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.blog-pagination-dots {
    color: var(--brand-purple-42);
    padding: 0 4px;
}

@media (max-width: 991px) {
    .blog-card-image-wrapper {
        width: 280px;
        height: 180px;
    }

    .blog-card-title {
        font-size: 21px;
    }
}

/* â”€â”€ Premium Blog Detail page styles â”€â”€ */
.blog-detail-section {
    padding: 80px 0 140px;
    position: relative;
    z-index: 1;
}

.blog-detail-navigation {
    margin-bottom: 40px;
}

/* Premium Back Button */
.back-to-blogs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(135deg, #432062 0%, #150A26 100%);
    padding: 12px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.back-to-blogs-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.back-to-blogs-btn .back-icon {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.back-to-blogs-btn:hover {
    color: var(--brand-gold);
    transform: translateY(-2px);
    border-color: rgba(230, 182, 78, 0.3);
    box-shadow: 0 12px 28px rgba(121, 45, 133, 0.25);
}

.back-to-blogs-btn:hover .back-icon {
    transform: translateX(-5px);
}

/* Two-Column Layout Grid */
.blog-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 56px;
    align-items: start;
}

/* Sticky Left Column for Image */
.blog-detail-image-column {
    position: sticky;
    top: 100px;
    z-index: 5;
}

.blog-detail-image-container {
    width: 100%;
    border-radius: 36px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-card);
    position: relative;
    background-color: #150A26;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
}

.blog-detail-image-container::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 36px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.blog-detail-featured-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-detail-image-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(121, 45, 133, 0.28);
}

.blog-detail-image-container:hover .blog-detail-featured-image {
    transform: scale(1.04);
}

/* Placeholder Gradient */
.blog-detail-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #8F39A1 0%, #341D59 50%, #1E0E35 100%);
    position: relative;
}

.blog-detail-image-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

/* Right Side Content Card */
.blog-detail-content-card {
    background: linear-gradient(135deg, #432062 0%, #150A26 100%);
    border-radius: 36px;
    padding: 48px;
    border: 1.5px solid rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-card);
    position: relative;
}

.blog-detail-content-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 36px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Metadata Badges */
.blog-detail-meta-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.blog-detail-badge-category {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-gold);
    background: rgba(230, 182, 78, 0.08);
    border: 1px solid rgba(230, 182, 78, 0.18);
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: var(--font-body);
}

.blog-detail-date-badge {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-body);
    font-weight: 500;
    position: relative;
    padding-left: 14px;
}

.blog-detail-date-badge::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Heading */
.blog-detail-heading-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    color: #FFFFFF;
    margin-bottom: 28px;
    letter-spacing: -0.4px;
    font-family: var(--font-heading);
}

/* Lead Intro block */
.blog-detail-lead-intro {
    font-size: 16.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    border-left: 4.5px solid var(--brand-gold);
    padding-left: 20px;
    margin-bottom: 36px;
    font-family: var(--font-body);
}

/* Rich Text Formatting */
.blog-detail-rich-body {
    font-size: 15.5px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-body);
    font-weight: 400;
}

.blog-detail-rich-body p {
    margin-bottom: 24px;
}

.blog-detail-rich-body p:last-child {
    margin-bottom: 0;
}

.blog-detail-rich-body h2,
.blog-detail-rich-body h3,
.blog-detail-rich-body h4 {
    color: #FFFFFF;
    margin-top: 40px;
    margin-bottom: 18px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.blog-detail-rich-body h2 {
    font-size: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
}

.blog-detail-rich-body h3 {
    font-size: 20px;
}

.blog-detail-rich-body ul,
.blog-detail-rich-body ol {
    margin-bottom: 24px;
    padding-left: 22px;
}

.blog-detail-rich-body li {
    margin-bottom: 10px;
    position: relative;
}

.blog-detail-rich-body ul li::marker {
    color: var(--brand-gold);
}

.blog-detail-rich-body strong {
    color: #FFFFFF;
    font-weight: 600;
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
    .blog-detail-grid {
        gap: 40px;
    }

    .blog-detail-content-card {
        padding: 36px;
    }

    .blog-detail-heading-title {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .blog-detail-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .blog-detail-image-column {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }

    .blog-detail-section {
        padding: 48px 0 100px;
    }

    .blog-detail-content-card {
        padding: 32px;
    }

    .blog-detail-heading-title {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .blog-detail-content-card {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .blog-detail-image-container {
        border-radius: 24px;
    }

    .blog-detail-image-container::after,
    .blog-detail-content-card::after {
        border-radius: 24px;
    }

    .blog-detail-badge-category {
        padding: 4px 12px;
        font-size: 11px;
    }

    .blog-detail-heading-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .blog-detail-lead-intro {
        font-size: 14.5px;
        padding-left: 14px;
        margin-bottom: 24px;
    }

    .blog-detail-rich-body {
        font-size: 14.5px;
        line-height: 1.75;
    }
}



/* ══════════════════════════════════════════
   Blog Article Detail - White Light Theme
   ══════════════════════════════════════════ */

/* Page section override for light feel */
.blog-page {
    background: #f4f0f9;
}

/* Two-column grid */
.bda-wrapper {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 32px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Main Article Card - White */
.bda-article {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 44px 48px;
    border: 1px solid rgba(121, 45, 133, 0.1);
    box-shadow: 0 4px 24px rgba(121, 45, 133, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.bda-article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #792D85 0%, #E6B64E 60%, rgba(230, 182, 78, 0.25) 100%);
    border-radius: 24px 24px 0 0;
}

/* Category + live badge */
.bda-article-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.bda-category-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: #792D85;
    background: rgba(121, 45, 133, 0.08);
    border: 1px solid rgba(121, 45, 133, 0.2);
    padding: 5px 16px;
    border-radius: 50px;
    font-family: var(--font-body);
}

.bda-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    font-family: var(--font-body);
}

.bda-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 7px rgba(34, 197, 94, 0.6);
    animation: bda-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes bda-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.78);
    }
}

/* Title */
.bda-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.28;
    color: #1a0730;
    margin-bottom: 18px;
    letter-spacing: -0.4px;
    font-family: var(--font-heading);
}

/* Meta row */
.bda-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 13px;
    color: #7a6a8e;
    font-family: var(--font-body);
    font-weight: 500;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(121, 45, 133, 0.1);
}

.bda-meta-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #792D85 0%, #432062 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.bda-meta-author {
    color: #2d1a4e;
    font-weight: 600;
}

.bda-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #c4b5d4;
    flex-shrink: 0;
}

.bda-meta-item {
    display: inline-flex;
    align-items: center;
    color: #7a6a8e;
}

/* Featured Image */
.bda-img-wrap {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(121, 45, 133, 0.08);
    max-height: 460px;
}

.bda-featured-img {
    width: 100%;
    height: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bda-img-wrap:hover .bda-featured-img {
    transform: scale(1.03);
}

/* Social share bar */
.bda-share-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid rgba(121, 45, 133, 0.08);
    border-bottom: 1px solid rgba(121, 45, 133, 0.08);
    margin-bottom: 30px;
}

.bda-share-label {
    font-size: 12.5px;
    color: #9e8ab0;
    font-family: var(--font-body);
    font-weight: 500;
}

.bda-share-btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bda-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f0f9;
    border: 1px solid rgba(121, 45, 133, 0.14);
    color: #792D85;
    text-decoration: none;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.bda-share-btn:hover {
    background: #792D85;
    border-color: #792D85;
    color: #fff;
    transform: translateY(-2px);
}

/* Lead / intro blockquote */
.bda-lead {
    border-left: 4px solid #E6B64E;
    padding: 14px 0 14px 22px;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.72;
    color: #3d2860;
    font-family: var(--font-body);
    font-weight: 500;
    font-style: italic;
    background: rgba(230, 182, 78, 0.06);
    border-radius: 0 10px 10px 0;
}

/* Body rich text */
.bda-body {
    font-size: 15.5px;
    line-height: 1.88;
    color: #4a3960;
    font-family: var(--font-body);
}

/* .bda-body p { margin-bottom: 22px; } */
.bda-body p:last-child {
    margin-bottom: 0;
}

/* Headings — Meyer reset strips font-size/weight, restore all levels */
.bda-body h1,
.bda-body h2,
.bda-body h3,
.bda-body h4,
.bda-body h5,
.bda-body h6 {
    color: #1a0730;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 14px;
    line-height: 1.3;
}

.bda-body h1 {
    font-size: 28px;
    border-bottom: 2px solid rgba(121, 45, 133, 0.15);
    padding-bottom: 10px;
}

.bda-body h2 {
    font-size: 22px;
    border-bottom: 1px solid rgba(121, 45, 133, 0.1);
    padding-bottom: 8px;
}

.bda-body h3 {
    font-size: 19px;
}

.bda-body h4 {
    font-size: 17px;
}

.bda-body h5 {
    font-size: 15.5px;
}

.bda-body h6 {
    font-size: 14px;
    color: #6b5a85;
}

/* Lists */
.bda-body ul,
.bda-body ol {
    padding-left: 22px;
    margin-bottom: 22px;
}

.bda-body ul {
    list-style: disc;
}

.bda-body ol {
    list-style: decimal;
}

.bda-body li {
    margin-bottom: 9px;
    color: #4a3960;
}

.bda-body ul li::marker {
    color: #792D85;
}

.bda-body ol li::marker {
    color: #792D85;
}

/* Nested lists */
.bda-body ul ul,
.bda-body ol ol,
.bda-body ul ol,
.bda-body ol ul {
    margin-top: 6px;
    margin-bottom: 6px;
}

.bda-body ul ul {
    list-style: circle;
}

/* Inline text — Meyer reset strips these */
.bda-body strong,
.bda-body b {
    color: #1a0730;
    font-weight: 700;
}

.bda-body em,
.bda-body i {
    font-style: italic;
}

.bda-body u {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bda-body s,
.bda-body strike,
.bda-body del {
    text-decoration: line-through;
    opacity: 0.7;
}

.bda-body sup {
    vertical-align: super;
    font-size: 0.75em;
}

.bda-body sub {
    vertical-align: sub;
    font-size: 0.75em;
}

/* Blockquote */
.bda-body blockquote {
    border-left: 4px solid #E6B64E;
    margin: 28px 0;
    padding: 16px 24px;
    background: rgba(230, 182, 78, 0.07);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #3d2860;
    font-size: 16px;
    line-height: 1.75;
}

/* Links */
.bda-body a {
    color: #792D85;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.bda-body a:hover {
    color: #E6B64E;
}

/* Images */
.bda-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 18px 0;
    display: block;
}

/* Horizontal rule */
.bda-body hr {
    border: none;
    border-top: 1px solid rgba(121, 45, 133, 0.15);
    margin: 32px 0;
}

/* Inline code */
.bda-body code {
    background: rgba(121, 45, 133, 0.08);
    color: #792D85;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
}

/* Code block */
.bda-body pre {
    background: #1a0730;
    color: #e8d5f5;
    padding: 18px 22px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 22px 0;
    font-family: monospace;
    font-size: 0.88em;
    line-height: 1.65;
}

.bda-body pre code {
    background: none;
    color: inherit;
    padding: 0;
    border-radius: 0;
    font-size: inherit;
}

/* Tables */
.bda-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0;
    font-size: 14.5px;
}

.bda-body th,
.bda-body td {
    border: 1px solid rgba(121, 45, 133, 0.18);
    padding: 10px 14px;
    text-align: left;
}

.bda-body th {
    background: rgba(121, 45, 133, 0.08);
    color: #1a0730;
    font-weight: 700;
}

.bda-body tr:nth-child(even) td {
    background: rgba(121, 45, 133, 0.03);
}

/* ── Sidebar ── */
.bda-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

/* Sidebar white card */
.bda-sidebar-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 26px;
    border: 1px solid rgba(121, 45, 133, 0.1);
    box-shadow: 0 4px 20px rgba(121, 45, 133, 0.07);
}

.bda-sidebar-card-title {
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: #792D85;
    font-family: var(--font-body);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(121, 45, 133, 0.1);
}

/* Category list */
.bda-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bda-cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #4a3960;
    font-size: 13.5px;
    font-family: var(--font-body);
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
    border: 1px solid transparent;
}

.bda-cat-link:hover {
    background: rgba(121, 45, 133, 0.06);
    color: #792D85;
    border-color: rgba(121, 45, 133, 0.12);
}

.bda-cat-item--active .bda-cat-link {
    background: rgba(121, 45, 133, 0.08);
    color: #792D85;
    border-color: rgba(121, 45, 133, 0.18);
    font-weight: 700;
}

.bda-cat-count {
    font-size: 11.5px;
    background: rgba(121, 45, 133, 0.08);
    color: #792D85;
    padding: 2px 9px;
    border-radius: 50px;
    font-weight: 700;
    min-width: 26px;
    text-align: center;
}

.bda-cat-item--active .bda-cat-count {
    background: #792D85;
    color: #fff;
}

/* CTA Card - keeps purple gradient as accent */
.bda-cta-card {
    background: linear-gradient(145deg, #5a2075 0%, #2e1158 100%);
    border-radius: 20px;
    padding: 30px 26px;
    border: 1px solid rgba(230, 182, 78, 0.2);
    box-shadow: 0 8px 32px rgba(121, 45, 133, 0.25);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bda-cta-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #E6B64E 50%, transparent 100%);
}

.bda-cta-card::after {
    content: "";
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(230, 182, 78, 0.06);
    pointer-events: none;
}

.bda-cta-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(230, 182, 78, 0.15);
    border: 1.5px solid rgba(230, 182, 78, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E6B64E;
    margin: 0 auto 16px;
}

.bda-cta-title {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.38;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.bda-cta-body {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.bda-cta-btn-primary {
    display: block;
    background: linear-gradient(135deg, #E6B64E 0%, #c9962a 100%);
    color: #1a0730;
    font-size: 13.5px;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-body);
    margin-bottom: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    letter-spacing: 0.2px;
}

.bda-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(230, 182, 78, 0.5);
    color: #1a0730;
}

.bda-cta-btn-ghost {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-decoration: none;
    font-family: var(--font-body);
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.bda-cta-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(230, 182, 78, 0.45);
    color: #E6B64E;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .bda-wrapper {
        grid-template-columns: 1fr 290px;
        gap: 26px;
    }

    .bda-article {
        padding: 36px;
    }

    .bda-title {
        font-size: 26px;
    }
}

@media (max-width: 991px) {
    .bda-wrapper {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .bda-sidebar {
        position: static;
    }

    .bda-article {
        padding: 30px 26px;
    }

    .bda-title {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .bda-article {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .bda-title {
        font-size: 20px;
    }

    .bda-img-wrap {
        border-radius: 12px;
        max-height: 220px;
    }

    .bda-featured-img {
        max-height: 220px;
    }

    .bda-share-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .bda-sidebar-card,
    .bda-cta-card {
        border-radius: 16px;
        padding: 20px 16px;
    }

    .bda-cta-title {
        font-size: 15px;
    }
}

/* ── Sidebar: Features List ── */
.bda-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bda-feature-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 10px;
    border-radius: 10px;
    font-size: 13.5px;
    font-family: var(--font-body);
    font-weight: 500;
    color: #4a3960;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: default;
}

.bda-feature-item:hover {
    background: rgba(121, 45, 133, 0.05);
    color: #792D85;
}

.bda-feature-item:hover .bda-feature-icon {
    background: #792D85;
    color: #fff;
    border-color: #792D85;
}

.bda-feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(121, 45, 133, 0.07);
    border: 1px solid rgba(121, 45, 133, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #792D85;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* ── Sidebar: Recent Posts ── */
.bda-recent-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bda-recent-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 8px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.bda-recent-item:hover {
    background: rgba(121, 45, 133, 0.05);
    border-color: rgba(121, 45, 133, 0.1);
}

.bda-recent-thumb {
    width: 58px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(121, 45, 133, 0.1);
}

.bda-recent-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.bda-recent-item:hover .bda-recent-img {
    transform: scale(1.06);
}

.bda-recent-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(121, 45, 133, 0.1) 0%, rgba(67, 32, 98, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #792D85;
}

.bda-recent-info {
    flex: 1;
    min-width: 0;
}

.bda-recent-title {
    font-size: 13px;
    font-weight: 600;
    color: #2d1a4e;
    line-height: 1.4;
    margin-bottom: 5px;
    font-family: var(--font-body);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.bda-recent-item:hover .bda-recent-title {
    color: #792D85;
}

.bda-recent-date {
    font-size: 11.5px;
    color: #9e8ab0;
    font-family: var(--font-body);
    font-weight: 500;
}

/* ── Related Posts Section ── */
.related-posts-section {
    background: #f9f5ff;
    padding: 60px 0 70px;
    margin-top: 0;
}

.related-posts-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.related-posts-title {
    font-size: 26px;
    font-weight: 700;
    color: #2d1a4e;
    font-family: var(--font-heading, sans-serif);
    margin: 0;
    position: relative;
    padding-bottom: 10px;
}

.related-posts-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #c8963e, #e8b84b);
}

.related-posts-all-link {
    font-size: 13.5px;
    font-weight: 600;
    color: #792D85;
    text-decoration: none;
    font-family: var(--font-body, sans-serif);
    transition: opacity 0.2s;
}

.related-posts-all-link:hover {
    opacity: 0.75;
}

/* Grid: always tries to fill 4 columns; with fewer posts they stretch */
.related-posts-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(4, 1fr);
}

.related-posts-grid--1 {
    grid-template-columns: repeat(1, minmax(0, 420px));
}

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

.related-posts-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Card */
.rp-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 14px rgba(121, 45, 133, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(121, 45, 133, 0.14);
}

.rp-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f0e9f8;
}

.rp-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.rp-card:hover .rp-card-img {
    transform: scale(1.04);
}

.rp-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4a8d8;
}

.rp-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #792D85, #9b3aaa);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-body, sans-serif);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 4px 10px;
    border-radius: 20px;
}

.rp-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.rp-card-date {
    font-size: 11.5px;
    color: #9e8ab0;
    font-family: var(--font-body, sans-serif);
    font-weight: 500;
    margin: 0 0 8px;
}

.rp-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #2d1a4e;
    font-family: var(--font-body, sans-serif);
    line-height: 1.45;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.rp-card:hover .rp-card-title {
    color: #792D85;
}

.rp-card-excerpt {
    font-size: 13px;
    color: #6b5b80;
    font-family: var(--font-body, sans-serif);
    line-height: 1.55;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.rp-card-read-more {
    font-size: 12.5px;
    font-weight: 700;
    color: #c8963e;
    font-family: var(--font-body, sans-serif);
    margin-top: auto;
    transition: color 0.2s;
}

.rp-card:hover .rp-card-read-more {
    color: #792D85;
}

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

    .related-posts-grid--1 {
        grid-template-columns: repeat(1, minmax(0, 420px));
    }
}

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

    .related-posts-title {
        font-size: 22px;
    }

    .related-posts-grid,
    .related-posts-grid--3,
    .related-posts-grid--2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {

    .related-posts-grid,
    .related-posts-grid--3,
    .related-posts-grid--2 {
        grid-template-columns: 1fr;
    }

    .related-posts-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}




/* ============================================================
   PRICING PAGE
   ============================================================ */

/* -- Floating particles -- */
.prz-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: przParticleFloat linear infinite;
}

.prz-particle:nth-child(1) {
    width: 5px;
    height: 5px;
    background: var(--gold);
    top: 75%;
    left: 12%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.prz-particle:nth-child(2) {
    width: 3px;
    height: 3px;
    background: var(--brand-purple);
    top: 60%;
    left: 82%;
    animation-duration: 10s;
    animation-delay: 1.5s;
}

.prz-particle:nth-child(3) {
    width: 6px;
    height: 6px;
    background: var(--brand-purple);
    top: 85%;
    left: 55%;
    animation-duration: 7s;
    animation-delay: 2.8s;
}

.prz-particle:nth-child(4) {
    width: 4px;
    height: 4px;
    background: var(--gold);
    top: 70%;
    left: 32%;
    animation-duration: 9s;
    animation-delay: 0.8s;
}

.prz-particle:nth-child(5) {
    width: 3px;
    height: 3px;
    background: var(--brand-purple);
    top: 88%;
    left: 68%;
    animation-duration: 11s;
    animation-delay: 2.2s;
}

.prz-particle:nth-child(6) {
    width: 5px;
    height: 5px;
    background: var(--gold);
    top: 92%;
    left: 42%;
    animation-duration: 8.5s;
    animation-delay: 3.5s;
}

@keyframes przParticleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(0deg);
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.35;
    }

    100% {
        opacity: 0;
        transform: translateY(-280px) rotate(360deg);
    }
}

/* -- Hero -- */
.pricing-hero {
    padding: 90px 0 9px;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #ffffff;
}

/* Soft purple radial glows on white background */
.pricing-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -160px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(121, 45, 133, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.pricing-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -140px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 182, 78, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.pricing-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    max-width: 760px;
    margin: 0 auto;
}

/* Eyebrow */
.pricing-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--brand-purple);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    animation: przFadeUp 0.7s 0.1s both ease;
}

.eyebrow-line {
    display: block;
    width: 44px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--brand-purple));
    border-radius: 2px;
}

.eyebrow-line:last-child {
    background: linear-gradient(90deg, var(--brand-purple), transparent);
}

/* Heading */
.pricing-hero__heading {
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--purple-dark);
    margin: 0;
    animation: przFadeUp 0.7s 0.2s both ease;
}

/* Description */
.pricing-hero__desc {
    font-size: clamp(15px, 1.3vw, 18px);
    color: #666;
    line-height: 1.75;
    max-width: 760px;
    margin: 0;
    animation: przFadeUp 0.7s 0.32s both ease;
}

/* Launch badge */
.pricing-launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    background: rgba(121, 45, 133, 0.06);
    border: 1.5px solid rgba(121, 45, 133, 0.22);
    color: var(--brand-purple);
    font-size: 14px;
    font-weight: 600;
    animation: przFadeUp 0.7s 0.44s both ease, przBadgePulse 2.8s 1.2s ease-in-out infinite;
}

.launch-badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-purple);
    flex-shrink: 0;
    animation: przDotBlink 1.4s ease-in-out infinite;
}

.launch-badge__sep {
    opacity: 0.45;
    margin: 0 4px;
}

@keyframes przDotBlink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

@keyframes przBadgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(121, 45, 133, 0);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(121, 45, 133, 0.07);
    }
}

@keyframes przFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

/* -- Plans Section -- */
.pricing-plans-section {
    padding: 84px 0 100px;
    background: var(--bg-light);
    position: relative;
}

.pricing-plans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 130px;
    background: linear-gradient(180deg, #ffffff 0%, transparent 100%);
    pointer-events: none;
}

/* -- PPS — Pricing Plans Section (redesigned) -- */
.pps-header {
    text-align: center;
    margin-bottom: 60px;
}

.pps-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.pps-eyebrow-line {
    display: block;
    width: 36px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #792D85);
    border-radius: 2px;
}

.pps-eyebrow-line:last-child {
    background: linear-gradient(90deg, #792D85, transparent);
}

.pps-eyebrow-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #792D85;
}

.pps-title {
    font-family: var(--font-heading, 'Arimo', sans-serif);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: var(--purple-dark, #28164B);
    letter-spacing: -0.035em;
    margin: 0 0 14px;
    line-height: 1.12;
}

.pps-subtitle {
    font-size: clamp(14px, 1.1vw, 16px);
    color: #777;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Grid ── */
.pps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 1.6vw, 24px);
    align-items: start;
    max-width: 1320px;
    margin: 0 auto;
}

@media (min-width: 769px) and (max-width: 1199px) {
    .pps-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pps-card {
        padding: 30px 20px 28px;
    }

    .pps-plan-name {
        font-size: clamp(20px, 2.2vw, 24px);
    }

    .pps-feat-item {
        font-size: 12.5px;
        font-weight: 600;
    }
}

@media (max-width: 768px) {
    .pps-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}

/* ── Card base ── */
.pps-card {
    border-radius: 24px;
    padding: 36px 30px 32px;
    min-width: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.38s ease;
    opacity: 0;
    transform: translateY(36px);
}

.pps-card.prz-card--visible {
    opacity: 1;
    transform: translateY(0);
}

.pps-card:nth-child(1) {
    transition-delay: 0s;
}

.pps-card:nth-child(2) {
    transition-delay: 0.1s;
}

.pps-card:nth-child(3) {
    transition-delay: 0.2s;
}

/* ── Basic card (white) ── */
.pps-card--basic {
    background: #fff;
    border: 1.5px solid rgba(121, 45, 133, 0.13);
    box-shadow: 0 8px 32px rgba(40, 22, 75, 0.07);
}

.pps-card--basic:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(40, 22, 75, 0.13);
    border-color: rgba(121, 45, 133, 0.28);
}

/* ── Featured card (dark gradient — most popular) ── */
.pps-card--featured {
    background: var(--gradient-dark,
            radial-gradient(circle at 32% 18%, rgba(121, 45, 133, 0.38) 0%, rgba(121, 45, 133, 0) 36%),
            linear-gradient(116deg, #47256A 0%, #341D59 42%, #28164B 100%));
    border: 1.5px solid rgba(230, 182, 78, 0.38);
    box-shadow: 0 28px 70px rgba(40, 22, 75, 0.38);
    transform: translateY(0);
    /* sits same height */
}

.pps-card--featured.prz-card--visible {
    transform: translateY(-14px);
    /* lifts up when visible */
}

.pps-card--featured:hover {
    transform: translateY(-24px) !important;
    box-shadow: 0 40px 90px rgba(40, 22, 75, 0.48);
}

/* ── Enterprise card (dark, gold accents) ── */
.pps-card--enterprise {
    background: var(--gradient-dark,
            radial-gradient(circle at 68% 22%, rgba(121, 45, 133, 0.3) 0%, rgba(121, 45, 133, 0) 36%),
            linear-gradient(116deg, #3A1E62 0%, #2C1855 45%, #1E1240 100%));
    border: 1.5px solid rgba(230, 182, 78, 0.22);
    box-shadow: 0 12px 48px rgba(40, 22, 75, 0.22);
}

.pps-card--enterprise:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(40, 22, 75, 0.35);
    border-color: rgba(230, 182, 78, 0.42);
}

/* ── Sheen sweep animation (featured card) ── */
.pps-sheen {
    position: absolute;
    top: 0;
    left: -70%;
    width: 52%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
    transform: skewX(-18deg);
    animation: ppsSheen 4.5s 1.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes ppsSheen {

    0%,
    100% {
        left: -70%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    60% {
        left: 120%;
        opacity: 0.5;
    }

    61%,
    99% {
        left: 120%;
        opacity: 0;
    }
}

/* ── Popular badge (Diagonal Corner Ribbon) ── */
.pps-popular-badge {
    position: absolute;
    top: 24px;
    right: -35px;
    width: 140px;
    text-align: center;
    background: linear-gradient(135deg, #E6B64E, #f5d07a);
    color: #28164B;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 0;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 3;
}

/* ── Card head ── */
.pps-card-head {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

/* ── Plan icon ── */
.pps-plan-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(121, 45, 133, 0.1);
    border: 1.5px solid rgba(121, 45, 133, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #792D85;
    margin-bottom: 16px;
    transition: transform 0.32s ease;
}

.pps-card:hover .pps-plan-icon {
    transform: scale(1.1) rotate(-6deg);
}

.pps-plan-icon svg {
    width: 24px;
    height: 24px;
}

.pps-plan-icon--gold {
    background: rgba(230, 182, 78, 0.14);
    border-color: rgba(230, 182, 78, 0.38);
    color: #E6B64E;
}

.pps-plan-icon--enterprise {
    background: rgba(230, 182, 78, 0.1);
    border-color: rgba(230, 182, 78, 0.25);
    color: #E6B64E;
}

/* ── Tier badge ── */
.pps-tier-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 4px 12px;
    margin-bottom: 10px;
}

.pps-tier-badge--basic {
    background: rgba(121, 45, 133, 0.08);
    color: #792D85;
    border: 1px solid rgba(121, 45, 133, 0.2);
}

.pps-tier-badge--featured {
    background: rgba(230, 182, 78, 0.15);
    color: #E6B64E;
    border: 1px solid rgba(230, 182, 78, 0.35);
}

.pps-tier-badge--enterprise {
    background: rgba(230, 182, 78, 0.1);
    color: rgba(230, 182, 78, 0.85);
    border: 1px solid rgba(230, 182, 78, 0.25);
}

/* ── Plan name ── */
.pps-plan-name {
    font-family: var(--font-heading, 'Arimo', sans-serif);
    font-weight: 800;
    color: #28164B;
    letter-spacing: -0.03em;
    margin: 0;
    line-height: 1.2;
}

h4.pps-plan-name {
    font-size: clamp(14px, 1.4vw, 17px);
    font-weight: 500;
    letter-spacing: 0;
    margin-bottom: 2px;
}

h3.pps-plan-name {
    font-size: clamp(22px, 2vw, 28px);
    margin-bottom: 8px;
}

.pps-plan-name--white {
    color: #fff;
}

/* ── Plan tagline ── */
.pps-plan-tagline {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

.pps-plan-tagline--dim {
    color: rgba(255, 255, 255, 0.55);
}

/* ── Price block ── */
.pps-price-block {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.pps-price-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 8px;
}

.pps-price-eyebrow--gold {
    color: rgba(230, 182, 78, 0.75);
}

.pps-price-row {
    display: flex;
    align-items: baseline;
    gap: 3px;
    flex-wrap: nowrap;
    margin-bottom: 6px;
}

.pps-price-currency {
    font-size: 22px;
    font-weight: 700;
    color: #792D85;
    line-height: 1;
}

.pps-price-currency--gold {
    color: #E6B64E;
}

.pps-price-amount {
    font-family: var(--font-heading, 'Arimo', sans-serif);
    font-size: clamp(38px, 3.5vw, 48px);
    font-weight: 800;
    color: #28164B;
    letter-spacing: -0.05em;
    line-height: 1;
}

.pps-price-amount--white {
    color: #fff;
}

.pps-price-gst {
    font-size: 13px;
    font-weight: 600;
    color: #aaa;
    align-self: flex-end;
    padding-bottom: 5px;
}

.pps-price-gst--dim {
    color: rgba(255, 255, 255, 0.42);
}

.pps-price-custom {
    font-family: var(--font-heading, 'Arimo', sans-serif);
    font-size: clamp(30px, 3vw, 38px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.pps-price-note {
    font-size: 12px;
    color: #bbb;
    margin: 0 0 12px;
    line-height: 1.5;
}

.pps-price-note--dim {
    color: rgba(255, 255, 255, 0.38);
}

/* ── AMC pill ── */
.pps-amc-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(121, 45, 133, 0.06);
    border: 1px solid rgba(121, 45, 133, 0.1);
    border-radius: 12px;
    padding: 10px 14px;
}

.pps-amc-pill--gold {
    background: rgba(230, 182, 78, 0.08);
    border-color: rgba(230, 182, 78, 0.18);
}

.pps-amc-label {
    font-size: 11px;
    font-weight: 500;
    color: #999;
}

.pps-amc-label--dim {
    color: rgba(255, 255, 255, 0.48);
}

.pps-amc-value {
    font-family: var(--font-heading, 'Arimo', sans-serif);
    font-size: 14px;
    font-weight: 800;
    color: #28164B;
    letter-spacing: -0.02em;
}

.pps-amc-value--gold {
    color: #E6B64E;
}

/* ── Divider ── */
.pps-divider {
    height: 1px;
    background: rgba(121, 45, 133, 0.1);
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.pps-divider--dim {
    background: rgba(255, 255, 255, 0.1);
}

/* ── Features block ── */
.pps-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}

.pps-feat-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pps-feat-group-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #aaa;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(121, 45, 133, 0.08);
}

.pps-feat-group-label--dim {
    color: rgba(255, 255, 255, 0.35);
    border-bottom-color: rgba(255, 255, 255, 0.07);
}

.pps-feat-group-label--gold-bg {
    background: linear-gradient(90deg, rgba(230, 182, 78, 0.22) 0%, rgba(230, 182, 78, 0.08) 100%);
    color: #e6b64e;
    border-bottom-color: rgba(230, 182, 78, 0.3);
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 2px;
}

.pps-everything-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, rgba(230, 182, 78, 0.18) 0%, rgba(230, 182, 78, 0.06) 100%);
    border: 1px solid rgba(230, 182, 78, 0.35);
    border-radius: 8px;
    padding: 9px 14px;
    margin-bottom: 18px;
    font-size: 12.5px;
    font-weight: 700;
    color: #e6b64e;
    letter-spacing: 0.02em;
}

.pps-everything-icon {
    font-size: 11px;
    color: #e6b64e;
    flex-shrink: 0;
}

.pps-feat-group-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(121, 45, 133, 0.35);
    flex-shrink: 0;
}

.pps-feat-group-dot--gold {
    background: rgba(230, 182, 78, 0.55);
}

.pps-feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 0;
    margin: 0;
}

.pps-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    font-weight: 600;
    color: #555;
    line-height: 1.45;
}

.pps-feat-item--white {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}

.pps-feat-check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(121, 45, 133, 0.1);
    color: #792D85;
    font-size: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.pps-feat-check--gold {
    background: rgba(230, 182, 78, 0.15);
    color: #E6B64E;
}

/* ── Inline badge (e.g. "All Plans") ── */
.pps-inline-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #E6B64E, #f5d07a);
    color: #28164B;
    padding: 2px 8px;
    border-radius: 999px;
    vertical-align: middle;
    margin-left: 4px;
}

/* ── Card CTA ── */
.pps-card-cta {
    position: relative;
    z-index: 1;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.pps-cta-btn {
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pps-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(40, 22, 75, 0.2);
}

.pps-cta-note {
    font-size: 11px;
    color: #bbb;
    text-align: center;
    margin: 0;
    line-height: 1.5;
    font-weight: bold;
}

.pps-cta-note--dim {
    color: rgba(255, 255, 255, 0.35);
}

/* ── Responsive ── */
@media (max-width: 575px) {
    .pps-card {
        padding: 28px 20px 24px;
    }

    .pps-title {
        font-size: 26px;
    }
}


/* -- Features Section -- */
.pricing-features-section {
    padding: 96px 0 104px;
    position: relative;
}

.pricing-features-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-features-desc {
    font-size: clamp(15px, 1.2vw, 17px);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    max-width: 580px;
    margin: 18px auto 0;
}

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

@media (max-width: 991px) {
    .pricing-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .pricing-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Feature card */
.pf-card {
    padding: 32px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(8px);
    transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.36s ease,
        background 0.36s ease;
    opacity: 0;
    transform: translateY(32px);
}

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

.pf-card:nth-child(1) {
    transition-delay: 0s;
}

.pf-card:nth-child(2) {
    transition-delay: 0.08s;
}

.pf-card:nth-child(3) {
    transition-delay: 0.16s;
}

.pf-card:nth-child(4) {
    transition-delay: 0.24s;
}

.pf-card:nth-child(5) {
    transition-delay: 0.32s;
}

.pf-card:nth-child(6) {
    transition-delay: 0.4s;
}

.pf-card:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 182, 78, 0.32);
    background: rgba(255, 255, 255, 0.09);
}

.pf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(230, 182, 78, 0.12);
    border: 1.5px solid rgba(230, 182, 78, 0.28);
    color: var(--gold);
    margin-bottom: 18px;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.pf-icon svg {
    width: 26px;
    height: 26px;
}

.pf-card:hover .pf-icon {
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 0 24px rgba(230, 182, 78, 0.3);
}

.pf-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    font-family: var(--font-heading);
}

.pf-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.7;
    margin: 0;
}

/* -- CTA Section -- */
.pricing-cta-section {
    padding: 0 0 100px;
    background: var(--bg-light);
}

.pricing-cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    padding: 80px clamp(28px, 6vw, 90px);
    text-align: center;
    background: var(--gradient-dark);
    border: 1.5px solid rgba(230, 182, 78, 0.28);
    box-shadow: 0 32px 80px rgba(40, 22, 75, 0.3);
    isolation: isolate;
}

.prz-particle--cta:nth-child(1) {
    width: 6px;
    height: 6px;
    background: var(--gold);
    top: 78%;
    left: 8%;
    animation-duration: 9s;
    animation-delay: 0s;
}

.prz-particle--cta:nth-child(2) {
    width: 4px;
    height: 4px;
    background: #fff;
    top: 58%;
    left: 91%;
    animation-duration: 7s;
    animation-delay: 1.5s;
}

.prz-particle--cta:nth-child(3) {
    width: 5px;
    height: 5px;
    background: var(--gold);
    top: 88%;
    left: 52%;
    animation-duration: 10s;
    animation-delay: 3s;
}

.pricing-cta-inner {
    position: relative;
    z-index: 2;
}

.pricing-cta-icon-wrap {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(230, 182, 78, 0.14);
    border: 2px solid rgba(230, 182, 78, 0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin: 0 auto 26px;
    animation: przIconFloat 4s ease-in-out infinite;
}

.pricing-cta-icon-wrap svg {
    width: 32px;
    height: 32px;
}

@keyframes przIconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

.pricing-cta-heading {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.14;
    letter-spacing: -0.035em;
    margin: 0 0 18px;
}

.pricing-cta-desc {
    font-size: clamp(15px, 1.2vw, 17px);
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
    max-width: 540px;
    margin: 0 auto 38px;
}

.pricing-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.pricing-cta-btn {
    font-size: 16px;
    padding: 16px 44px;
    font-weight: 700;
}

.pricing-cta-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* Responsive tweaks */
@media (max-width: 575px) {
    .pricing-hero {
        padding: 64px 0 80px;
    }

    .pricing-plans-section {
        padding: 64px 0 80px;
    }

    .pricing-features-section {
        padding: 64px 0 72px;
    }

    .pricing-cta-section {
        padding: 0 0 72px;
    }

    .pricing-cta-card {
        padding: 52px 20px;
        border-radius: 28px;
    }

    .pricing-cta-actions {
        flex-direction: column;
    }

    .pricing-cta-btn {
        width: 100%;
        text-align: center;
    }

    .pricing-launch-badge {
        font-size: 13px;
        padding: 11px 18px;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {

    .prz-particle,
    .pps-sheen,
    .pps-popular-badge,
    .launch-badge__dot,
    .pricing-cta-icon-wrap {
        animation: none !important;
    }

    .pricing-hero__eyebrow,
    .pricing-hero__heading,
    .pricing-hero__desc,
    .pricing-launch-badge {
        animation: none !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .pps-card {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .pps-card--featured {
        transform: translateY(-14px) !important;
    }

    .pf-card {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* -- Pricing Launch Offer Section (Light Theme) -- */
.pricing-launch-offer-section {
    padding: 0 0 100px;
    background: var(--bg-light);
    position: relative;
    z-index: 2;
}

.launch-banner-card {
    background: linear-gradient(135deg, var(--purple-mid, #432062) 0%, var(--purple-dark, #28164B) 100%);
    border: 1.5px solid rgba(230, 182, 78, 0.25);
    border-radius: 28px;
    padding: 42px clamp(24px, 5vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(40, 22, 75, 0.25);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.launch-banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(230, 182, 78, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.launch-banner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(40, 22, 75, 0.4);
    border-color: rgba(230, 182, 78, 0.45);
}

.launch-banner-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.launch-banner-title {
    font-family: var(--font-heading, 'Arimo', sans-serif);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.25;
}

/* Rocket wiggle micro-animation */
.launch-banner-title .rocket-icon {
    display: inline-block;
    margin-right: 8px;
    animation: rocket-wiggle 3s ease-in-out infinite;
}

@keyframes rocket-wiggle {

    0%,
    100% {
        transform: rotate(0deg) translateY(0);
    }

    50% {
        transform: rotate(-8deg) translateY(-4px);
    }
}

.launch-banner-desc {
    font-size: clamp(14px, 1.1vw, 16px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin: 0;
}

.launch-banner-desc .highlight-text {
    color: var(--brand-gold, #E6B64E);
    font-weight: 700;
}

.launch-banner-cta {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.btn-demo-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-gold, #E6B64E);
    color: var(--purple-dark, #28164B);
    font-weight: 700;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: var(--radius-pill, 999px);
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(230, 182, 78, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-demo-banner:hover {
    background: #ffffff;
    color: var(--purple-dark, #28164B);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.25);
}

.btn-demo-banner .arrow {
    transition: transform 0.3s ease;
}

.btn-demo-banner:hover .arrow {
    transform: translateX(4px);
}

/* -- Footnotes / Disclaimers -- */
.pricing-footnotes {
    margin-top: 48px;
    text-align: center;
}

.pricing-footnotes .footnote-item {
    font-size: 13px;
    color: #777777;
    line-height: 1.6;
    margin: 0 0 6px 0;
}

.pricing-footnotes .footnote-item:last-child {
    margin-bottom: 36px;
}

.pricing-footnotes .footnote-links {
    margin-top: 12px;
    font-weight: 600;
}

.pricing-footnotes .footnote-links a {
    color: var(--brand-purple, #792D85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.pricing-footnotes .footnote-links a:hover {
    color: var(--brand-gold, #E6B64E);
    text-decoration: underline;
}

/* -- Responsive styling for the new banner -- */
@media (max-width: 991px) {
    .launch-banner-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }

    .btn-demo-banner {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .pricing-launch-offer-section {
        padding: 0 0 70px;
    }

    .launch-banner-card {
        padding: 35px 20px;
        border-radius: 22px;
    }

    .pricing-footnotes .footnote-item {
        font-size: 12px;
    }
}