@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
:root{
    --cream:#f7f0e8; --cream-light:#fbf7f1; --cream-dark:#efe4d4;
    --ink:#191919; --ink-soft:#4a4440;
    --red:#c8102e; --red-soft:#e8513f; --red-deep:#9e0f24;
    --gold:#c9a96a; --gold-light:#e6d3b8; --tan:#e9d8be;
    --white:#fff;
    --serif:'Playfair Display',Georgia,serif;
    --script:'Great Vibes',cursive;
    --sans:'Jost','Helvetica Neue',Arial,sans-serif;
    --shadow-soft:0 10px 40px rgba(120,80,40,.10);
    --shadow-lift:0 24px 60px rgba(120,80,40,.16);
    --r-xl:28px; --r-lg:20px; --r-md:14px;
    --maxw:1180px;
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Jost", sans-serif !important;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.r {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 0.7, 0.3, 1),
        transform 0.8s cubic-bezier(0.22, 0.7, 0.3, 1);
}
.rv.in {
    opacity: 1;
    transform: none;
}
.rv-d1 {
    transition-delay: 0.12s;
}
.rv-d2 {
    transition-delay: 0.24s;
}
.rv-d3 {
    transition-delay: 0.36s;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 999px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.btn-dark {
    background: linear-gradient(120deg, #1d1d1d, #2e2a28);
    color: var(--white) !important;
    padding: 17px 32px;
    box-shadow: 0 8px 22px rgba(25, 25, 25, 0.25);
}
.btn-dark::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: skewX(-22deg);
    transition: left 0.6s;
}
.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(25, 25, 25, 0.32);
}
.btn-dark:hover::after {
    left: 130%;
}
.btn .heart {
    color: var(--red-soft);
    font-size: 15px;
    transition: transform 0.3s;
}
.btn:hover .heart {
    transform: scale(1.25);
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(247, 240, 232, 0.82);
    border-bottom: 1px solid rgba(160, 120, 70, 0.12);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
}
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-word {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 28px;
    letter-spacing: 0.42em;
    color: var(--ink);
}
.logo-word sup {
    font-size: 9px;
    letter-spacing: 0;
    vertical-align: top;
}
.logo-sub {
    font-size: 9px;
    letter-spacing: 0.4em;
    color: var(--ink-soft);
    margin-top: 6px;
    text-transform: uppercase;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: var(--red);
    transition: width 0.3s;
}
.nav-link:hover::after {
    width: 100%;
}
header .btn-dark {
    padding: 13px 24px;
    font-size: 12px;
}


