*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --ink: #0C0C0C;
    --ink2: #141414;
    --ink3: #1C1C1C;
    --gold: #C9A84C;
    --gold2: #DFC070;
    --cream: #FAF8F4;
    --cream2: #F2EDE3;
    --white: #FFFFFF;
    --muted: #857A6A;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden
}

/* ── HEADER ── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 6%;
    background: rgba(12, 12, 12, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 5px;
    color: var(--white);
    text-transform: uppercase;
}

.logo span {
    color: var(--gold)
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

@media (max-width: 480px) {
    .logo img { height: 32px; }
}

.header-cta {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--gold);
    padding: 10px 24px;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.header-cta:hover {
    background: var(--gold2)
}

/* ── HERO ── */
.hero {
    background: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 150px 6% 30px;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

/* hero background media */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slider .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(rgba(12,12,12,0.75), rgba(12,12,12,0.75)); */
    /* background: linear-gradient(rgb(12 12 12 / 55%), rgb(12 12 12 / 50%)); */
    background: linear-gradient(rgb(12 12 12 / 100%), rgb(12 12 12 / 100%));
    backdrop-filter: blur(100px);
    z-index: 1;
}

/* bring hero content above overlay */
.hero > *:not(.hero-slider):not(.hero-overlay) {
    position: relative;
    z-index: 2;
}

/* watermark bg text */
.hero-wm {
    position: absolute;
    right: -2%;
    bottom: -10%;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(160px, 28vw, 380px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.028);
    line-height: 1;
    letter-spacing: 12px;
    text-transform: uppercase;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}

.pdot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.6);
    animation: bk 1.8s ease-in-out infinite
}

@keyframes bk {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.2
    }
}

.hero-pre {
    font-family: 'Jost', sans-serif;
    font-size: clamp(11px, 1.2vw, 13px);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 22px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 9vw, 116px);
    font-weight: 400;
    line-height: 0.95;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 20px;
}

/* nudge */
.hero-nudge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 60px;
}

.nudge-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(15px, 1.6vw, 19px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
}

.btn-explore {
    background: transparent;
    color: var(--gold);
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 11px 30px;
    text-decoration: none;
    border: 1px solid rgba(201, 168, 76, 0.4);
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.btn-explore:hover {
    background: var(--gold);
    color: var(--ink)
}

/* badge — now sits below explore CTA */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 6px 14px;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(201, 168, 76, 0.6);
    text-transform: uppercase;
}

/* hero post — golden boxes */
.hero-post-boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.hbox {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--gold);
    padding: 7px 18px;
}

.hsep {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.25);
    padding: 0 2px;
}

.hraipur {
    font-family: 'Jost', sans-serif;
    font-size: clamp(12px, 1.8vw, 22px);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
}

/* stats */
.stats-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 0;
    width: 100%;
}

.sitem {
    padding: 0 52px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    position: relative;
}

.sitem:not(:last-of-type)::after {
    content: '';
    position: absolute;
    right: 26px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.snum {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 6vw, 70px);
    font-weight: 400;
    color: var(--white);
    line-height: 1;
}

.slabel {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.snote {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.15);
    padding-bottom: 6px;
    margin-left: auto;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* ── SHARED SECTION ── */
section {
    padding: 96px 6%
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.eline {
    width: 28px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0
}

.sh {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.sh-white {
    color: var(--white)
}

.sb {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--muted);
}

/* ── ABOUT ── */
.about {
    background: var(--cream);
    padding: 96px 6%
}

.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
    margin-bottom: 72px;
}

@media(max-width:760px) {
    .about-top {
        grid-template-columns: 1fr;
        gap: 48px
    }
}

/* image frames */
.about-frames {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
}

.frame-portrait {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: var(--cream2);
    border: 1px solid rgba(12, 12, 12, 0.08);
    aspect-ratio: 9/16;
    position: relative;
    overflow: hidden;
}

.frame-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}

.frame-square {
    grid-column: 2 / 3;
    background: var(--cream2);
    border: 1px solid rgba(12, 12, 12, 0.08);
    aspect-ratio: 15/13;
    position: relative;
    overflow: hidden;
}

.frame-portrait::after,
.frame-square::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(12, 12, 12, 0.025) 10px,
                rgba(12, 12, 12, 0.025) 11px);
            z-index: 1;
}

.frame-label {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(12, 12, 12, 0.25);
    white-space: nowrap;
    z-index: 1;
}

.prog-center {
    text-align: center;
    margin-bottom: 44px
}

.prog-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}

.prog-h {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.3px;
}

/* program cards */
.prog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px
}

@media(max-width:860px) {
    .prog-grid {
        grid-template-columns: 1fr
    }
}

.pcard {
    background: var(--ink);
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease;
}

.pcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold2));
}

.pcard:hover {
    transform: translateY(-4px)
}

.pcard-label {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.pcard-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 28px;
    letter-spacing: -0.2px;
}

.pcard-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1
}

.pcard-list li {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
}

.pcard-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 10px;
    top: 2px
}

.pcard-list li a {
    color: rgba(255, 255, 255, 0.48);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: color 0.2s, border-color 0.2s;
}

.pcard-list li a:hover {
    color: var(--gold);
    border-color: var(--gold)
}

.midcta {
    display: flex;
    justify-content: center;
    padding: 52px 0 0
}

