/* === LMNT-RTI LANDING === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 66px
}

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: #1e293b;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden
}

img {
    display: block;
    max-width: 100%
}

.wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px
}

.icon-sm {
    width: 16px;
    height: 16px
}

:root {
    --primary: #e67e22;
    --primary-dk: #c0650a;
    --primary-lt: #f0a04b;
    --green: #10b981;
    --surface: #faf7f2;
    --border: #e8e0d4;
    --text-w: #f8f4ef;
    --text-m: #a89c8c;
    --bg-dark: #1a1207
}

/* === POPUP FORM === */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.popup-overlay.show {
    display: flex
}

.popup-box {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    padding: 32px 28px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    animation: popIn .3s ease
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(.92)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    transition: .2s;
    padding: 4px
}

.popup-close:hover {
    color: #1e293b
}

.popup-close i {
    width: 22px;
    height: 22px
}

.popup-top {
    text-align: center;
    margin-bottom: 20px
}

.popup-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
    margin: 0 auto 10px
}

.popup-top h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1207
}

.popup-top h2 span {
    color: var(--primary)
}

.popup-top p {
    font-size: .82rem;
    color: #7a6b56
}

.popup-box .field {
    margin-bottom: 12px
}

.popup-box .field label {
    display: block;
    font-size: .76rem;
    font-weight: 600;
    color: #5c4a32;
    margin-bottom: 3px
}

.input-wrap.light {
    position: relative;
    display: flex;
    align-items: center
}

.input-wrap.light i {
    position: absolute;
    left: 10px;
    width: 15px;
    height: 15px;
    color: #a89c8c;
    pointer-events: none
}

.input-wrap.light input,
.input-wrap.light select {
    width: 100%;
    padding: 10px 10px 10px 34px;
    background: #faf7f2;
    border: 1px solid var(--border);
    border-radius: 7px;
    color: #1a1207;
    font-size: .86rem;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: .2s
}

.input-wrap.light input::placeholder {
    color: #bcb0a0
}

.input-wrap.light input:focus,
.input-wrap.light select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(230, 126, 34, .1)
}

.input-wrap.light select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23a89c8c' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center
}

.popup-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-dk)) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    margin-top: 4px
}

.popup-success {
    display: none;
    text-align: center;
    padding: 28px 10px
}

.popup-success.show {
    display: block
}

.popup-success h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: #1a1207;
    margin: 10px 0 4px
}

.popup-success p {
    color: #7a6b56;
    font-size: .88rem
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .35);
    transition: .25s;
    text-decoration: none
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45)
}

/* TOPBAR */
.topbar {
    background: var(--bg-dark);
    color: var(--text-m);
    font-size: .76rem;
    padding: 5px 0
}

.topbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px
}

.topbar-left {
    display: flex;
    gap: 16px
}

.topbar-left a,
.topbar-flex>span {
    color: var(--text-m);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: .2s
}

.topbar-left a:hover {
    color: var(--primary-lt)
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border)
}

.header.scrolled {
    box-shadow: 0 1px 12px rgba(0, 0, 0, .06)
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%
}

.brand-logo.sm {
    width: 44px;
    height: 44px
}

.nav-desktop {
    display: flex;
    gap: 22px
}

.nav-desktop a {
    color: #5c4a32;
    text-decoration: none;
    font-size: .84rem;
    font-weight: 500;
    transition: .2s
}

.nav-desktop a:hover {
    color: var(--primary)
}

.btn-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dk));
    color: #fff;
    padding: 8px 18px;
    border-radius: 7px;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    transition: .2s;
    box-shadow: 0 2px 8px rgba(230, 126, 34, .2);
    cursor: pointer
}

.btn-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(230, 126, 34, .3)
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a1207
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px 20px 12px;
    background: #fff;
    border-top: 1px solid var(--border)
}

.nav-mobile a {
    color: #5c4a32;
    text-decoration: none;
    font-weight: 500;
    padding: 4px 0;
    font-size: .88rem
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #1a1207, #2a1e0e);
    padding: 44px 0 52px;
    position: relative
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 370px;
    gap: 36px;
    align-items: start
}

.hero-left h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    font-weight: 800;
    color: var(--text-w);
    line-height: 1.2;
    margin-bottom: 12px
}