.hero {
    padding: 64px 0 96px;
    position: relative;
	overflow: hidden;
}
.hero-bloom {
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.07), transparent 65%);
    top: -120px;
    right: -140px;
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}
.eyebrow-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 16, 46, 0.08);
    border: 1px solid rgba(200, 16, 46, 0.22);
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 26px;
}
.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.45);
    }
    70% {
        box-shadow: 0 0 0 9px rgba(200, 16, 46, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(200, 16, 46, 0);
    }
}
.hero h1 {
    font-family: var(--serif) !important;
    font-weight: 500;
    font-size: clamp(38px, 4.6vw, 58px);
    line-height: 1.12;
    color: var(--ink);
}
.script-line {
    font-family: var(--script) !important;
    font-size: 84px;
    line-height: 1.3;
    display: inline-block;
    margin: 0px 0 24px;
    position: relative;
   color: #c8102e;
}
.script-spark {
    position: absolute;
    right: -46px;
    top: 4px;
    color: var(--red);
    animation: twinkle 2.6s ease-in-out infinite;
}
@keyframes twinkle {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.82);
    }
}
.hero p {
    font-size: 17.5px;
    color: var(--ink-soft);
    max-width: 430px;
    margin-bottom: 34px;
    font-weight: 300;
}
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.hero-mini-note {
    font-size: 12.5px;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-mini-note b {
    color: var(--red);
    font-size: 15px;
}


.hero-visual {
    position: relative;
}
.hero-photo {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 4/3.5;
    box-shadow: var(--shadow-lift);
    transform: rotate(1.2deg);
}
.hero-frame {
    position: absolute;
    inset: -14px;
    border: 1.5px solid rgba(200, 16, 46, 0.28);
    border-radius: 34px;
    transform: rotate(-1.4deg);
    pointer-events: none;
}
.float-chip {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lift);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floaty 5s ease-in-out infinite;
}
.float-chip.fc-1 {
    bottom: -24px;
    left: -18px;
}
.float-chip.fc-2 {
    top: -20px;
    right: -10px;
    animation-delay: 1.4s;
}
@keyframes floaty {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}
.fc-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}
.fc-1 .fc-icon {
    background: rgba(200, 16, 46, 0.1);
}
.fc-2 .fc-icon {
    background: var(--tan);
}
.fc-amount {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.1;
}
.fc-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
/* placeholder pattern */
.ph {
    background: linear-gradient(135deg, #ede1d1, #e2d2bc 50%, #eee0cc);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #9c8159;
    text-align: center;
    width: 100%;
    height: 100%;
    border: 2px dashed #cbb088;
    border-radius: inherit;
}
.ph-icon {
    font-size: 36px;
}
.ph-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.ph-note {
    font-size: 11px;
    max-width: 250px;
    opacity: 0.85;
}


.sec-eyebrow {
    display: block;
    text-align: center;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}
.sec-title {
    font-family: var(--serif) !important;
    font-weight: 600;
    font-size: 42px;
    text-align: center;
    color: var(--ink);
    line-height: 1.2;
}
.flourish {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 18px 0 52px;
    color: var(--red);
}
.flourish::before,
.flourish::after {
    content: "";
    width: 64px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red));
}
.flourish::after {
    background: linear-gradient(90deg, var(--red), transparent);
}

.rewards {
    padding: 90px 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200, 16, 46, 0.045), transparent),
        linear-gradient(var(--cream-light), var(--cream));
}
.rewards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    position: relative;
}
.reward-card {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 56px 40px 48px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition:
        transform 0.35s,
        box-shadow 0.35s;
}
.reward-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lift);
}
.reward-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--red), var(--red-soft));
}
.friend-card::before {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.ribbon {
    position: absolute;
    top: 22px;
    right: -38px;
    transform: rotate(38deg);
    background: var(--red);
    color: #fff;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 44px;
}
.friend-card .ribbon {
    background: var(--gold);
}
.reward-eyebrow {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 18px;
}
.reward-amount {
    font-family: var(--serif) !important;
    font-weight: 600;
    font-size: clamp(54px, 6vw, 76px);
    line-height: 1;
    color: var(--red);
}
.reward-amount .rupee {
    font-size: 0.55em;
    vertical-align: 14px;
    margin-right: 3px;
    font-weight: 500;
}
.friend-card .reward-amount {
    color: var(--ink);
}
.friend-card .reward-amount em {
    font-style: normal;
    color: var(--red);
}
.reward-sub {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    margin-top: 10px;
}
.members-extra {
    font-family: var(--script) !important;
    font-size: 32px;
    color: var(--red);
    margin: 24px 0 2px;
}
.loyalty-line {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.member-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(120deg, var(--tan), var(--gold-light));
    border-radius: 999px;
    padding: 9px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-top: 24px;
}
.heart-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.14);
    z-index: 2;
}
.heart-divider svg {
    animation: heartbeat 1.6s ease-in-out infinite;
}
@keyframes heartbeat {
    0%,
    100% {
        transform: scale(1);
    }
    12% {
        transform: scale(1.16);
    }
    24% {
        transform: scale(1);
    }
    36% {
        transform: scale(1.1);
    }
    48% {
        transform: scale(1);
    }
}
.friend-sub {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 14px;
    display: inline-block;
    padding-bottom: 12px;
    border-bottom: 1.5px solid var(--red);
}
.friend-note {
    display: block;
    margin-top: 18px;
    font-size: 13px;
    color: var(--ink-soft);
    font-weight: 300;
}

