:root {
    --keria-emerald: #1e293b;
    --keria-cream: #f0f4f8;
    --keria-gold: #fbbf24;
    --text-main: #1e293b;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--keria-cream);
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    margin: 0;
    padding-top: 86px;
}

a {
    color: inherit;
}

nav {
    position: sticky;
    top: 0;
    background: rgba(240, 244, 248, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(30, 41, 59, 0.08);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(240, 244, 248, 0.95);
    backdrop-filter: blur(8px);
    z-index: 40;
    border-bottom: 1px solid rgba(30, 41, 59, 0.1);
}

.nav-logo {
    height: 48px;
    width: auto;
    display: block;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: var(--keria-emerald);
    font-size: 0.9rem;
    font-weight: 700;
}

.menu a:hover {
    opacity: 0.75;
}

/* ==============================
   Elite Nav + Hero (Homepage)
   ============================== */
.elite-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.elite-nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.elite-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.elite-brand__mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #0f172a;
    color: #fbbf24;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.elite-brand__word {
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.elite-menu {
    display: flex;
    gap: 28px;
    align-items: center;
}

.elite-menu a {
    font-size: 0.82rem;
    font-weight: 800;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.elite-menu a:hover {
    color: #f59e0b;
}

.elite-menu a.is-active {
    color: #f59e0b;
}

.elite-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 12px;
    background: #0f172a;
    color: #fff;
    text-decoration: none;
    font-size: 0.64rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    transition: background 0.2s ease, transform 0.2s ease;
}

.elite-nav__cta:hover {
    background: #f59e0b;
    color: #0f172a;
    transform: translateY(-1px);
}

.elite-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 24px 48px;
    text-align: center;
    background: #f8fafc;
}

.elite-hero__glow {
    position: absolute;
    top: -120px;
    left: 50%;
    width: min(1000px, 92vw);
    height: min(1000px, 92vw);
    transform: translateX(-50%);
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(251, 191, 36, 0.22) 0%, rgba(251, 191, 36, 0.08) 35%, rgba(248, 250, 252, 0) 70%);
    filter: blur(64px);
    pointer-events: none;
    z-index: 0;
}

.elite-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
}

.elite-hero__badge {
    width: fit-content;
    margin: 0 auto 26px;
    padding: 9px 14px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.elite-hero h1 {
    margin: 0;
    color: #0f172a;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 8vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
}

.elite-hero h1 span {
    color: #f59e0b;
}

.elite-hero p {
    max-width: 760px;
    margin: 30px auto 0;
    color: #64748b;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    font-weight: 500;
}

.elite-hero p strong {
    color: #0f172a;
    font-weight: 800;
}

.elite-hero__trust {
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.elite-hero__chips {
    display: flex;
    margin-right: 4px;
}

.elite-hero__chips span {
    width: 40px;
    height: 40px;
    margin-left: -8px;
    border: 4px solid #fff;
    border-radius: 999px;
    background: #e2e8f0;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.elite-hero__chips span:first-child {
    margin-left: 0;
}

.elite-hero__trust p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.sub-hero {
    padding: 88px 24px 24px;
    background: #f8fafc;
}

.sub-hero__inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.sub-hero__eyebrow {
    margin: 0;
    color: #94a3b8;
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.sub-hero h1 {
    margin: 14px 0 0;
    font-family: 'Playfair Display', serif;
    color: #0f172a;
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.sub-hero p {
    margin: 12px auto 0;
    color: #64748b;
    font-size: 1.05rem;
    max-width: 680px;
    line-height: 1.65;
}

.tiers-page,
.timeline-page,
.checklist-page {
    padding: 28px 24px 96px;
    background: #f8fafc;
}

.tiers-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.tier-card {
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.18);
}

.tier-card--featured {
    border-color: rgba(251, 191, 36, 0.48);
    box-shadow: 0 24px 44px rgba(15, 23, 42, 0.24);
}

.tier-card__tag {
    margin: 0;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fbbf24;
}

.tier-card h2 {
    margin: 0;
    color: #fff;
    font-size: 1.35rem;
}

.tier-card__rate {
    margin: 0;
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 700;
}

.tier-card ul {
    margin: 0;
    padding-left: 18px;
    line-height: 1.7;
    color: #cbd5e1;
    font-size: 0.92rem;
    display: grid;
    gap: 6px;
    min-height: 156px;
}

.timeline {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.timeline-step {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.35rem;
    padding: 22px 18px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.timeline-step span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: rgba(251, 191, 36, 0.18);
    color: #b45309;
    font-size: 0.8rem;
    font-weight: 900;
}

.timeline-step h2 {
    margin: 12px 0 0;
    color: #0f172a;
    font-size: 1.1rem;
}

.timeline-step p {
    margin: 8px 0 0;
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
}

.timeline-cta {
    max-width: 1180px;
    margin: 30px auto 0;
    text-align: center;
}

.checklist-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.check-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.4rem;
    padding: 24px 18px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    text-align: center;
}

.check-item__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    border-radius: 14px;
    background: #0f172a;
    color: #fbbf24;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-item h2 {
    margin: 12px 0 0;
    color: #0f172a;
    font-size: 1.08rem;
}

.check-item p {
    margin: 8px 0 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-portal {
    padding: 128px 24px 96px;
    background: #fff;
}

.contact-portal__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.contact-portal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.contact-portal__content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-portal__content h1 {
    margin: 0;
    color: #0f172a;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.contact-portal__content h1 span {
    color: #f59e0b;
}

.contact-portal__content > div > p {
    margin: 22px 0 0;
    color: #64748b;
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 620px;
}

.contact-portal__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-portal__item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.contact-portal__item:hover .contact-portal__icon {
    background: #f59e0b;
    color: #fff;
    transform: translateY(-1px);
}

.contact-portal__icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex: 0 0 auto;
    color: #0f172a;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.contact-portal__item h4 {
    margin: 0;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
}

.contact-portal__item p {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.65;
}

.contact-portal__link {
    display: inline-block;
    margin-top: 6px;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.18s ease;
}

.contact-portal__link:hover {
    color: #f59e0b;
}

.contact-portal__card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 3rem;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
    padding: 40px 48px;
    text-align: center;
}

.contact-portal__chat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    border-radius: 24px;
    background: #fbbf24;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.contact-portal__card h3 {
    margin: 0;
    color: #fff;
    font-size: 1.7rem;
}

