:root {
    --bg: #fff;
    --fg: #111;
    --muted: #616161;
    --soft: #f7f7f7;
    --border: #ebebeb;
    --gold: #d4a017;
    --gold-light: #e6b94a;
    --gold-dark: #b8881a;
    --black: #111;
    --shadow-soft: 0 10px 40px -12px rgba(0, 0, 0, .1);
    --shadow-elegant: 0 25px 70px -20px rgba(0, 0, 0, .25);
    --shadow-gold: 0 15px 50px -10px rgba(212, 160, 23, .4);
    --grad-gold: linear-gradient(135deg, #d4a017, #e6b94a 50%, #b8881a);
    --grad-gold-soft: linear-gradient(135deg, rgba(212, 160, 23, .15), rgba(212, 160, 23, .05));
    --grad-dark: linear-gradient(160deg, #0d0d0d, #1f1f1f);
    --grad-hero: linear-gradient(90deg, rgba(10, 10, 10, .92) 0%, rgba(10, 10, 10, .7) 45%, rgba(10, 10, 10, .25) 100%);
    --grad-section: linear-gradient(180deg, rgba(10, 10, 10, .85), rgba(10, 10, 10, .92));
    --t: .5s cubic-bezier(.4, 0, .2, 1);
}

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

html {
    scroll-behavior: smooth
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family:'Inter',system-ui,sans-serif;
    color:var(--fg);background:var(--bg);
    overflow-x:hidden;
    line-height:1.6;
    -webkit-font-smoothing:antialiased
}

h1,
h2,
h3,
.font-display {
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -.02em;
    line-height: 1.05
}

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

img {
    display: block;
    max-width: 100%;
    height: auto
}
img.nav-img {
    max-height: 70px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem
}

::selection {
    background: rgba(212, 160, 23, .3)
}

.content-page {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    width: 100%
}

.text-gold {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.italic {
    font-style: italic
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 9999px;
    padding: .75rem 1.75rem;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: var(--t)
}

.btn-gold {
    background: var(--grad-gold);
    color: #000
}

.btn-gold:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px)
}

.btn-dark {
    background: var(--black);
    color: #fff
}

.btn-dark:hover {
    transform: translateY(-1px)
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3em;
    color: var(--gold)
}

.eyebrow .line {
    width: 2.5rem;
    height: 1px;
    background: var(--gold)
}

.section {
    padding: 7rem 0
}


/* SVG icons */
.ic {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -.125em;
    flex-shrink: 0
}

/* store buttons */
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    border-radius: 1rem;
    border: 1px solid rgba(212, 160, 23, .3);
    background: rgba(0, 0, 0, .4);
    backdrop-filter: blur(12px);
    padding: .875rem 1.25rem;
    cursor: pointer;
    transition: var(--t);
    box-shadow: var(--shadow-soft)
}

.store-btn:hover {
    background: var(--gold);
    border-color: var(--gold)
}

.store-btn .si {
    font-size: 1.75rem;
    color: var(--gold);
    transition: var(--t)
}

.store-btn:hover .si {
    color: #000
}

.store-btn .lbl {
    text-align: left;
    line-height: 1.1;
    color: #fff;
    transition: var(--t)
}

.store-btn .lbl small {
    display: block;
    font-size: .625rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    opacity: .7
}

.store-btn .lbl span {
    font-weight: 600;
    font-size: 1rem
}

.store-btn:hover .lbl,
.store-btn:hover .lbl small {
    color: #000
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, .4);
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem
}

.logo {
    display: flex;
    align-items: center;
    gap: .75rem
}

.logo-mark {
    height: 2.75rem;
    width: 2.75rem;
    border-radius: .75rem;
    background: var(--grad-gold);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-gold);
    color: #000
}

.logo-mark .ic {
    transform: rotate(-45deg);
    width: 1.25rem;
    height: 1.25rem
}

.logo-txt {
    line-height: 1.1;
    color: #fff
}

.logo-txt .name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700
}

.logo-txt .sub {
    font-size: .625rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--gold)
}

.nav-links {
    display: none;
    gap: 2.5rem;
    font-size: .875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .8)
}

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