.how
{
padding:90px 0;
}
.steps
{
display:grid;
grid-template-columns:
repeat(3,1fr);
gap:30px;
counter-reset:step;
}
.step-card
{
background:var(--white);
border-radius:var(--r-lg);
padding:42px 30px 38px;
text-align:center;
box-shadow:var(--shadow-soft);
position:relative;
transition:transform .35s,box-shadow .35s;
}
.step-card:hover
{
transform:translateY(-6px);
box-shadow:var(--shadow-lift);
}
.step-num
{
position:absolute;
top:-19px;
left:50%;
transform:translateX(-50%);
width:38px;
height:38px;
border-radius:50%;
background:linear-gradient(135deg,var(--red),var(--red-soft));
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:15px;
font-weight:700;
box-shadow:0 6px 16px rgba(200,16,46,.35);
}
.step-art
{
height:140px;
display:flex;
align-items:center;
justify-content:center;
margin:8px 0 22px;
}
.step-art svg
{
height:100%;
width:auto;
transition:transform .4s;
}
.step-card:hover .step-art svg
{
transform:scale(1.07);
}
.step-card h3
{
font-size:15px;
font-weight:700;
letter-spacing:.16em;
text-transform:uppercase;
margin-bottom:10px;
}
.step-card p
{
font-size:14px;
color:var(--ink-soft);
font-weight:300;
}
.steps-connector
{
display:none;
}

@media(min-width:901px){

.steps
{
position:relative;
}
.steps-connector
{
display:block;
position:absolute;
top:50%;
left:32%;
right:32%;
border-top:2px dashed rgba(200,16,46,.3);
z-index:-1
}
}


.members-band {
    margin-top: 64px;
    background: linear-gradient(120deg, #171513, #2c2620 70%, #1d1a16);
    border-radius: var(--r-xl);
    padding: 52px 56px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lift);
}
.members-band::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 106, 0.16), transparent 65%);
    top: -160px;
    right: -120px;
}
.member-card-visual {
    width: 250px;
    aspect-ratio: 1.586;
    background: linear-gradient(135deg, #101010, #2e2c29 55%, #161616);
    border-radius: 14px;
    border: 1px solid rgba(201, 169, 106, 0.35);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transform: rotate(-5deg);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s;
}
.member-card-visual:hover {
    transform: rotate(-2deg) scale(1.04);
}
.member-card-visual::after {
    content: "";
    position: absolute;
    top: 0;
    left: -90%;
    width: 55%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 235, 200, 0.14), transparent);
    transform: skewX(-20deg);
    animation: cardshine 4.5s ease-in-out infinite;
}
@keyframes cardshine {
    0%,
    55% {
        left: -90%;
    }
    80%,
    100% {
        left: 140%;
    }
}
.card-v {
    font-family: var(--serif);
    font-size: 30px;
    color: var(--gold);
}
.card-word {
    font-family: var(--serif);
    font-size: 20px;
    letter-spacing: 0.42em;
    color: var(--gold);
}
.card-sub {
    font-size: 8px;
    letter-spacing: 0.46em;
    color: var(--gold);
    opacity: 0.85;
    text-transform: uppercase;
}
.members-copy h3 {
    font-family: var(--serif) !important;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 600;
    color: #f3e9d8;
    margin-bottom: 8px;
}
.members-copy h3 .sparkle {
    color: var(--gold);
}
.members-copy > p {
    font-size: 14.5px;
    color: #bfb39f;
    margin-bottom: 28px;
    font-weight: 300;
}
.member-perks {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}
.perk {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 34px;
}
.perk:first-child {
    padding-left: 0;
}
.perk + .perk {
    border-left: 1px solid rgba(201, 169, 106, 0.3);
}
.perk-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201, 169, 106, 0.16);
    border: 1px solid rgba(201, 169, 106, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}