.contact-portal__card > p {
    margin: 16px 0 32px;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.75;
}

.contact-portal__cta {
    display: block;
    width: 100%;
    padding: 22px 18px;
    border-radius: 1.25rem;
    background: #fbbf24;
    color: #0f172a;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 900;
    transition: transform 0.18s ease, background 0.18s ease;
}

.contact-portal__cta:hover {
    background: #fcd34d;
    transform: translateY(-1px);
}

.contact-portal__hours {
    margin: 22px 0 0 !important;
    color: #64748b !important;
    font-size: 0.62rem !important;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 900;
}

.contact-portal__reminder {
    margin-top: 48px;
    padding: 26px 24px;
    border-radius: 1.75rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    text-align: center;
}

.contact-portal__reminder p {
    margin: 0;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 800;
}

.contact-portal__reminder span {
    text-decoration: underline;
}

.contact-digital-footer {
    padding: 0 24px 48px;
    background: #fff;
    text-align: center;
}

.contact-digital-footer p {
    margin: 0 auto;
    max-width: 1180px;
    color: #94a3b8;
    font-size: 0.82rem;
    font-weight: 700;
}

.contact-digital-footer a {
    color: #0f172a;
    text-decoration: none;
}

.contact-digital-footer a:hover {
    color: #f59e0b;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: var(--keria-emerald);
    color: white;
    border-radius: 0 0 50px 50px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0;
}

.hero p {
    opacity: 0.85;
    max-width: 620px;
    margin: 20px auto;
    line-height: 1.6;
}

.section-copy {
    max-width: 820px;
    margin: 80px auto;
    text-align: center;
    padding: 0 20px;
}

.section-copy h2 {
    color: var(--keria-emerald);
    font-family: 'Playfair Display', serif;
}

.search-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-wrap {
    max-width: 900px;
    margin: 0 auto 12px;
}

.product-count {
    max-width: 900px;
    margin: 0 auto;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
}

.search-input {
    width: 100%;
    padding: 16px 18px;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(30, 41, 59, 0.12);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    color: var(--text-main);
}

.search-input:focus {
    border-color: #fbbf24;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.78);
    color: var(--keria-emerald);
    border: 1px solid rgba(30, 41, 59, 0.15);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--keria-emerald);
    color: #fff;
    border-color: var(--keria-emerald);
    box-shadow: 0 10px 20px rgba(30, 41, 59, 0.15);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 50px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Premium Comparison Cards */
.product-card {
    background: #fff;
    border: 1px solid rgba(30, 41, 59, 0.1);
    border-radius: 2rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(30, 41, 59, 0.1);
    border-color: var(--keria-gold);
}

.product-card--interactive {
    cursor: pointer;
}

.product-card--soldout {
    filter: grayscale(0.5);
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
}

