/* VisiFlora™ — styles.css | Premium Luxury: Black + Gold + White */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');
:root {
    --blk: #0A0A0A;
    --char: #1A1A1A;
    --dk: #2D2D2D;
    --gold: #D4A853;
    --gold-lt: #F5E6C4;
    --gold-dk: #B8912E;
    --wht: #FFF;
    --off: #FAFAF8;
    --crm: #F5F3EE;
    --g100: #EDEDEB;
    --g200: #D4D4D0;
    --g400: #9E9E99;
    --g600: #6B6B66;
    --g700: #454542;
    --font-h: 'Cormorant Garamond', Georgia, serif;
    --font-b: 'Inter', 'Segoe UI', sans-serif;
    --sh: 0 2px 8px rgba(0, 0, 0, .06);
    --sh-m: 0 6px 20px rgba(0, 0, 0, .08);
    --sh-l: 0 16px 40px rgba(0, 0, 0, .1);
    --sh-g: 0 4px 24px rgba(212, 168, 83, .2);
    --r: 10px;
    --rl: 18px;
    --t: .3s cubic-bezier(.4, 0, .2, 1)
}

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    font-size: 16px
}

* {
    -webkit-tap-highlight-color: transparent
}

body {
    font-family: var(--font-b);
    color: var(--dk);
    background: var(--wht);
    line-height: 1.72;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

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

a {
    text-decoration: none;
    color: inherit
}

ul,
ol {
    list-style: none
}

.c {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-h);
    font-weight: 700;
    line-height: 1.2;
    color: var(--blk)
}

h1 {
    font-size: 28px
}

h2 {
    font-size: 24px;
    margin-bottom: 14px
}

h3 {
    font-size: 20px
}

h4 {
    font-size: 18px
}

p {
    margin-bottom: 14px;
    color: var(--g700)
}

.lb {
    display: inline-block;
    font-family: var(--font-b);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 168, 83, .1);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid rgba(212, 168, 83, .2)
}

.st {
    text-align: center;
    margin-bottom: 48px
}

.st h2 {
    margin-bottom: 10px
}

.st p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--g600);
    font-size: 15px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-b);
    font-weight: 700;
    font-size: 15px;
    padding: 15px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    min-height: 52px;
    transition: var(--t);
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: .3px
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .6s
}

.btn:hover::after {
    transform: translateX(100%)
}

.bg {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
    color: var(--blk);
    box-shadow: var(--sh-g)
}

.bg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, .35)
}

.bg:active {
    transform: scale(.98)
}

.bb {
    background: var(--blk);
    color: var(--wht);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .2)
}

.bb:hover {
    background: var(--char);
    transform: translateY(-2px)
}

.bw {
    width: 100%
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-10px)
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0
    }
    100% {
        background-position: 200% 0
    }
}

@keyframes countP {
    0%,
    100% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.06)
    }
}

.rv {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .65s, transform .65s
}

.rv.vi {
    opacity: 1;
    transform: translateY(0)
}

.si {
    opacity: 0;
    transform: translateX(-18px);
    transition: all .5s
}

.si.vi {
    opacity: 1;
    transform: translateX(0)
}

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

/* NAV */

.hd {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--g100);
    transition: var(--t)
}

.hd.sc {
    box-shadow: var(--sh-m)
}

.nw {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0
}

.lo {
    font-family: var(--font-h);
    font-size: 22px;
    font-weight: 800;
    color: var(--blk)
}

.lo span {
    color: var(--gold)
}

.nl {
    display: none;
    gap: 28px
}

.nl a {
    font-size: 13px;
    font-weight: 600;
    color: var(--g700);
    transition: color .2s;
    letter-spacing: .3px
}

.nl a:hover {
    color: var(--gold)
}

.nc {
    display: none
}

.nc .btn {
    font-size: 12px;
    padding: 9px 22px;
    min-height: 40px
}

.hm {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center
}

.hm span {
    width: 22px;
    height: 2.5px;
    background: var(--blk);
    border-radius: 2px;
    transition: var(--t)
}

.hm.a span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.hm.a span:nth-child(2) {
    opacity: 0
}

