﻿:root {
    --primary: #1FA971;
    --primary-dark: #15825A;
    --sidebar-bg: #2E2E2E;
    --text-muted: #9CA3AF;
    --bg-light: #F4F6F9;
    --dark: #0B0F0E;
    --dark2: #111714;
    --dark3: #161D1A;
    --border: rgba(31, 169, 113, .13);
    --border-dim: rgba(255, 255, 255, .07);

    /* Dynamic Theme Variables (Default Dark) */
    --bg-body: #0B0F0E;
    --bg-nav: rgba(11, 15, 14, .9);
    --bg-nav-stuck: rgba(11, 15, 14, .9);
    --text-main: #E8EDEB;
    --text-sec: #9CA3AF;
    --text-dim: #D4E0DC;
    --card-bg: rgba(255, 255, 255, .024);
    --card-border: rgba(255, 255, 255, .07);
    --card-hover-bg: rgba(31, 169, 113, .04);
    --item-bg: rgba(255, 255, 255, .022);
    --input-bg: rgba(255, 255, 255, .04);
    --shadow-color: rgba(0, 0, 0, 0.55);
    --grain-opacity: 0.5;
    --logo-text: #fff;
    --foot-bg: #080C0B;
}

body.light-mode {
    --bg-body: #F8FAFC;
    --bg-nav: rgba(255, 255, 255, .9);
    --bg-nav-stuck: rgba(255, 255, 255, .95);
    --text-main: #1e293b;
    --text-sec: #64748b;
    --text-dim: #334155;
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --card-hover-bg: #f0fdf4;
    --item-bg: #f1f5f9;
    --input-bg: #f8fafc;
    --shadow-color: rgba(0, 0, 0, 0.05);
    --dark: #F8FAFC;
    --dark2: #ffffff;
    --dark3: #f1f5f9;
    --grain-opacity: 0.05;
    --logo-text: #1e293b;
    --foot-bg: #f1f5f9;
    --border-dim: rgba(0, 0, 0, .07);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
    transition: background 0.3s, color 0.3s;
}



/* GRAIN */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27300%27 height=%27300%27%3E%3Cfilter id=%27n%27%3E%3CfeTurbulence type=%27fractalNoise%27 baseFrequency=%270.75%27 numOctaves=%274%27 stitchTiles=%27stitch%27/%3E%3C/filter%3E%3Crect width=%27300%27 height=%27300%27 filter=%27url(%23n)%27 opacity=%270.035%27/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9997;
    opacity: var(--grain-opacity)
}

/* NAV */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    transition: all .4s
}

#nav.stuck {
    background: var(--bg-nav-stuck);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none
}

.nav-logo img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(31, 169, 113, .3)
}

.nav-logo-name {
    font-family: "Outfit", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--logo-text);
    letter-spacing: -.02em
}

.nav-logo-name em {
    color: var(--primary);
    font-style: normal
}

.nav-mid {
    display: flex;
    gap: 4px
}

@media(max-width:768px) {
    .nav-mid {
        display: none
    }
}

.nav-r {
    display: flex;
    align-items: center;
    gap: 8px
}

.nl {
    color: var(--text-sec);
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all .2s
}

.nl:hover {
    color: var(--text-main);
    background: var(--card-hover-bg);
}

.nl-login {
    border: 1px solid var(--card-border) !important;
    color: var(--text-main) !important
}

.nl-login:hover {
    border-color: var(--primary) !important;
    color: var(--primary) !important
}

.nl-cta {
    background: var(--primary) !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 9px 22px !important;
    border-radius: 9px !important;
    box-shadow: 0 0 22px rgba(31, 169, 113, .28)
}

.nl-cta:hover {
    background: var(--primary-dark) !important;
    box-shadow: 0 0 40px rgba(31, 169, 113, .45) !important;
    transform: translateY(-1px)
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 100px 5% 80px;
    position: relative;
    overflow: hidden;
    text-align: center
}

.h-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(31, 169, 113, .14) 0%, transparent 65%), radial-gradient(ellipse 50% 40% at 80% 80%, rgba(31, 169, 113, .06) 0%, transparent 60%)
}

.h-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(31, 169, 113, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(31, 169, 113, .05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%)
}

.h-cnt {
    position: relative;
    z-index: 2;
    max-width: 840px
}

.h-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(31, 169, 113, .1);
    border: 1px solid rgba(31, 169, 113, .25);
    color: var(--primary);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 30px;
    animation: fadeDown .7s ease both
}

.h-pulse {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 1.6s ease infinite
}