.stock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.product-card img {
    width: 100%;
    border-radius: 1.5rem;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-meta {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 8px;
}

.category-badge {
    display: inline-block;
    background: var(--keria-gold);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 8px;
}

.category-badge--soldout {
    background: #9ca3af;
    color: #fff;
}

.product-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.price {
    font-weight: 700;
}

.btn-primary {
    background: var(--keria-emerald);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
    border: 0;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(30, 41, 59, 0.2);
}

.btn-primary--disabled,
.btn-primary--disabled:hover {
    opacity: 0.5;
    pointer-events: none;
    box-shadow: none;
    transform: none;
}

.card-btn {
    font-size: 0.7rem;
    padding: 10px 14px;
    white-space: nowrap;
}

.contact-card {
    max-width: 560px;
    margin: 40px auto 80px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(30, 41, 59, 0.1);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cart-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cart-modal.is-open {
    display: flex;
}

.cart-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(4px);
}

.cart-modal__container {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 1.5rem;
    padding: 26px;
    box-shadow: 0 28px 72px rgba(30, 41, 59, 0.35);
    max-height: calc(100vh - 40px);
    overflow: auto;
}

.cart-items {
    display: grid;
    gap: 10px;
    margin: 14px 0 18px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(30, 41, 59, 0.12);
    border-radius: 12px;
    padding: 10px 12px;
}

.cart-item__title {
    margin: 0;
    color: #1e293b;
    font-weight: 700;
}

.cart-item__meta {
    margin: 2px 0 0;
    color: #64748b;
    font-size: 0.82rem;
}

.cart-item__remove {
    border: 0;
    background: transparent;
    color: #dc2626;
    font-weight: 700;
    cursor: pointer;
}

.cart-total {
    border-top: 1px solid rgba(30, 41, 59, 0.12);
    padding-top: 12px;
    color: var(--keria-emerald);
    font-weight: 900;
    font-size: 1rem;
}

.cart-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cart-actions .btn-primary,
.cart-actions .btn-secondary {
    flex: 1;
    text-align: center;
}

.btn-secondary {
    background: #e2e8f0;
    color: #334155;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
    border: 0;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #cbd5e1;
}

.cart-fab {
    position: fixed;
    right: 20px;
    bottom: 84px;
    z-index: 1250;
}

.cart-fab.hidden {
    display: none;
}

.cart-fab__button {
    border: 0;
    border-radius: 999px;
    background: var(--keria-emerald);
    color: #fff;
    padding: 14px 18px;
    box-shadow: 0 12px 24px rgba(30, 41, 59, 0.3);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-fab__icon {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cart-fab__count {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #dc2626;
    color: #fff;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    font-weight: 800;
}

.product-modal.is-open {
    display: flex;
}

.product-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(4px);
}

.product-modal__container {
    position: relative;
    max-width: 560px;
    width: 100%;
    background: #fff;
    border-radius: 1.8rem;
    padding: 28px;
    box-shadow: 0 30px 80px rgba(30, 41, 59, 0.35);
    max-height: calc(100vh - 40px);
    overflow: auto;
}

.product-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: 0;
    background: transparent;
    font-size: 2rem;
    line-height: 1;
    color: #94a3b8;
    cursor: pointer;
}

.modal-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 14px;
}

.modal-title {
    color: var(--keria-emerald);
    font-family: 'Playfair Display', serif;
    margin: 12px 0 8px;
}

.modal-copy {
    color: #475569;
    line-height: 1.6;
    margin: 0 0 18px;
}

.modal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.modal-price {
    color: var(--keria-emerald);
    font-size: 1.5rem;
    font-weight: 900;
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1200;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
}

.site-credit {
    text-align: center;
    color: #64748b;
    font-size: 0.78rem;
    margin: 10px 0 40px;
    padding: 0 20px;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 14px;
}

.social-links a {
    color: var(--keria-emerald);
    opacity: 0.9;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: var(--keria-gold);
    transform: translateY(-2px);
}

.social-link--tiktok:hover,
.social-link--x:hover {
    color: #111827;
}

.social-link--facebook:hover {
    color: #2563eb;
}

.social-link--instagram:hover {
    color: #db2777;
}

.credit-line {
    margin: 0;
}

.copyright-line {
    margin: 4px 0 0;
    font-size: 0.72rem;
    color: #94a3b8;
}

/* ==============================
   Comparison Cards
   ============================== */
.comparison-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.comparison-card__rate {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--keria-gold);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.comparison-card__rate--muted {
    color: #9ca3af;
    font-size: 1rem;
}