.hm.a span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.mm {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 310px;
    height: 100vh;
    background: var(--wht);
    z-index: 999;
    padding: 78px 28px 28px;
    transition: right .35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -8px 0 36px rgba(0, 0, 0, .1);
    display: flex;
    flex-direction: column
}

.mm.op {
    right: 0
}

.mm a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--blk);
    border-bottom: 1px solid var(--g100)
}

.mm .btn {
    margin-top: 22px
}

.ov {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}

.ov.a {
    opacity: 1;
    pointer-events: auto
}

/* HERO */

.hero {
    padding: 100px 0 60px;
    background: linear-gradient(165deg, var(--crm) 0%, var(--off) 50%, var(--wht) 100%);
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 83, .06) 0%, transparent 70%);
    border-radius: 50%
}

.hg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px
}

.hi {
    text-align: center
}

.hi img {
    max-width: 250px;
    margin: 0 auto;
    animation: float 4.5s ease-in-out infinite;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, .1))
}

.hc {
    text-align: center
}

.hc h1 {
    margin-bottom: 16px
}

.hc h1 .hl {
    color: var(--gold)
}

.hc>p {
    font-size: 15.5px;
    line-height: 1.78
}

.hb {
    margin-bottom: 24px;
    text-align: left;
    display: inline-block
}

.hb li {
    padding: 5px 0;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 9px
}

.hb li .ck {
    width: 20px;
    height: 20px;
    background: var(--gold-lt);
    color: var(--gold-dk);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    font-weight: 800
}

.hr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    font-size: 12px;
    color: var(--g600)
}

.hr span {
    display: flex;
    align-items: center;
    gap: 4px
}

/* STATS */

.stats {
    padding: 40px 0;
    background: var(--blk);
    color: var(--wht)
}

.sg {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center
}

.si-s {}

.si-s .num {
    font-family: var(--font-h);
    font-size: 28px;
    font-weight: 800;
    color: var(--gold)
}

.si-s p {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    margin: 0
}

/* TRUST */

.tru {
    padding: 64px 0;
    background: var(--wht)
}

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

.tc {
    background: var(--off);
    border: 1px solid var(--g100);
    border-radius: var(--r);
    padding: 24px 18px;
    text-align: center;
    transition: var(--t)
}

.tc:hover {
    border-color: var(--gold);
    box-shadow: var(--sh-g);
    transform: translateY(-3px)
}

.tc .icon {
    font-size: 32px;
    margin-bottom: 10px
}

.tc h4 {
    font-size: 15px;
    margin-bottom: 6px
}

.tc p {
    font-size: 13px;
    color: var(--g600);
    margin: 0
}

/* WHO FOR */

.wf {
    padding: 64px 0;
    background: var(--crm)
}

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

.wc {
    background: var(--wht);
    border-radius: var(--r);
    padding: 24px;
    border-left: 4px solid var(--gold);
    box-shadow: var(--sh);
    transition: var(--t)
}

.wc:hover {
    box-shadow: var(--sh-m)
}

.wc h4 {
    font-size: 16px;
    margin-bottom: 8px
}

.wc p {
    font-size: 14px;
    margin: 0;
    line-height: 1.72
}

/* WHAT IS */

.wi {
    padding: 64px 0;
    background: var(--wht)
}

.wig {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center
}

.wii img {
    max-width: 300px;
    margin: 0 auto;
    border-radius: var(--rl);
    box-shadow: var(--sh-l)
}

.wit p {
    font-size: 15px;
    line-height: 1.78
}

.wit ul {
    margin: 14px 0
}

.wit ul li {
    padding: 6px 0;
    font-size: 14.5px;
    display: flex;
    gap: 8px;
    font-weight: 500
}

.wit ul li::before {
    content: '✦';
    color: var(--gold);
    flex-shrink: 0
}

/* HOW WORKS */

.hw {
    padding: 64px 0;
    background: var(--blk);
    color: var(--wht)
}

.hw .st h2,
.hw .st p {
    color: var(--wht)
}

.hw .st p {
    color: rgba(255, 255, 255, .55)
}

.hw .lb {
    border-color: rgba(212, 168, 83, .3)
}

.hwi {
    text-align: center;
    color: rgba(255, 255, 255, .65);
    max-width: 680px;
    margin: 0 auto 36px;
    font-size: 15px
}