.hero-left h1 span {
    background: linear-gradient(135deg, var(--primary-lt), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.hero-sub {
    font-size: .9rem;
    color: var(--text-m);
    line-height: 1.65;
    margin-bottom: 18px;
    max-width: 480px
}

.hero-sub strong {
    color: var(--text-w)
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 22px
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 13px;
    border-radius: 6px;
    font-size: .76rem;
    font-weight: 600;
    color: #e8e0d4;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1)
}

.chip i {
    width: 14px;
    height: 14px;
    color: var(--primary-lt)
}

.hero-stats {
    display: flex;
    align-items: center
}

.hs {
    text-align: center;
    padding: 0 18px
}

.hs strong {
    display: block;
    font-size: 1.25rem;
    color: var(--primary-lt);
    font-weight: 800
}

.hs span {
    font-size: .68rem;
    color: var(--text-m)
}

.hs-div {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, .1)
}

/* FORM (hero) */
.form-box {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 22px 18px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, .25)
}

.form-top {
    text-align: center;
    margin-bottom: 16px
}

.form-top h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: var(--text-w);
    font-weight: 700;
    margin-bottom: 2px
}

.form-top h2 span {
    color: var(--primary-lt)
}

.form-top p {
    font-size: .76rem;
    color: #8a7b6a
}

.field {
    margin-bottom: 10px
}

.field label {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-m);
    margin-bottom: 3px
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center
}

.input-wrap i {
    position: absolute;
    left: 10px;
    width: 14px;
    height: 14px;
    color: #8a7b6a;
    pointer-events: none
}

.input-wrap input,
.input-wrap select {
    width: 100%;
    padding: 9px 10px 9px 32px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    color: var(--text-w);
    font-size: .84rem;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: .2s
}

.input-wrap input::placeholder {
    color: rgba(168, 156, 140, .4)
}

.input-wrap input:focus,
.input-wrap select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(230, 126, 34, .1)
}

.input-wrap select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23a89c8c' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center
}

.input-wrap select option {
    background: #231a0d;
    color: var(--text-w)
}

.btn-submit {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dk));
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: .2s;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 3px 10px rgba(230, 126, 34, .25)
}

.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(230, 126, 34, .35)
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: .66rem;
    color: #8a7b6a;
    margin-top: 7px
}

.form-success {
    display: none;
    text-align: center;
    padding: 24px 10px
}

.form-success.show {
    display: block
}

.form-success h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: var(--text-w);
    margin: 8px 0 3px
}

.form-success p {
    color: var(--text-m);
    font-size: .82rem
}

/* TRUST */
.trust-bar {
    background: var(--surface);
    padding: 16px 0;
    border-bottom: 1px solid var(--border)
}

.trust-flex {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px
}

.trust-item>i {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0
}

.trust-item strong {
    font-size: .8rem;
    color: #1a1207;
    display: block
}

.trust-item small {
    font-size: .7rem;
    color: #7a6b56
}

/* SECTIONS */
.section {
    padding: 48px 0
}

.section.alt {
    background: var(--surface)
}

.sec-head {
    text-align: center;
    margin-bottom: 30px
}

.label {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #fef3e2;
    color: var(--primary-dk);
    margin-bottom: 6px
}

.sec-head h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.3rem, 2.6vw, 1.75rem);
    font-weight: 800;
    color: #1a1207
}

/* === CARDS (FIXED IMAGES) === */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 11px;
    overflow: hidden;
    transition: .2s;
    position: relative;
    cursor: pointer
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .06)
}

.card-ribbon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2
}

.card-img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f5f0e8
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: .3s
}

.card:hover .card-img-wrap img {
    transform: scale(1.03)
}

.card-body {
    padding: 16px
}

.card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: #1a1207;
    margin-bottom: 5px
}

.card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 6px
}

.card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: .72rem;
    color: #7a6b56;
    font-weight: 500
}

.card-meta .icon-sm {
    color: var(--primary)
}

.card-body>p {
    font-size: .8rem;
    color: #7a6b56;
    line-height: 1.45;
    margin-bottom: 10px
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dk));
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
    font-family: 'DM Sans', sans-serif
}

.card-btn:hover {
    box-shadow: 0 3px 10px rgba(230, 126, 34, .3)
}

/* WHY */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 32px
}

.why-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
    transition: .2s
}

.why-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .04)
}

.why-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fef3e2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px
}

.why-icon i {
    width: 20px;
    height: 20px;
    color: var(--primary)
}

