/* -------------------------------------------------------------
   FETAN TOW SHOWCASE - MODERN LANDING PAGE STYLES
   Aesthetic Replicated from ZMachine Client
-------------------------------------------------------------- */

:root {
    --bg-dark: #031525;
    --bg-dark-card: #041d33;
    --bg-dark-card-inner: #072642;
    --border-dark: rgba(255, 255, 255, 0.08);
    --gold: #EAB308;
    --gold-hover: #D9A307;
    --gold-subtle: rgba(234, 179, 8, 0.12);
    --gold-border: rgba(234, 179, 8, 0.35);
    
    --bg-light: #ffffff;
    --bg-slate-50: #f8fafc;
    --border-light: #e2e8f0;
    --border-light-hover: rgba(234, 179, 8, 0.5);
    
    --text-dark: #0f172a;
    --text-slate-muted: #64748b;
    --text-slate-light: #94a3b8;
    --text-white: #ffffff;

    --font-main: 'Inter', 'Noto Sans Ethiopic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Outfit', 'Noto Sans Ethiopic', 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 20px rgba(234, 179, 8, 0.25);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-dark);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility Colors & Text */
.text-gold {
    color: var(--gold);
}

.text-slate {
    color: var(--text-slate-light);
}

.gradient-text {
    background: linear-gradient(135deg, #EAB308 0%, #FDE047 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: all 0.2s ease-in-out;
    text-align: center;
}

.btn:active {
    transform: scale(0.96);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 14px;
    border-radius: var(--radius-lg);
}

.btn-xs {
    padding: 6px 12px;
    font-size: 11px;
    border-radius: var(--radius-sm);
}

.btn-gold {
    background-color: var(--gold);
    color: #031525;
    box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    box-shadow: var(--shadow-gold);
}

.btn-dark {
    background-color: #0b233a;
    color: #e2e8f0;
    border: 1px solid var(--border-dark);
}

.btn-dark:hover {
    background-color: #113354;
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-outline-gold {
    background: var(--gold-subtle);
    color: var(--gold);
    border: 1px solid var(--gold-border);
}

.btn-outline-gold:hover {
    background: rgba(234, 179, 8, 0.2);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    width: fit-content;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-gold {
    background: #02111e;
    color: var(--gold);
    border: 1px solid var(--gold-border);
}

.badge-gold-sm {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    width: fit-content;
    padding: 3px 10px;
    font-size: 8px;
    background: #02111e;
    color: var(--gold);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-full);
    font-weight: 800;
    letter-spacing: 0.8px;
}

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

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* =============================================================
   TOP MOVING MARQUEE BANNER (Desktop & Mobile)
============================================================= */
.top-marquee-bar {
    width: 100%;
    background: linear-gradient(90deg, #EAB308 0%, #F59E0B 50%, #EAB308 100%);
    color: #031525;
    position: relative;
    z-index: 90;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    height: 40px;
    user-select: none;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 26s linear infinite;
    will-change: transform;
}

.top-marquee-bar:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 16px;
    flex-shrink: 0;
}

.marquee-phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #031525;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.marquee-phone-pill svg {
    color: #EAB308;
    flex-shrink: 0;
}

.marquee-phone-pill:hover {
    background: #000000;
    transform: scale(1.06);
    color: #FDE047;
}

.marquee-text {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #031525;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.marquee-link {
    text-decoration: underline !important;
    font-weight: 900;
    color: #031525;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    transition: opacity 0.2s ease;
}

.marquee-link:hover {
    color: #000000;
    opacity: 0.85;
}

.marquee-sep {
    font-size: 11px;
    font-weight: 900;
    color: rgba(3, 21, 37, 0.4);
    margin: 0 2px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .top-marquee-bar {
        height: 36px;
    }
    .marquee-track {
        animation-duration: 20s;
    }
    .marquee-phone-pill {
        font-size: 10px;
        padding: 3px 9px;
    }
    .marquee-text {
        font-size: 11px;
    }
}

/* =============================================================
   DESKTOP VIEW STYLES (>= 1024px)
============================================================= */
.desktop-view {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-view {
        display: block;
    }
    .mobile-view {
        display: none !important;
    }
}

/* Header */
.header {
    background-color: var(--bg-dark);
    border-bottom: 1px solid #041d33;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Logo Box Without White Background */
.logo-box {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-img {
    height: 105px !important;
    width: auto !important;
    max-width: 340px !important;
    object-fit: contain;
    background: transparent;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.55));
}

.logo-box-sm {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-img-sm {
    height: 75px !important;
    width: auto !important;
    max-width: 220px !important;
    object-fit: contain;
    background: transparent;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.5));
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 28px;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Switcher Capsule Toggle */
.lang-switch-toggle {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-full);
    padding: 2px;
    gap: 2px;
    user-select: none;
}