.perk-amount {
    font-family: var(--serif);
    font-size: 30px;
    color: #f3e9d8;
    line-height: 1.05;
}
.perk-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.help {
    padding: 20px 0 90px;
}
.help-card {
    background: var(--white);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1fr 320px;
    overflow: hidden;
}
.help-copy {
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.help-copy h2 {
    font-family: var(--serif) !important;
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 600;
    margin-bottom: 10px;
}
.help-copy p {
    font-size: 15.5px;
    color: var(--ink-soft);
    margin-bottom: 30px;
    font-weight: 300;
}
.btn-whatsapp {
    background: #fff;
    border: 1.5px solid rgba(0, 0, 0, 0.14);
    color: var(--ink);
    padding: 15px 28px;
    border-radius: 16px;
    font-size: 13px;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    transition: all 0.3s;
}
.btn-whatsapp:hover {
    border-color: #25d366;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.28);
    transform: translateY(-2px);
}
.wa-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25d366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}
.help-photo {
    min-height: 280px;
}
.terms {
    padding: 0 0 56px;
}
.terms-card {
    background: var(--cream-light);
    border: 1px solid rgba(160, 120, 70, 0.18);
    border-radius: var(--r-md);
    overflow: hidden;
}
.terms-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
}
.terms-head h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
}
.terms-chev {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s;
}
.terms-card.open .terms-chev {
    transform: rotate(180deg);
}
.terms-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.terms-card.open .terms-body {
    max-height: 420px;
}
.terms-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 48px;
    padding: 0 32px 30px;
}
.terms-card ul {
    list-style: none;
}
.terms-card li {
    font-size: 12.5px;
    color: var(--ink-soft);
    padding-left: 16px;
    position: relative;
    margin-bottom: 8px;
    font-weight: 300;
}
.terms-card li::before {
    content: "♥";
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--red);
    font-size: 10px;
}

footer {
    background: var(--ink);
    color: #cfc6ba;
    padding: 34px 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.footer-logo {
    font-family: var(--serif);
    letter-spacing: 0.4em;
    font-size: 18px;
    color: #f3e9d8;
}
.footer-note {
    font-size: 12px;
    letter-spacing: 0.08em;
    font-weight: 300;
}
.footer-note .heart {
    color: var(--red-soft);
}


 /* ── Responsive ── */
  @media(max-width:900px) {
    
    .hero {
    padding: 40px 0 72px;
}
    .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
}
    .hero-visual {
    order: -1;
    margin-top: 10px;
}
    .rewards-grid {
    grid-template-columns: 1fr;
    gap: 60px;
}
    .steps {
    grid-template-columns: 1fr;
    gap: 44px;
}
    .members-band {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 44px 28px;
    gap: 40px;
}
    .member-card-visual {
    margin: 0 auto;
}
    .member-perks {
    justify-content: center;
}
    .help-card {
    grid-template-columns: 1fr;
}
    .help-photo {
    display: none;
}
    .help-copy {
    padding: 48px 32px;
    align-items: center;
    text-align: center;
}
    .terms-cols {
    grid-template-columns: 1fr;
}
    .float-chip.fc-2 {
    right: 0;
}
  }
  @media(max-width:560px) {
    
    .header-inner {
    flex-wrap: wrap;
    justify-content: center;
}
    .header-nav {
    width: 100%;
    justify-content: center;
}
    .perk {
    padding: 12px 0;
    width: 100%;
    justify-content: center;
}
    .perk+.perk {
    border-left: none;
    border-top: 1px solid rgba(201, 169, 106, .3);
}
    .script-spark {
    right: -30px;
}
    .float-chip {
    padding: 10px 14px;
}
    .footer-inner {
    justify-content: center;
    text-align: center;
}
  }

  @media (prefers-reduced-motion:reduce) {
    
    *, *: :before, *::after {
    animation: none!important;
    transition: none!important;
}
    .rv {
    opacity: 1;
    transform: none;
}
  }