/* 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: 18px 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;
}

/* 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);
    }
}

@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;
}

.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: #FFFFFF;
    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 {
    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;
}

.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;
}

.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-img {
        max-height: 380px;
    }
}

@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: linear-gradient(135deg, rgba(40, 22, 75, 0.96) 0%, rgba(68, 32, 102, 0.94) 100%);
    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: #ffffff;
    padding: 96px 0 100px;
    overflow: hidden;
}

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

.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(121, 45, 133, 0.08);
    border: 1px solid rgba(121, 45, 133, 0.2);
    color: #792D85;
    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: #28164B;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.why-choose-title-accent {
    color: #792D85;
    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, #792D85, #E6B64E);
    opacity: 0.5;
}

.why-choose-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: #5a5a6e;
    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: #ffffff;
    border: 1px solid rgba(121, 45, 133, 0.12);
    border-radius: 20px;
    padding: 36px 28px 32px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 20px rgba(40, 22, 75, 0.06);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(121, 45, 133, 0.14);
    border-color: rgba(121, 45, 133, 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, #792D85, #E6B64E);
    opacity: 0;
    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(121, 45, 133, 0.1) 0%, rgba(230, 182, 78, 0.12) 100%);
    border: 1px solid rgba(121, 45, 133, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #792D85;
    transition: background 0.3s ease, border-color 0.3s ease;
}

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

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

.why-card__desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.75;
    color: #6b6b80;
}

/* 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;
    }
}

/* ── 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 */
}

/* 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;
}

/* Glassmorphism Card with Glowing Gradient Border */
.notebooks-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 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;
}

/* Moving colored gradient border on hover */
.notebooks-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(230, 182, 78, 0.2) 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.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(121, 45, 133, 0.15);
}

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

.notebooks-card-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

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

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

.notebooks-card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--brand-gold);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05);
}

.notebooks-card:hover .notebooks-card-icon-wrapper {
    background: linear-gradient(135deg, var(--brand-gold) 0%, #FFE596 100%);
    color: #18081E;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(230, 182, 78, 0.3);
}

.notebooks-card-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

/* 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: #AEA4BA;
    /* Lavender gray */
    transition: color 0.4s ease;
}

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

/* 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: 0;
    transition: opacity 0.5s ease;
}

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