.lang-btn {
    padding: 4px 11px;
    font-size: 11px;
    font-weight: 800;
    border-radius: var(--radius-full);
    color: var(--text-slate-light);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    background: transparent;
    border: none;
    line-height: 1.2;
}

.lang-btn:hover {
    color: #ffffff;
}

.lang-btn.active {
    background: var(--gold);
    color: #031525;
    font-weight: 900;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.lang-switch-sm {
    padding: 2px;
}

.lang-switch-sm .lang-btn {
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 800;
}

.nav-link {
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 60px 0 70px;
    background-color: var(--bg-dark);
    color: #ffffff;
    overflow: hidden;
}

.glow-effect {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.glow-1 {
    top: 15%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: rgba(234, 179, 8, 0.08);
}

.glow-2 {
    bottom: 10%;
    right: 15%;
    width: 350px;
    height: 350px;
    background: rgba(245, 158, 11, 0.06);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1px;
    color: #ffffff;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-slate-light);
    font-weight: 500;
    line-height: 1.65;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

/* Hero Showcase 3D Cards */
.hero-showcase {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-card {
    position: absolute;
    width: 290px;
    background: rgba(4, 29, 51, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    transition: all 0.4s ease;
}

.showcase-front {
    top: 20px;
    left: 20px;
    z-index: 2;
    transform: rotate(-3deg);
}

.showcase-front:hover {
    transform: rotate(0deg) scale(1.04);
}

.showcase-back {
    bottom: 20px;
    right: 20px;
    z-index: 1;
    transform: rotate(4deg);
    opacity: 0.9;
}

.showcase-back:hover {
    transform: rotate(0deg) scale(1.04);
    opacity: 1;
    z-index: 3;
}

.showcase-img-wrap {
    width: 100%;
    height: 175px;
    background: #061e33;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

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

.showcase-tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
}

.tag-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.tag-badge {
    font-size: 9px;
    font-weight: 800;
    padding: 2px 8px;
    background: var(--gold);
    color: #031525;
    border-radius: var(--radius-full);
}

/* =============================================================
   CATALOG SECTION (WHITE BG)
============================================================= */
.catalog-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 70px 0 90px;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 14px;
    color: var(--text-slate-muted);
    font-weight: 500;
    max-width: 500px;
    margin: 8px auto 0;
}

/* Category Filter Pills */
.category-selector-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 960px;
    margin: 0 auto 40px;
}

.scroll-btn {
    position: absolute;
    z-index: 10;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-slate-muted);
    transition: all 0.2s;
}

.scroll-btn:hover {
    color: var(--text-dark);
    border-color: #cbd5e1;
    transform: scale(1.06);
}

.scroll-btn:active {
    transform: scale(0.92);
}

.prev-btn { left: -14px; }
.next-btn { right: -14px; }

.category-pills-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 6px 36px;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.category-pills-scroll::-webkit-scrollbar {
    display: none;
}

.pill-btn {
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    border: 1px solid var(--border-light);
    background: #ffffff;
    color: var(--text-slate-muted);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.pill-btn:hover {
    border-color: #cbd5e1;
    color: var(--text-dark);
}

.pill-btn.active {
    background: var(--gold);
    color: #031525;
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (min-width: 1200px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Individual Showcase Card */
.tow-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-xl);
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tow-card:hover {
    border-color: var(--border-light-hover);
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.12);
    transform: translateY(-4px);
}

.tow-card:active {
    transform: scale(0.98);
}

.card-img-box {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--bg-slate-50);
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
    transition: background 0.2s;
}

.tow-card:hover .card-img-box {
    background: #f1f5f9;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tow-card:hover .card-img {
    transform: scale(1.06);
}

.card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--gold);
    color: #031525;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    z-index: 5;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    transition: color 0.2s;
}