.step {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
    align-items: flex-start
}

.sn {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: var(--blk);
    box-shadow: var(--sh-g)
}

.sc h4 {
    color: var(--wht);
    margin-bottom: 4px;
    font-size: 17px
}

.sc p {
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
    margin: 0
}

/* VS TABLE */

.vs {
    padding: 64px 0;
    background: var(--off)
}

.vtb {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    max-width: 700px;
    font-size: 14px
}

.vtb th,
.vtb td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--g200)
}

.vtb th {
    font-weight: 700;
    background: var(--blk);
    color: var(--wht);
    font-size: 13px
}

.vtb td:first-child {
    font-weight: 600;
    color: var(--blk)
}

.vtb .gld {
    color: var(--gold-dk);
    font-weight: 700
}

/* REVIEWS */

.rev {
    padding: 64px 0;
    background: var(--wht);
}

/* GRID */
.rg {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

/* CARD */
.rc {
    background: var(--off);
    border-radius: var(--r);
    padding: 28px; /* increased for premium look */
    border: 1px solid var(--g100);
    transition: var(--t);
}

.rc:hover {
    box-shadow: var(--sh-m);
    transform: translateY(-3px);
}

/* HEADER (IMAGE + NAME) */
.rh {
    display: flex;
    align-items: center;
    gap: 18px; /* increased spacing */
    margin-bottom: 14px;
}

/* PROFILE IMAGE (BIG - TRUST BOOST) */
.rh img {
    width: 100px;   /* 🔥 increased from 56px */
    height: 100px;  /* 🔥 increased from 56px */
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-lt);
}

/* NAME */
.rn {
    font-weight: 700;
    font-size: 15px;
    color: var(--blk);
}

/* LOCATION */
.rl {
    font-size: 13px;
    color: var(--g600);
}

/* STARS */
.rs {
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 1px;
}

/* REVIEW TEXT */
.rc > p {
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
    font-style: italic;
    color: var(--g700);
}

/* VERIFIED TAG */
.rv-tag {
    font-size: 12px;
    color: var(--g400);
    margin-top: 10px;
}

/* INGREDIENTS */

.ing {
    padding: 64px 0;
    background: var(--crm)
}

.ini {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 32px;
    font-size: 15px
}

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

.ic {
    background: var(--wht);
    border-radius: var(--r);
    padding: 22px;
    border: 1px solid var(--g100);
    transition: var(--t)
}

.ic:hover {
    border-color: var(--gold);
    box-shadow: var(--sh)
}

.ic h4 {
    color: var(--blk);
    margin-bottom: 5px;
    font-size: 16px
}

.ic h4 .em {
    margin-right: 6px
}

.ic p {
    font-size: 13.5px;
    margin: 0;
    line-height: 1.72;
    color: var(--g700)
}

.ing-img {
    text-align: center;
    margin-top: 28px
}

.ing-img img {
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--rl);
    box-shadow: var(--sh-l)
}

/* PRICING */

.pri {
    padding: 64px 0;
    background: var(--blk);
    color: var(--wht)
}

.pri .st h2 {
    color: var(--wht)
}

.pri .st p {
    color: rgba(255, 255, 255, .5)
}

.pri .lb {
    border-color: rgba(212, 168, 83, .3)
}

.cdw {
    text-align: center;
    margin-bottom: 36px
}

.cd {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 168, 83, .1);
    border: 1px solid rgba(212, 168, 83, .25);
    padding: 10px 24px;
    border-radius: 50px
}

.cdl {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    font-weight: 700
}

.cdt {
    font-size: 26px;
    font-weight: 800;
    color: var(--gold);
    animation: countP 2s infinite
}

.pg {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 940px;
    margin: 0 auto
}

.pc {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--rl);
    padding: 28px 20px;
    text-align: center;
    transition: var(--t);
    position: relative
}

.pc.pop {
    background: rgba(212, 168, 83, .08);
    border: 2px solid var(--gold)
}

.pb {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--blk);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap
}

.plb {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 4px
}

.pbt {
    font-size: 20px;
    font-weight: 800;
    color: var(--wht)
}

.psu {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 14px
}

.pc .pim {
    max-width: 120px;
    margin: 0 auto 14px
}