.midcta a {
    background: transparent;
    color: var(--ink);
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 14px 44px;
    border: 1px solid rgba(12, 12, 12, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.midcta a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink)
}

/* ── WHY SIDI ── */
.usps {
    background: var(--ink);
    text-align: center
}

.usps .sh {
    color: var(--white)
}

.usps .sb {
    color: rgba(255, 255, 255, 0.32);
    max-width: 500px;
    margin: 0 auto 64px
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.04);
}

@media(max-width:860px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:500px) {
    .why-grid {
        grid-template-columns: 1fr
    }
}

.wcard {
    background: var(--ink2);
    padding: 44px 36px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
}

.wcard:hover {
    background: var(--ink3)
}

.wcard::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.wcard:hover::after {
    width: 100%
}

.wcard-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: rgba(201, 168, 76, 0.08);
    line-height: 1;
    margin-bottom: 18px;
}

.wcard-title {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

.wcard-desc {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.75;
}

/* curiosity strip */
.curio {
    margin-top: 2px;
    background: var(--ink3);
    padding: 52px 6%;
    text-align: center;
}

.curio-q {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.35;
    max-width: 600px;
    margin: 0 auto 12px;
}

.curio-sub {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.curio-cta {
    background: var(--gold);
    color: var(--ink);
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 13px 36px;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
}

.curio-cta:hover {
    background: var(--gold2)
}

/* ── LEAD ── */
.lead {
    background: var(--cream2)
}

.lead-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center
}

.lead-admit {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.lead .sh {
    font-size: clamp(26px, 3.5vw, 44px);
    margin-bottom: 14px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto
}

.lead-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 24px auto
}

/* lead h4 */
.lead-h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.3;
    letter-spacing: -0.2px;
    margin-bottom: 0;
}

.lead-hook {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.9;
    max-width: 400px;
    margin: 0 auto 32px;
}

/* lead steps */
.lead-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    margin: 24px auto 36px;
    max-width: 560px;
}

.lstep {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.45);
    margin: 0 4px;
}

.lstep:first-child {
    margin-left: 0
}

.lstep:last-child {
    margin-right: 0
}

.lstep-text {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
    text-align: center;
    line-height: 1.4;
}

@media(max-width:480px) {
    .lead-steps {
        flex-direction: column;
        max-width: 100%
    }
    .lstep {
        /* border-right: none; */
        /* border-bottom: 1px solid rgba(255, 255, 255, 0.04) */
        margin: 0;
    }
    .lstep:last-child {
        /* border-bottom: none */
    }
}

.lead-urgency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--ink);
    padding: 10px 22px;
    margin-bottom: 52px;
}

.udot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: bk 1.4s infinite;
    flex-shrink: 0
}

/* blank form frame */
.form-frame {
    max-width: 520px;
    margin: 0 auto;
    border: 1px solid rgba(12, 12, 12, 0.1);
    background: var(--white);
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
    gap: 14px;
}

.frame-note {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(12, 12, 12, 0.18);
}

.frame-line {
    width: 32px;
    height: 1px;
    background: rgba(12, 12, 12, 0.1)
}

/* ── FOOTER ── */
footer {
    background: var(--ink2);
    padding: 56px 6% 28px;
    border-top: 1px solid rgba(201, 168, 76, 0.08)
}

.ftop {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: space-between;
    margin-bottom: 52px
}

.flogo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--white);
    text-transform: uppercase
}

.flogo span {
    color: var(--gold)
}

.ftagline {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 7px
}

.fcontact {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 18px;
    line-height: 2
}

.fcontact a {
    color: var(--gold);
    text-decoration: none
}

.fcoltitle {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px
}

.flinks {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.flinks a {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s
}

.flinks a:hover {
    color: var(--gold)
}

.fbot {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: center
}

.fbot p,
.fdiscl {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.18);
    max-width: 520px;
    line-height: 1.7
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    padding: 0;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.42);
    background: #22c55e;
}

.whatsapp-float__badge {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
}

.whatsapp-float__badge svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ── REVEAL ── */
.rv {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease
}

.rv.vis {
    opacity: 1;
    transform: none
}

/* ── RESPONSIVE ── */
@media(max-width:600px) {
    section {
        padding: 64px 5% !important
    }
    .hero {
        padding: 160px 5% 30px ! important;
    }
    .sitem {
        padding: 0 20px
    }
    .hero-post-boxes {
        gap: 4px;
    }
    .hbox {
        padding: 6px 15px;
    }
    .hero-pre {
        font-size: clamp(14px, 1.2vw, 13px);
    }
    .hero-nudge {
        flex-direction: column;
        gap: 14px
    }
    .btng,
    .btno {
        width: 100%;
        justify-content: center
    }
    .curio {
        padding: 44px 5%
    }
    .form-frame {
        padding: 32px 20px
    }
    .ftop {
        flex-direction: column;
        gap: 36px
    }
    .about-frames {
        grid-template-columns: 1fr 1fr
    }
    .frame-portrait {
        grid-column: 1/2;
        grid-row: 1/3
    }
    .frame-square:nth-child(2) {
        grid-column: 2/3;
        grid-row: 1/2
    }
    .frame-square:nth-child(3) {
        grid-column: 2/3;
        grid-row: 2/3
    }
    .midcta a {
        padding: 14px 20px;
    }
    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 56px;
        height: 56px;
    }
    .whatsapp-float__badge {
        width: 28px;
        height: 28px;
    }
}