.nav-cta {
    display: none
}


/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero img.bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05)
}

.hero .ov1 {
    position: absolute;
    inset: 0;
    background: var(--grad-hero)
}

.hero .ov2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .4), transparent, #000)
}

.hero .container {
    position: relative;
    z-index: 10;
    padding-top: 6rem;
    padding-bottom: 5rem
}

.hero-content {
    max-width: 48rem
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    border-radius: 9999px;
    border: 1px solid rgba(212, 160, 23, .4);
    background: rgba(212, 160, 23, .1);
    backdrop-filter: blur(12px);
    padding: .5rem 1.25rem;
    margin-bottom: 2rem
}

.badge .dot {
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite
}

.badge span {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: var(--gold)
}

.hero h1 {
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem
}

.hero p.lead {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, .75);
    max-width: 36rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.7
}

.hero .stores {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem
}

.trust {
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 2.5rem
}

.trust .label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: rgba(255, 255, 255, .4)
}

.trust .stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: rgba(255, 255, 255, .6);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.125rem;
    flex-wrap: wrap
}

.trust .stats .sep {
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background: var(--gold)
}

.scroll-i {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .5)
}

.scroll-i .ln {
    height: 3rem;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), transparent)
}



/* MISSION */
.mission .grid {
    display: grid;
    gap: 4rem;
    align-items: center
}


.mission-img {
    position: relative
}

.mission-img .glow {
    position: absolute;
    inset: -1.5rem;
    background: var(--grad-gold);
    border-radius: 2rem;
    filter: blur(48px);
    opacity: .2
}

.mission-img .frame {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
    aspect-ratio: 5/6
}

.mission-img .frame img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.mission-img .frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .4), transparent)
}

.stat-card {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-elegant);
    border: 1px solid var(--border);
    max-width: 220px;
    display: none
}


.stat-card .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.stat-card .lbl {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-top: .25rem
}

.mission h2 {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    margin: 1.25rem 0 2rem
}

.mission .body p {
    color: var(--muted);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.25rem
}

.mission .row {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap
}

.mission .quote {
    font-size: .875rem;
    color: var(--muted);
    font-style: italic;
    font-family: 'Playfair Display', serif
}

/* WHY */
.why {
    position: relative;
    overflow: hidden
}

.why img.bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.why .ov {
    position: absolute;
    inset: 0;
    background: var(--grad-section)
}

.why .ov2 {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4)
}

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

.why .head {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 5rem
}

.why .head .eyebrow {
    justify-content: center
}

.why h2 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    color: #fff;
    margin: 1.25rem 0 1.5rem
}

.why .head p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 300;
    max-width: 32rem;
    margin: 0 auto
}

.features {
    display: grid;
    gap: 1.5rem
}


.feature {
    position: relative;
    border-radius: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: var(--t);
    overflow: hidden
}


.feature:hover {
    background: rgba(255, 255, 255, .09);
    transform: translateY(-8px)
}

.feature .corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 5rem;
    height: 5rem;
    background: var(--grad-gold-soft);
    border-top-right-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
    opacity: .5
}

.feature .ic-wrap {
    position: relative;
    margin-bottom: 1.75rem;
    display: inline-block
}

.feature .ic-glow {
    position: absolute;
    inset: 0;
    background: var(--grad-gold);
    filter: blur(32px);
    opacity: .4;
    transition: var(--t)
}

.feature:hover .ic-glow {
    opacity: .7
}

.feature .ic-circle {
    position: relative;
    height: 5rem;
    width: 5rem;
    border-radius: 50%;
    background: var(--grad-gold);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-gold);
    color: #000
}

.feature .ic-circle .ic {
    width: 2rem;
    height: 2rem
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem
}

.feature p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem
}

.feature .more {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .1em;
    cursor: pointer;
    transition: var(--t)
}

.feature:hover .more {
    gap: .75rem
}

.feature .num {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .05);
    transition: var(--t);
    line-height: 1
}

.feature:hover .num {
    color: rgba(212, 160, 23, .2)
}