.pam {
    font-size: 38px;
    font-weight: 800;
    color: var(--gold)
}

.pam small {
    font-size: 14px;
    color: rgba(255, 255, 255, .5)
}

.por {
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
    text-decoration: line-through
}

.pto {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 6px
}

.pto .sk {
    text-decoration: line-through
}

.pbd {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center
}

.pbd span {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    background: rgba(212, 168, 83, .12);
    color: var(--gold)
}

.pc .btn {
    margin-top: 14px;
    width: 100%
}

/* BONUSES */

.bon {
    padding: 64px 0;
    background: var(--off)
}

.bog {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 860px;
    margin: 0 auto
}

.boc {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: var(--wht);
    border: 1px solid var(--g100);
    border-radius: var(--rl);
    padding: 28px 22px;
    text-align: center;
    transition: var(--t)
}

.boc:hover {
    box-shadow: var(--sh-m);
    border-color: var(--gold)
}

.boc img {
    max-width: 120px;
    border-radius: var(--r)
}

.boc h4 {
    font-size: 16px
}

.boc .val {
    font-size: 13px;
    color: var(--gold-dk);
    font-weight: 700
}

.boc p {
    font-size: 13.5px;
    margin: 0;
    color: var(--g700)
}

/* GUARANTEE */

.gua {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--gold-lt) 0%, var(--crm) 100%)
}

.guag {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center
}

.guap {
    margin-top: 14px;
    text-align: left
}

.guap li {
    padding: 8px 0;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    gap: 9px
}

.guap li::before {
    content: '🛡️';
    flex-shrink: 0
}

/* BENEFITS */

.ben {
    padding: 64px 0;
    background: var(--wht)
}

.bl {
    max-width: 700px;
    margin: 0 auto
}

.bl li {
    padding: 11px 0;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    gap: 11px;
    border-bottom: 1px solid var(--g100)
}

.bl li:last-child {
    border-bottom: none
}

.bl li::before {
    content: '✅';
    flex-shrink: 0
}

/* PROS CONS */

.prc {
    padding: 64px 0;
    background: var(--crm)
}

.pcg {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 780px;
    margin: 0 auto
}

.pcb {
    background: var(--wht);
    border-radius: var(--r);
    padding: 26px;
    border-top: 4px solid
}

.pcb.pro {
    border-color: var(--gold)
}

.pcb.con {
    border-color: var(--g400)
}

.pcb h3 {
    margin-bottom: 14px
}

.pcb li {
    padding: 6px 0;
    font-size: 14px;
    display: flex;
    gap: 8px
}

.pcb.pro li::before {
    content: '👍'
}

.pcb.con li::before {
    content: '👎'
}

/* SCIENCE */

.sci {
    padding: 64px 0;
    background: var(--wht)
}

.scc {
    max-width: 740px;
    margin: 0 auto
}

.sci-i {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--g100)
}

.sci-i:last-child {
    border-bottom: none
}

.sci-i h4 {
    margin-bottom: 5px;
    font-size: 16px
}

.sci-i p {
    font-size: 14px;
    margin: 0;
    color: var(--g700)
}

/* WHERE BUY / ORDER / FAQ — same patterns */

.wb {
    padding: 64px 0;
    background: var(--off)
}

.wbc {
    max-width: 740px;
    margin: 0 auto
}

.wbc p {
    font-size: 15px
}

.os {
    padding: 64px 0;
    background: var(--wht)
}

.osg {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center
}

.osg img {
    max-width: 280px;
    border-radius: var(--r);
    box-shadow: var(--sh-l)
}

.ost h4 {
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
    align-items: center
}

.ost .nm {
    background: var(--gold);
    color: var(--blk);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0
}

.ost p {
    font-size: 14.5px
}

.faq {
    padding: 64px 0;
    background: var(--crm)
}

.fl {
    max-width: 740px;
    margin: 0 auto
}

.fi {
    border: 1px solid var(--g200);
    border-radius: var(--r);
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--wht);
    transition: var(--t)
}

.fi.act {
    border-color: var(--gold);
    box-shadow: var(--sh)
}

.fq {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    color: var(--blk);
    min-height: 54px;
    gap: 10px;
    user-select: none
}