.why-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    color: #1a1207;
    margin-bottom: 3px
}

.why-item p {
    font-size: .75rem;
    color: #7a6b56;
    line-height: 1.45
}

/* CONDITIONS */
.cond-row {
    text-align: center
}

.cond-row h3 {
    font-family: 'Outfit', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: #1a1207;
    margin-bottom: 12px
}

.cond-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: center
}

.cond-tags span {
    padding: 5px 14px;
    border-radius: 5px;
    font-size: .75rem;
    font-weight: 500;
    color: #5c4a32;
    background: #fff;
    border: 1px solid var(--border);
    transition: .2s;
    cursor: default
}

.cond-tags span:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary)
}

/* FAQ */
.faq-list {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 7px
}

.faq {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: .2s
}

.faq.open {
    border-color: var(--primary-lt);
    box-shadow: 0 2px 8px rgba(230, 126, 34, .04)
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: .86rem;
    font-weight: 600;
    color: #1a1207;
    font-family: 'DM Sans', sans-serif;
    text-align: left
}

.faq-q i {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    color: var(--text-m);
    transition: .3s
}

.faq.open .faq-q {
    color: var(--primary)
}

.faq.open .faq-q i {
    transform: rotate(180deg);
    color: var(--primary)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
}

.faq-a p {
    padding: 0 16px 12px;
    font-size: .82rem;
    color: #7a6b56;
    line-height: 1.55
}

/* CTA */
.cta-strip {
    background: linear-gradient(135deg, var(--primary), var(--primary-dk));
    padding: 36px 0
}

.cta-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap
}

.cta-flex h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    color: #fff;
    margin-bottom: 2px
}

.cta-flex p {
    color: rgba(255, 255, 255, .8);
    font-size: .88rem
}

.btn-white {
    padding: 10px 24px;
    background: #fff;
    color: var(--primary-dk);
    border-radius: 7px;
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
    transition: .2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    cursor: pointer
}

.btn-white:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .12)
}

/* FOOTER */
.footer {
    background: var(--bg-dark);
    padding: 36px 0 0;
    color: var(--text-m)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-desc {
    font-size: .8rem;
    line-height: 1.5;
    margin-top: 4px
}

.footer h4 {
    font-size: .76rem;
    font-weight: 700;
    color: var(--text-w);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px
}

.footer a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-m);
    text-decoration: none;
    font-size: .8rem;
    margin-bottom: 6px;
    transition: .2s;
    cursor: pointer
}

.footer a:hover {
    color: var(--primary-lt)
}

.footer-addr {
    font-size: .74rem;
    color: #8a7b6a;
    line-height: 1.4;
    margin-top: 4px
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    flex-wrap: wrap;
    gap: 8px;
    font-size: .72rem
}

.fb-links {
    display: flex;
    gap: 16px
}

.fb-links a {
    margin: 0;
    font-size: .72rem
}

/* MOBILE STICKY */
.mob-cta {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    z-index: 98;
    padding: 8px 14px;
    background: rgba(26, 18, 7, .95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, .08);
    transition: .3s;
    display: none
}

.mob-cta.show {
    bottom: 0
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .hero-grid {
        grid-template-columns: 1fr 350px;
        gap: 24px
    }
}

@media(max-width:768px) {
    .topbar {
        display: none
    }

    .nav-desktop,
    .header-flex>.btn-header {
        display: none
    }

    .hamburger {
        display: block
    }

    .nav-mobile.open {
        display: flex
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .hero-left h1 {
        font-size: 1.4rem
    }

    .hero-stats {
        justify-content: center
    }

    .hs {
        padding: 0 12px
    }

    .trust-flex {
        grid-template-columns: 1fr 1fr
    }

    .cards-grid {
        grid-template-columns: 1fr
    }

    .why-grid {
        grid-template-columns: 1fr 1fr
    }

    .cta-flex {
        flex-direction: column;
        text-align: center
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    .mob-cta {
        display: block
    }

    .whatsapp-float {
        bottom: 80px
    }
}

@media(max-width:480px) {
    .wrap {
        padding: 0 12px
    }

    .hero {
        padding: 28px 0 36px
    }

    .form-box {
        padding: 18px 12px
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .hero-stats .hs {
        padding: 0 10px
    }

    .popup-box {
        padding: 24px 18px
    }
}