h1.hh {
    font-family: "Outfit", sans-serif;
    font-size: clamp(3.2rem, 7.5vw, 5.8rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.04em;
    margin-bottom: 26px;
    animation: fadeUp .75s ease .1s both
}

h1.hh .acc {
    color: var(--primary);
    position: relative;
    display: inline-block
}

h1.hh .acc::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px
}

h1.hh .dim {
    color: var(--text-dim);
    opacity: 0.5;
}

.h-p {
    font-size: 1.08rem;
    color: var(--text-sec);
    line-height: 1.75;
    max-width: 540px;
    margin: 0 auto 42px;
    animation: fadeUp .75s ease .2s both
}

.h-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .75s ease .3s both
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    padding: 15px 34px;
    border-radius: 12px;
    box-shadow: 0 0 44px rgba(31, 169, 113, .3);
    transition: all .25s
}

.btn-main:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 64px rgba(31, 169, 113, .5)
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--item-bg);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
    padding: 15px 28px;
    border-radius: 12px;
    transition: all .25s
}

.btn-ghost:hover {
    background: var(--card-hover-bg);
    border-color: rgba(255, 255, 255, .2);
    color: var(--primary);
}

.h-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--card-border);
    animation: fadeUp .75s ease .45s both
}

.p-item {
    text-align: center
}

.p-num {
    font-family: "Outfit", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1
}

.p-lbl {
    font-size: .95rem;
    color: var(--text-main);
    font-weight: 500;
    margin-top: 4px;
    line-height: 1.4;
}

.p-sep {
    width: 1px;
    height: 38px;
    background: var(--card-border)
}

@media(max-width:520px) {
    .p-sep {
        display: none
    }
}

/* MOCKUP */
.h-mockup {
    position: relative;
    z-index: 2;
    margin-top: 72px;
    animation: fadeUp .85s ease .55s both;
    max-width: 860px;
    width: 100%
}

.m-frame {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 60px 100px var(--shadow-color), 0 0 0 1px rgba(255, 255, 255, .04), inset 0 1px 0 rgba(255, 255, 255, .06)
}

.m-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 20px;
    background: var(--item-bg);
    border-bottom: 1px solid var(--card-border)
}

.md {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.m-url {
    margin-left: 10px;
    background: var(--input-bg);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 4px 16px;
    font-size: .72rem;
    color: var(--text-sec);
    flex: 1;
    max-width: 240px;
    text-align: center
}

.m-body {
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px
}

.mc {
    background: var(--item-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 16px 18px
}

.mc-l {
    font-size: .65rem;
    color: var(--text-sec);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px
}

.mc-v {
    font-family: "Outfit", sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1
}

.mc-s {
    font-size: .68rem;
    color: rgba(31, 169, 113, .5);
    margin-top: 4px
}

.m-tbl {
    padding: 0 24px 22px;
    width: 100%;
    border-collapse: collapse
}

.m-tbl tr {
    border-bottom: 1px solid var(--card-border)
}

.m-tbl td {
    padding: 10px 12px;
    font-size: .77rem;
    color: var(--text-sec);
    vertical-align: middle
}

.m-tbl td:first-child {
    color: var(--text-dim);
    font-weight: 500
}

.tg {
    background: rgba(31, 169, 113, .14);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 600
}

.tn {
    background: var(--item-bg);
    color: var(--text-sec);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: .68rem
}

/* SECTIONS */
section {
    padding: 110px 5%;
    position: relative
}

.eye {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: .73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 14px
}

.eye::before {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px
}

h2.st {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.1;
    margin-bottom: 14px
}

h2.st .g {
    color: var(--primary)
}

.ss {
    color: var(--text-sec);
    font-size: .96rem;
    line-height: 1.7;
    max-width: 500px
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.on {
    opacity: 1;
    transform: none
}

/* HOW */
.how-s {
    background: var(--dark2)
}

.how-g {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 60px;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden
}

@media(max-width:900px) {
    .how-g {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:520px) {
    .how-g {
        grid-template-columns: 1fr
    }
}

.hc {
    padding: 38px 28px;
    background: var(--card-bg);
    transition: background .3s;
    cursor: default
}

.hc:hover {
    background: var(--card-hover-bg);
}

.hc-n {
    font-family: "Outfit", sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(31, 169, 113, .1);
    line-height: 1;
    margin-bottom: 18px;
    transition: color .3s
}

.hc:hover .hc-n {
    color: rgba(31, 169, 113, .22)
}

.hc-i {
    width: 46px;
    height: 46px;
    background: rgba(31, 169, 113, .1);
    border: 1px solid rgba(31, 169, 113, .2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 18px
}

.hc h3 {
    font-size: .98rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px
}

.hc p {
    font-size: .83rem;
    color: var(--text-sec);
    line-height: 1.65
}

/* FEATURES */
.feat-s {
    background: var(--dark)
}

.feat-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 60px
}

@media(max-width:900px) {
    .feat-g {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:560px) {
    .feat-g {
        grid-template-columns: 1fr
    }
}

.fc {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.fc::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(31, 169, 113, .3), transparent);
    opacity: 0;
    transition: opacity .3s
}

.fc:hover {
    border-color: rgba(31, 169, 113, .22);
    transform: translateY(-4px)
}

.fc:hover::before {
    opacity: 1
}

.fi {
    width: 50px;
    height: 50px;
    background: rgba(31, 169, 113, .1);
    border: 1px solid rgba(31, 169, 113, .18);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 18px
}

.fc h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px
}

.fc p {
    font-size: .845rem;
    color: var(--text-sec);
    line-height: 1.65
}

/* DISCIPLINES */
.disc-s {
    background: var(--dark3)
}

.disc-w {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: start;
    margin-top: 60px
}

@media(max-width:860px) {
    .disc-w {
        grid-template-columns: 1fr
    }
}

.disc-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.dt {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 22px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    cursor: pointer;
    transition: all .25s
}

.dt:hover,
.dt.active {
    background: var(--card-hover-bg);
    border-color: rgba(31, 169, 113, .28)
}

.dt-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--text-sec);
    flex-shrink: 0;
    transition: background .25s
}

.dt.active .dt-dot,
.dt:hover .dt-dot {
    background: var(--primary)
}

.dt-name {
    font-weight: 600;
    font-size: .93rem;
    color: var(--text-dim);
}

.dt-cnt {
    margin-left: auto;
    font-size: .75rem;
    color: var(--text-sec);
    background: var(--item-bg);
    padding: 3px 12px;
    border-radius: 999px
}

.disc-panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 28px
}