/* TESTIMONIAL */
.testi {
    background: rgba(247, 247, 247, .5)
}

.testi .head {
    text-align: center;
    margin-bottom: 4rem
}

.testi .head .eyebrow {
    justify-content: center
}

.testi h2 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    margin: 1.25rem 0 1rem
}

.testi .head p {
    font-size: 1.125rem;
    color: var(--muted);
    font-weight: 300
}

.testi-card {
    position: relative;
    background: var(--grad-dark);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-elegant);
    overflow: hidden;
    max-width: 64rem;
    margin: 0 auto
}


.testi-card .topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-gold)
}

.testi-card .blob1 {
    position: absolute;
    top: -8rem;
    right: -8rem;
    height: 16rem;
    width: 16rem;
    border-radius: 50%;
    background: rgba(212, 160, 23, .2);
    filter: blur(48px)
}

.testi-card .blob2 {
    position: absolute;
    bottom: -8rem;
    left: -8rem;
    height: 16rem;
    width: 16rem;
    border-radius: 50%;
    background: rgba(212, 160, 23, .1);
    filter: blur(48px)
}

.testi-card .qicon {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    font-size: 5rem;
    color: rgba(212, 160, 23, .15);
    font-family: Georgia, serif;
    line-height: .6
}

.testi-inner {
    position: relative;
    display: grid;
    gap: 2.5rem;
    align-items: center
}

.profile {
    position: relative;
    flex-shrink: 0;
    margin: 0 auto
}

.profile .ring {
    position: absolute;
    inset: -8px;
    background: var(--grad-gold);
    border-radius: 50%;
    filter: blur(8px);
    opacity: .6
}

.profile .pic {
    position: relative;
    height: 8rem;
    width: 8rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gold)
}

.profile .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.profile .verified {
    position: absolute;
    bottom: -.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-gold);
    color: #000;
    font-size: .625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .25rem .75rem;
    border-radius: 9999px;
    box-shadow: var(--shadow-gold);
    white-space: nowrap
}

.stars {
    display: flex;
    gap: .25rem;
    margin-bottom: 1.25rem;
    color: var(--gold);
    font-size: 1.25rem
}

.testi-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 2vw, 1.875rem);
    color: #fff;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 500
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem
}

.author .ln {
    height: 1px;
    width: 2.5rem;
    background: var(--gold)
}

.author .name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff
}

.author .role {
    font-size: .8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .1em
}

/* APP */
.appsec {
    position: relative;
    background: var(--grad-dark);
    overflow: hidden;
    color: #fff
}

.appsec .b1 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 24rem;
    width: 24rem;
    border-radius: 50%;
    background: rgba(212, 160, 23, .15);
    filter: blur(80px)
}

.appsec .b2 {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    height: 18rem;
    width: 18rem;
    border-radius: 50%;
    background: rgba(212, 160, 23, .1);
    filter: blur(80px)
}

.appsec .grid {
    position: relative;
    display: grid;
    gap: 4rem;
    align-items: center
}

.appsec h2 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    margin: 1.25rem 0 1.5rem
}

.appsec .sub {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, .8);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 1rem
}

.appsec .desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, .65);
    font-weight: 300;
    line-height: 1.7;
    max-width: 32rem;
    margin-bottom: 2.5rem
}

.checks {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 2.5rem
}

.check {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: rgba(255, 255, 255, .8);
    font-weight: 300
}

.check .tick {
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 50%;
    background: var(--grad-gold);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #000;
    font-weight: bold;
    font-size: .75rem
}

.phone-wrap {
    position: relative
}

.phone-wrap .glow {
    position: absolute;
    inset: 0;
    background: var(--grad-gold);
    filter: blur(120px);
    opacity: .2;
    border-radius: 50%
}

.phone-wrap img {
    position: relative;
    width: 100%;
    animation: float 6s ease-in-out infinite;
    border-radius: 1.5rem
}

/* FOOTER */
.footer {
    position: relative;
    padding: 6rem 0 2.5rem;
    overflow: hidden;
    color: #fff
}

.footer img.bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.footer .ov1 {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .9)
}