.comparison-card__name {
    color: var(--keria-emerald);
    margin: 0 0 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.3;
}

.comparison-card__desc {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0 0 14px;
    line-height: 1.5;
}

.comparison-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.comparison-chip {
    display: inline-block;
    background: rgba(30, 41, 59, 0.05);
    color: var(--keria-emerald);
    border: 1px solid rgba(30, 41, 59, 0.12);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 700;
}

.comparison-card__action {
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
    display: flex;
    justify-content: flex-end;
}

.comparison-modal__rate {
    font-size: 2rem;
    font-weight: 900;
    color: var(--keria-gold);
    margin: 4px 0 16px;
    letter-spacing: -0.02em;
}

/* ==============================
   Comparison Table
   ============================== */
.loan-compare-table {
    max-width: 860px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.loan-compare-table__inner {
    background: #fff;
    border: 1px solid rgba(30, 41, 59, 0.1);
    border-radius: 2rem;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(30, 41, 59, 0.06);
}

.loan-compare-table__title {
    font-family: 'Playfair Display', serif;
    color: var(--keria-emerald);
    margin: 0 0 24px;
    font-size: 1.3rem;
    text-align: center;
}

.loan-compare-table__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.lct {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 480px;
}

.lct thead tr {
    background: var(--keria-emerald);
    color: #fff;
}

.lct thead th {
    padding: 12px 16px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.03em;
}

.lct thead th:first-child {
    text-align: left;
    border-radius: 12px 0 0 0;
}

.lct thead th:last-child {
    border-radius: 0 12px 0 0;
}

.lct tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease;
}

.lct tbody tr:last-child {
    border-bottom: none;
}

.lct tbody tr:hover {
    background: #f8fafc;
}

.lct td {
    padding: 12px 16px;
    text-align: center;
    color: #475569;
}

.lct__feature {
    text-align: left !important;
    font-weight: 700;
    color: var(--keria-emerald) !important;
    white-space: nowrap;
}

.lct__highlight {
    color: var(--keria-emerald) !important;
    font-weight: 800;
}

.loan-compare-table__footnote {
    text-align: center;
    font-size: 0.78rem;
    color: #94a3b8;
    margin: 20px 0 0;
}

/* ==============================
   Hero + Calculator Experience
   ============================== */
.hero--light {
    text-align: center;
    padding: 96px 24px 40px;
    background: transparent;
    color: #0f172a;
    border-radius: 0;
}

.hero--light h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 6vw, 4.4rem);
    line-height: 1.08;
    margin: 0;
    letter-spacing: -0.02em;
}

.hero--light h1 span {
    color: var(--keria-gold);
    text-decoration: underline;
    text-decoration-color: rgba(15, 23, 42, 0.08);
}

.hero--light p {
    max-width: 760px;
    margin: 24px auto 0;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.65;
    color: #64748b;
}

.loan-calc-section {
    padding: 96px 24px 120px;
    background: #f8fafc;
}

.loan-calc-shell {
    max-width: 1220px;
    margin: 128px auto 0;
}

.loan-calc {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 3rem;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.loan-calc__panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.loan-calc__left {
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 2.1rem;
}

.loan-calc__live-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(251, 191, 36, 0.28);
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.loan-calc__live-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #fbbf24;
    box-shadow: 0 0 0 6px rgba(251, 191, 36, 0.18);
    animation: calc-pulse 2.1s ease-in-out infinite;
}

@keyframes calc-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