.dp-title {
    font-size: .7rem;
    color: var(--text-sec);
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: 18px
}

.dp-title span {
    color: var(--primary)
}

.cr {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 11px 14px;
    border-radius: 10px;
    background: var(--item-bg);
    margin-bottom: 8px;
    animation: slideIn .35s ease both
}

.ci {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    flex-shrink: 0;
    margin-top: 1px
}

.ci.ok {
    background: rgba(31, 169, 113, .14);
    color: var(--primary)
}

.ci.no {
    background: rgba(239, 68, 68, .1);
    color: #ef4444
}

.ci.na {
    background: rgba(156, 163, 175, .1);
    color: #6B7280
}

.ct {
    font-size: .82rem;
    color: var(--text-dim);
    line-height: 1.4
}

.cr-r {
    font-size: .7rem;
    color: var(--text-sec);
    margin-top: 2px
}

/* PRICING */
.price-s {
    background: var(--dark)
}

.price-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 60px
}

@media(max-width:860px) {
    .price-g {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-inline: auto
    }
}

.plan {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 34px 28px;
    position: relative;
    transition: all .3s
}

.plan:hover {
    transform: translateY(-4px)
}

.plan.hot {
    background: var(--card-hover-bg);
    border-color: var(--primary);
    box-shadow: 0 0 60px rgba(31, 169, 113, .1)
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 18px;
    border-radius: 999px;
    white-space: nowrap
}

.plan-name {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--text-sec);
    margin-bottom: 14px
}

.plan-price {
    font-family: "Outfit", sans-serif;
    font-size: 2.9rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1
}

.plan-price sup {
    font-size: 1.1rem;
    vertical-align: super;
    margin-top: 6px;
    display: inline-block
}

.per {
    font-size: .85rem;
    font-weight: 400;
    color: var(--text-sec);
    font-family: "Outfit", sans-serif
}

.plan-desc {
    font-size: .82rem;
    color: var(--text-sec);
    line-height: 1.6;
    margin: 12px 0 24px
}

.plan-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px
}

.plan-feats li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .845rem;
    color: var(--text-sec)
}

.plan-feats li i {
    font-size: .65rem;
    width: 14px
}

.yes {
    color: var(--primary)
}

.nope {
    color: var(--text-dim);
    opacity: 0.5;
}

.plan-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .88rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .25s
}

.pbo {
    background: transparent;
    border: 1px solid var(--text-sec);
    color: var(--text-sec)
}

.pbo:hover {
    border-color: var(--primary);
    color: var(--primary)
}