.footer .ov2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000, rgba(0, 0, 0, .95) 50%, rgba(0, 0, 0, .85))
}

.footer .topline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent)
}

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

.foot-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem
}


.footer .about p {
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    line-height: 1.7;
    margin: 1.5rem 0
}

.socials {
    display: flex;
    gap: .75rem
}

.socials a {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .7);
    transition: var(--t)
}

.socials a .ic {
    width: 1rem;
    height: 1rem
}

.socials a:hover {
    background: var(--grad-gold);
    color: #000;
    border-color: var(--gold)
}

.footer h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem
}

.footer h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 1.25rem;
    background: var(--grad-gold);
    border-radius: 2px
}

.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.footer ul a {
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: var(--t)
}

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

.contact-list {
    gap: 1rem !important
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 300
}

.contact-list .ic {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: .125rem;
    width: 1.125rem;
    height: 1.125rem
}

.gold-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 160, 23, .6), transparent);
    margin-bottom: 2rem
}

.copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .875rem;
    color: rgba(255, 255, 255, .5)
}

.copy .links {
    display: flex;
    gap: 1.5rem
}

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-14px)
    }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

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

.fade-up {
    animation: fade-up 1s cubic-bezier(.4, 0, .2, 1) both
}

.d1 {
    animation-delay: .1s
}

.d2 {
    animation-delay: .2s
}

.d3 {
    animation-delay: .3s
}

.d4 {
    animation-delay: .4s
}

/* client testimonial */
.testi-slider {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
}

.testi-track {
    display: flex;
    align-items: stretch;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}

.testi-track .testi-card {
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
    max-width: 100%;
}

.pages,
.privacy-policy,
.terms-service {
    flex: 1 0 auto;
    padding-top: calc(5rem + 2.5rem);
    padding-bottom: 4rem;
}

.legal-content {
    color: var(--fg);
    font-size: 1.1rem;
    line-height: 1.8;
}

.legal-content p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
    font-family: 'Playfair Display', serif;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 700;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: .75rem;
    font-weight: 300;
}

.pages h2 {
    margin-bottom: 1.5rem;
}

.container.pages,
.container.privacy-policy,
.container.terms-service {
    width:100%;
    padding-right: .75rem;
    padding-left: .75rem;
    margin-right:auto;
    margin-left:auto;
}

@media (min-width:576px) {
    .container.pages,
    .container.privacy-policy,
    .container.terms-service {
        max-width:540px
    }
}

@media(min-width:640px) {
    .nav-cta {
        display: inline-flex
    }
}

@media(min-width:768px) {
    
    .section {
        padding: 10rem 0
    }    

    .scroll-i {
        display: flex
    }

    .stat-card {
        display: block
    }

    .features {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem
    }

    .testi-card {
        padding: 5rem
    }
    .testi-inner {
        grid-template-columns: auto 1fr;
        gap: 3.5rem
    }

    .profile .pic {
        height: 10rem;
        width: 10rem
    }

    
    .foot-grid {
        grid-template-columns: 1fr 1fr
    }
    
    /*
    .copy {
        flex-direction: row
    }
    */

    .pages,
    .privacy-policy,
    .terms-service {
        padding-top: calc(5rem + 4rem);
        padding-bottom: 5rem;
    }

    .container.pages,
    .container.privacy-policy,
    .container.terms-service {
        max-width: 720px;
    }
}

@media (min-width:992px) {
    .container.pages,
    .container.privacy-policy,
    .container.terms-service {
        max-width:960px
    }
}

@media(min-width:1024px) {
    .nav-links {
        display: flex
    }
    .mission .grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem
    }
    .feature {
        padding: 2.5rem
    }
    .appsec .grid {
        grid-template-columns: 1fr 1fr
    }
    .foot-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 4rem
    }
}

@media (min-width:1200px) {
    .container.pages,
    .container.privacy-policy,
    .container.terms-service{
        max-width:1140px
    }
}

@media (min-width:1400px) {
    .container.pages,
    .container.privacy-policy,
    .container.terms-service  {
        max-width:1320px
    }
}