.loan-calc__left-header {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.loan-calc__title {
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin: 0;
    font-size: 1.9rem;
}

.loan-calc__subtitle {
    color: rgba(148, 163, 184, 0.82);
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

.loan-calc__field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.loan-calc__field--spacious {
    gap: 18px;
}

.loan-calc__lead-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.loan-calc__label {
    font-size: 0.62rem;
    font-weight: 800;
    color: rgba(148, 163, 184, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    margin: 0;
}

.loan-calc__employer-select,
.loan-calc__input {
    width: 100%;
    padding: 16px 46px 16px 16px;
    background: rgba(30, 41, 59, 0.55);
    color: #fff;
    border: 1px solid rgba(100, 116, 139, 0.45);
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 700;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.loan-calc__employer-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fbbf24' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.loan-calc__input {
    padding-right: 16px;
}

.loan-calc__input::placeholder {
    color: rgba(148, 163, 184, 0.55);
}

.loan-calc__employer-select:hover,
.loan-calc__employer-select:focus {
    border-color: var(--keria-gold);
    background-color: rgba(30, 41, 59, 0.8);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.16);
}

.loan-calc__employer-select option {
    background: #0f172a;
    color: #fff;
    font-weight: 600;
}

.loan-calc__amount-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
}

.loan-calc__amount-value {
    color: #fff;
    font-weight: 900;
    font-size: 2.15rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

input[type=range] {
    -webkit-appearance: none;
    background: transparent;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background: #1e293b;
    border-radius: 10px;
}

.loan-calc__slider {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    appearance: none;
    background: rgba(255, 255, 255, 0.14);
    outline: none;
    cursor: pointer;
    accent-color: var(--keria-gold);
}

.loan-calc__slider:hover {
    background: rgba(255, 255, 255, 0.22);
}

.loan-calc__right {
    background: rgba(30, 41, 59, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 0;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.4rem;
}

.loan-calc__result-section {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.loan-calc__result-label {
    color: rgba(148, 163, 184, 0.82);
    font-size: 0.62rem;
    font-weight: 800;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.loan-calc__result-amount-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.loan-calc__result-value {
    color: #fff;
    font-size: clamp(2.7rem, 6vw, 5.3rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    margin: 0;
    line-height: 1;
}

.loan-calc__result-currency {
    color: rgba(148, 163, 184, 0.62);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.loan-calc__rate-note {
    color: rgba(251, 191, 36, 0.85);
    font-size: 0.78rem;
    font-style: italic;
    margin: 0.35rem 0 0;
}

.loan-calc__cash-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.2rem;
    padding-top: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.loan-calc__cash-value {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin: 0;
}

.loan-calc__term-info {
    color: rgba(148, 163, 184, 0.62);
    font-size: 0.6rem;
    margin: 0.3rem 0 0;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-weight: 700;
}

.loan-calc__apply-btn {
    width: 100%;
    font-size: 1.1rem;
    font-weight: 900;
    padding: 1.45rem 1.5rem;
    margin-top: 0.4rem;
    border-radius: 1.35rem;
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.2);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.loan-calc__apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 60px rgba(245, 158, 11, 0.32);
}

.loan-calc__status {
    margin: -0.75rem 0 0;
    min-height: 1.2rem;
    color: rgba(148, 163, 184, 0.85);
    font-size: 0.74rem;
    font-weight: 700;
}

.loan-calc__status.is-error {
    color: #fca5a5;
}

.loan-calc__status.is-success {
    color: #86efac;
}

@media (max-width: 768px) {
    body {
        padding-top: 78px;
    }

    .elite-nav__inner {
        padding: 12px 14px;
    }

    .elite-brand__word {
        font-size: 1.02rem;
    }

    .elite-menu {
        display: none;
    }

    .elite-nav__cta {
        padding: 10px 12px;
        font-size: 0.56rem;
        letter-spacing: 0.12em;
    }

    .elite-hero {
        padding: 72px 16px 26px;
    }

    .elite-hero__badge {
        margin-bottom: 18px;
    }

    .elite-hero p {
        margin-top: 20px;
    }

    .sub-hero {
        padding: 74px 16px 16px;
    }

    .tiers-page,
    .timeline-page,
    .checklist-page,
    .contact-portal {
        padding: 22px 16px 72px;
    }

    .tiers-grid,
    .timeline,
    .checklist-grid,
    .contact-portal__grid {
        grid-template-columns: 1fr;
    }

    .contact-portal__grid {
        gap: 32px;
    }

    .contact-portal__content {
        gap: 32px;
    }

    .contact-portal__card {
        padding: 30px 22px;
        border-radius: 2rem;
    }

    .tier-card ul {
        min-height: 0;
    }

    .menu {
        gap: 12px;
    }

    .menu a {
        font-size: 0.82rem;
    }

    .modal-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-actions {
        flex-direction: column;
    }

    .cart-fab {
        right: 16px;
        bottom: 76px;
    }

    .hero--light {
        padding: 72px 18px 24px;
    }

    .hero--light p {
        margin-top: 18px;
        font-size: 1rem;
    }

    .loan-calc-section {
        padding: 0 16px 88px;
    }

    .loan-calc-shell {
        margin-top: 52px;
    }

    .loan-calc {
        border-radius: 2rem;
    }

    .loan-calc__panel-grid {
        grid-template-columns: 1fr;
    }

    .loan-calc__left {
        padding: 2rem 1.4rem;
        gap: 2rem;
    }

    .loan-calc__lead-grid {
        grid-template-columns: 1fr;
    }

    .loan-calc__right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 2rem 1.4rem;
    }

    .loan-calc__result-value {
        font-size: 2.8rem;
    }

    .loan-calc__amount-value {
        font-size: 1.4rem;
    }
}