.pbf {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 30px rgba(31, 169, 113, .25)
}

.pbf:hover {
    background: var(--primary-dark);
    box-shadow: 0 0 50px rgba(31, 169, 113, .45)
}

/* TESTIMONIALS */
.test-s {
    background: var(--dark2)
}

.test-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 60px
}

@media(max-width:900px) {
    .test-g {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto
    }
}

.tc {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 28px;
    transition: border-color .3s
}

.tc:hover {
    border-color: rgba(31, 169, 113, .2)
}

.tc-stars {
    color: var(--primary);
    font-size: .72rem;
    margin-bottom: 14px;
    letter-spacing: 2px
}

.tc-q {
    font-size: .88rem;
    color: var(--text-sec);
    line-height: 1.7;
    margin-bottom: 22px
}

.tc-q::before {
    content: " C";
    font-size: 1.6rem;
    color: rgba(31, 169, 113, .3);
    line-height: .7;
    display: block;
    margin-bottom: 8px;
    font-family: "Outfit", sans-serif
}

.tc-a {
    display: flex;
    align-items: center;
    gap: 12px
}

.tc-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .82rem;
    color: #fff;
    flex-shrink: 0
}

.tc-n {
    font-weight: 600;
    font-size: .88rem;
    color: var(--text-dim)
}

.tc-r {
    font-size: .75rem;
    color: var(--text-sec)
}

/* CTA */
.cta-s {
    background: var(--dark);
    text-align: center
}

.cta-box {
    max-width: 660px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid rgba(31, 169, 113, .2);
    border-radius: 28px;
    padding: 70px 44px;
    position: relative;
    overflow: hidden
}

.cta-box::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(31, 169, 113, .12) 0%, transparent 65%)
}

.cta-box h2 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -.04em;
    margin-bottom: 14px;
    position: relative;
    color: var(--text-main);
}

.cta-box p {
    color: var(--text-sec);
    font-size: .96rem;
    line-height: 1.65;
    margin-bottom: 34px;
    position: relative
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative
}

/* FOOTER */
footer {
    background: var(--foot-bg);
    border-top: 1px solid var(--card-border);
    padding: 64px 5% 30px
}

.foot-g {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 48px
}

@media(max-width:860px) {
    .foot-g {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:480px) {
    .foot-g {
        grid-template-columns: 1fr
    }
}

.fb img {
    width: 40px;
    border-radius: 50%;
    margin-bottom: 14px
}

.fb-n {
    font-family: "Outfit", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 10px;
    letter-spacing: -.02em
}

.fb-n em {
    color: var(--primary);
    font-style: normal
}

.fb p {
    font-size: .82rem;
    color: var(--text-sec);
    line-height: 1.7
}

.fc2 h4 {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--text-sec);
    margin-bottom: 14px
}

.fc2 ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px
}

.fc2 ul a {
    color: var(--text-sec);
    text-decoration: none;
    font-size: .84rem;
    transition: color .2s
}

.fc2 ul a:hover {
    color: var(--primary)
}

.foot-b {
    border-top: 1px solid var(--border-dim);
    padding-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.foot-b p {
    font-size: .78rem;
    color: var(--text-sec);
}

.foot-b em {
    color: var(--primary);
    font-style: normal
}

.socs {
    display: flex;
    gap: 8px
}

.sb {
    width: 34px;
    height: 34px;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-sec);
    font-size: .82rem;
    text-decoration: none;
    transition: all .2s
}

.sb:hover {
    border-color: var(--primary);
    color: var(--primary)
}

/* ANIM */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-14px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

/* MOBILE MENU */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 902;
    padding: 0;
}

.nav-toggle .bar {
    width: 100%;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all .3s;
}

.mob-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-body);
    z-index: 901;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
    padding: 20px;
}

.mob-menu.open {
    opacity: 1;
    pointer-events: all;
}

.nav-toggle.open .bar:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open .bar:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

.mm-l {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    font-family: "Outfit", sans-serif;
}

.mm-sep {
    width: 40px;
    height: 2px;
    background: var(--card-border);
    margin: 10px 0;
}

.mm-btn {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    background: var(--primary);
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(31, 169, 113, .3);
}

@media(max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-r {
        display: none;
    }

    .hero {
        padding: 120px 5% 60px;
    }

    h1.hh {
        font-size: 2.8rem;
        /* Fallback */
        font-size: clamp(2.4rem, 10vw, 3.5rem);
    }

    .h-p {
        font-size: 1rem;
    }

    .m-body {
        grid-template-columns: 1fr;
    }

    .m-tbl {
        display: none;
    }
}