.fq .ico {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: var(--gold-lt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gold-dk);
    transition: var(--t)
}

.fi.act .fq .ico {
    background: var(--gold);
    color: var(--blk);
    transform: rotate(45deg)
}

.fa {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
}

.fai {
    padding: 0 18px 18px;
    font-size: 14.5px;
    color: var(--g700);
    line-height: 1.78
}

/* FINAL CTA */

.fcta {
    padding: 64px 0;
    background: linear-gradient(160deg, var(--crm), var(--gold-lt));
    text-align: center
}

.fcta img {
    max-width: 240px;
    margin: 0 auto 22px;
    animation: float 4.5s ease-in-out infinite
}

.fp {
    margin: 14px 0
}

.fp .old {
    font-size: 18px;
    text-decoration: line-through;
    color: var(--g600);
    margin-right: 8px
}

.fp .nw {
    font-size: 30px;
    font-weight: 800;
    color: var(--gold-dk)
}

.fg {
    margin-top: 14px;
    font-size: 13px;
    color: var(--g600)
}

/* FOOTER */

.ft {
    padding: 44px 0 26px;
    background: var(--blk);
    color: rgba(255, 255, 255, .5)
}

.ftg {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 26px
}

.ftb {
    font-family: var(--font-h);
    font-size: 20px;
    font-weight: 800;
    color: var(--wht);
    margin-bottom: 8px
}

.ftb span {
    color: var(--gold)
}

.ftl a {
    display: block;
    padding: 5px 0;
    font-size: 13px;
    transition: color .2s
}

.ftl a:hover {
    color: var(--wht)
}

.ftd {
    font-size: 11px;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 18px
}

.ftbt {
    text-align: center;
    font-size: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .05)
}

.stt {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--blk);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--t);
    z-index: 900;
    box-shadow: var(--sh-g);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800
}

.stt.vi {
    opacity: 1;
    pointer-events: auto
}

.stt:hover {
    background: var(--gold-dk)
}

.pp {
    position: fixed;
    bottom: 22px;
    left: 22px;
    background: var(--wht);
    border-radius: var(--r);
    padding: 12px 18px;
    box-shadow: var(--sh-l);
    font-size: 12px;
    z-index: 800;
    transform: translateY(120%);
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    max-width: 270px;
    border-left: 4px solid var(--gold)
}

.pp.sh {
    transform: translateY(0)
}

.pp strong {
    color: var(--blk)
}

.pp .tm {
    color: var(--g400);
    font-size: 11px
}

@media(min-width:576px) {
    .tg,
    .rg,
    .igg {
        grid-template-columns: repeat(2, 1fr)
    }
    .wg {
        grid-template-columns: repeat(2, 1fr)
    }
    .pcg {
        grid-template-columns: repeat(2, 1fr)
    }
    .bog {
        grid-template-columns: repeat(3, 1fr)
    }
    .ftg {
        grid-template-columns: repeat(2, 1fr)
    }
    .sg {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media(min-width:768px) {
    h1 {
        font-size: 36px
    }
    h2 {
        font-size: 30px
    }
    h3 {
        font-size: 24px
    }
    .nl {
        display: flex
    }
    .nc {
        display: block
    }
    .hm {
        display: none
    }
    .hero {
        padding: 116px 0 76px
    }
    .hg {
        flex-direction: row;
        text-align: left
    }
    .hi img {
        max-width: 320px
    }
    .hc {
        text-align: left
    }
    .hr {
        justify-content: flex-start
    }
    .wig {
        flex-direction: row
    }
    .wii,
    .wit {
        flex: 1
    }
    .guag {
        flex-direction: row;
        text-align: left
    }
    .osg {
        flex-direction: row
    }
    .pg {
        grid-template-columns: repeat(3, 1fr)
    }
    .pc.pop {
        transform: scale(1.04)
    }
}

@media(min-width:992px) {
    h1 {
        font-size: 44px
    }
    h2 {
        font-size: 34px
    }
    .tg {
        grid-template-columns: repeat(4, 1fr)
    }
    .wg {
        grid-template-columns: repeat(3, 1fr)
    }
    .hi img {
        max-width: 380px
    }
    .ftg {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(min-width:1200px) {
    h1 {
        font-size: 48px
    }
}