.tow-card:hover .card-title {
    color: #b45309;
}

.card-tag {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-slate-muted);
}

.card-spec {
    font-size: 11px;
    color: #64748b;
    margin-top: 6px;
    line-height: 1.4;
}

.card-action-row {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

.action-label {
    font-size: 11px;
    font-weight: 700;
    color: #0284c7;
}

.action-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-slate-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.2s;
}

.tow-card:hover .action-arrow {
    background: var(--gold);
    color: #031525;
    transform: translateX(3px);
}

/* =============================================================
   FOOTER (DARK)
============================================================= */
.footer {
    background-color: var(--bg-dark);
    border-top: 1px solid #041d33;
    padding: 60px 0 40px;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-slate-muted);
    max-width: 320px;
    font-weight: 500;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    color: var(--text-slate-muted);
    margin-bottom: 2px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-slate-light);
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--gold);
}

.footer-copyright {
    text-align: right;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-slate-muted);
}

.copyright-sub {
    font-size: 10px;
    color: #475569;
    margin-top: 2px;
}

/* =============================================================
   MOBILE VIEW STYLES (< 1024px)
============================================================= */
.mobile-view {
    display: block;
    background-color: var(--bg-dark);
    color: #ffffff;
    min-height: 100vh;
}

.mobile-promo-bar {
    width: 100%;
    background-color: var(--gold);
    color: #031525;
    text-align: center;
    padding: 9px 16px;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 60;
}

.promo-link {
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-weight: 900;
}

/* Mobile Header Card */
.mobile-header-card {
    padding: 24px 20px 48px;
    background: #02111e;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.mobile-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.mobile-sub {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.7);
}

.mobile-brand-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.mobile-auth-btns {
    display: flex;
    gap: 8px;
}

.mobile-intro-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-heading {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
    color: #ffffff;
}

.mobile-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    font-weight: 500;
}

/* Mobile White Sheet */
.mobile-sheet {
    margin-top: -24px;
    background: #ffffff;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    position: relative;
    z-index: 20;
    padding: 24px 16px 0;
    color: var(--text-dark);
}

.mobile-sheet-content {
    min-height: 400px;
}

.sheet-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1e293b;
    margin-bottom: 14px;
}

.prev-btn-sm { left: -8px; width: 28px; height: 28px; }
.next-btn-sm { right: -8px; width: 28px; height: 28px; }

.mobile-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .mobile-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mobile-tow-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 10px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 145px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.mobile-tow-card:active {
    transform: scale(0.95);
    border-color: var(--gold);
}

.mobile-card-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--bg-slate-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 8px;
}

.mobile-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-card-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    background: var(--gold);
    color: #031525;
    font-size: 7px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 5;
}

.mobile-card-title {
    font-size: 11px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mobile-card-tag {
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
    margin-top: 2px;
}

/* Mobile Footer */
.mobile-footer {
    margin: 36px -16px 0;
    background: #02111e;
    color: #ffffff;
    padding: 32px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid #041d33;
}

.center-content {
    justify-content: center;
}

.mobile-footer-text {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

.mobile-contacts-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-pill {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    color: #e2e8f0;
}

.mobile-copy {
    font-size: 10px;
    color: #475569;
    font-weight: 600;
    margin-top: 8px;
}

/* Toast Popup Notification */
.toast-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #041d33;
    color: #ffffff;
    border: 1px solid var(--gold-border);
    padding: 14px 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 100;
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.toast-popup.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast-icon {
    font-size: 24px;
}

.toast-body h4 {
    font-size: 13px;
    font-weight: 800;
    color: var(--gold);
}

.toast-body p {
    font-size: 11px;
    color: #cbd5e1;
    margin-top: 2px;
}
