
/* ==========================================
   LPT CORE CSS (RECONSTRUCTED)
   ========================================== */
:root {
    --primary: #E8613C;
    --primary-dark: #C94C29;
    --accent: #FF8F6A;
    --bg-main: #0B0B0E;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(232, 97, 60, 0.25);
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0C0;
    --text-muted: #808090;
    --gradient-primary: linear-gradient(135deg, #E8613C 0%, #FF8F6A 100%);
    --gradient-accent: linear-gradient(135deg, #FF8F6A 0%, #FFC1A1 100%);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --shadow-glow: 0 0 35px rgba(232, 97, 60, 0.2);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
body { background: var(--bg-main); color: var(--text-primary); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; }
.section { padding: 100px 0; position: relative; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 1rem;
    transition: var(--transition); border: 1px solid transparent; cursor: pointer;
}
.btn-primary {
    background: var(--gradient-primary); color: #fff; border: none;
    box-shadow: 0 8px 16px rgba(232, 97, 60, 0.2);
}
.btn-primary:hover {
    transform: translateY(-3px); box-shadow: var(--shadow-glow); filter: brightness(1.1);
}
.btn-outline {
    background: transparent; color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--primary); background: rgba(232, 97, 60, 0.05); color: var(--primary);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-subtitle { color: var(--primary); font-weight: 600; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; display: block; }
.section-title { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1.2; margin-bottom: 16px; }

/* Header */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 12px 0; transition: var(--transition); background: rgba(11, 11, 14, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-img { height: 52px; width: auto; display: block; }
.logo { margin-left: -96px; }
.nav-list { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-item { position: relative; }
.nav-link { color: var(--text-secondary); font-weight: 500; font-size: 0.95rem; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.nav-link:hover, .nav-item.active .nav-link { color: var(--primary); }
.has-dropdown .dropdown { position: absolute; top: 100%; left: 0; background: #13121a; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px 0; min-width: 240px; opacity: 0; visibility: hidden; transform: translateY(15px); transition: var(--transition); box-shadow: 0 10px 30px rgba(0,0,0,0.7); backdrop-filter: blur(20px); }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(15px); }
.dropdown li a { display: block; padding: 10px 24px; color: var(--text-secondary); font-size: 0.9rem; transition: var(--transition); }
.dropdown li a:hover { color: var(--primary); background: rgba(232, 97, 60, 0.05); padding-left: 30px; }
.nav-link-contact { background: rgba(255,255,255,0.05); padding: 10px 24px; border-radius: 20px; border: 1px solid var(--border); color: #fff; }
.nav-link-contact:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.mobile-toggle { display: none; background: transparent; border: none; cursor: pointer; height: 24px; width: 30px; position: relative; }
.mobile-toggle span { display: block; position: absolute; height: 2px; width: 100%; background: #fff; border-radius: 2px; left: 0; transition: all 0.35s cubic-bezier(0.16,1,0.3,1); }
.mobile-toggle span:nth-child(1) { top: 2px; }
.mobile-toggle span:nth-child(2) { top: 11px; }
.mobile-toggle span:nth-child(3) { top: 20px; }
.mobile-toggle.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.mobile-toggle.active span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 100px; overflow: hidden; }
.hero-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; opacity: 0.4; }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, var(--bg-main) 0%, rgba(11, 11, 14, 0.4) 100%); z-index: -1; }
.hero-inner { position: relative; z-index: 2; width: 100%; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(232, 97, 60, 0.1); border: 1px solid var(--border-light); border-radius: 30px; color: var(--accent); font-size: 0.85rem; font-weight: 600; margin-bottom: 32px; }
.badge-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 10px var(--primary); }
.hero-title { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px; }
.hero-desc { font-size: 1.15rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto 40px; line-height: 1.8; }
.hero-actions { display: flex; gap: 20px; justify-content: center; }

/* Promo Banner Modal */
.promo-banner { padding: 0 0 60px 0; z-index: 10; position: relative; }
.banner-wrapper { width: 100%; border-radius: 16px; overflow: hidden; position: relative; border: 1px solid var(--border-light); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5), var(--shadow-glow); transition: var(--transition); }
.banner-wrapper:hover { transform: translateY(-8px); box-shadow: 0 30px 50px -15px rgba(0,0,0,0.6), 0 0 40px rgba(232, 97, 60, 0.3); border-color: rgba(232, 97, 60, 0.5); }
.banner-link { display: block; width: 100%; }
.ad-banner-img { width: 100%; height: auto; display: block; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.banner-wrapper:hover .ad-banner-img { transform: scale(1.02); }

.promo-modal-overlay { position: fixed; inset: 0; background: rgba(10, 10, 15, 0.85); backdrop-filter: blur(8px); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); }
.promo-modal-overlay.active { opacity: 1; visibility: visible; }
.promo-modal-container { width: 90%; max-width: 480px; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 20px; padding: 35px 40px; position: relative; transform: scale(0.95) translateY(20px); opacity: 0; transition: var(--transition); box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8), var(--shadow-glow); }
.promo-modal-overlay.active .promo-modal-container { transform: scale(1) translateY(0); opacity: 1; }
.promo-modal-close { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text-muted); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); font-size: 20px; }
.promo-modal-close:hover { background: rgba(232, 97, 60, 0.2); color: var(--accent); transform: rotate(90deg); }
.promo-modal-content .modal-title { font-size: 1.6rem; font-weight: 700; margin-bottom: 12px; }
.promo-modal-content .modal-desc { color: var(--text-secondary); margin-bottom: 25px; line-height: 1.5; font-size: 0.95rem; }
.modal-form label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
.form-group { margin-bottom: 18px; }
.modal-form .form-input, .form-control { width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; color: #fff; transition: var(--transition); }
.modal-form .form-input:focus, .form-control:focus { outline: none; border-color: var(--border-light); background: rgba(232, 97, 60, 0.05); box-shadow: 0 0 0 3px rgba(232, 97, 60, 0.1); }

/* Footer */
/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #050508;
    padding: 72px 0 0;
    border-top: 1px solid var(--border);
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
}

/* 3-column layout */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 56px;
}
.footer-links-wrapper {
    display: contents;
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-logo-link { display: inline-block; margin-left: 0 !important; }
.footer-logo-img {
    height: 44px;
    width: auto;
    display: block;
    filter: brightness(1.1);
}
.company-name {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin: 0;
}
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 4px;
}
.footer-contact-list li {
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
}
.footer-contact-list li svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Widget columns */
.footer-widget { }
.footer-widget h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
}
.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}
.footer-links-list a {
    color: var(--text-secondary);
    font-size: 0.92rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links-list a::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.25s;
    flex-shrink: 0;
}
.footer-links-list a:hover {
    color: #fff;
    padding-left: 4px;
}
.footer-links-list a:hover::before { opacity: 1; }

/* Bottom bar */
.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ==========================================
   NEW COMPANY PROFILE SECTIONS
========================================== */

/* Typography Utils */
.gradient-title {
    font-size: 2rem;
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center {
    text-align: center;
}

/* Glass Card Global Rule */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}
.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-glow);
}

/* --- Brand Story --- */
/* ==========================================
   METRICS GRID — 2×2 Square Cards
   ========================================== */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 200px);
    gap: 20px;
    margin-top: 48px;
    justify-content: center;
}
.metric-card {
    width: 200px;
    height: 200px;
    border-radius: 28px;
}
.metric-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 20px !important;
    border-radius: 27px !important;
    height: 100%;
    background: linear-gradient(145deg, rgba(30,20,15,0.95) 0%, rgba(20,12,8,0.98) 100%) !important;
    position: relative;
    overflow: hidden;
}
.metric-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(232,97,60,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.metric-icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232,97,60,0.08);
    border: 1px solid rgba(232,97,60,0.2);
    border-radius: 16px;
    color: var(--accent);
    transition: all 0.4s ease;
    flex-shrink: 0;
}
.metric-card:hover .metric-icon-wrap {
    background: rgba(232,97,60,0.15);
    border-color: rgba(232,97,60,0.5);
    box-shadow: 0 0 20px rgba(232,97,60,0.25);
    transform: scale(1.08);
}
.metric-number-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
}
.metric-value {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}
.metric-suffix {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.85;
}
.metric-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.4;
}
.metric-bar {
    width: 70%;
    height: 3px;
    background: rgba(255,255,255,0.07);
    border-radius: 99px;
    overflow: hidden;
    margin-top: 4px;
}
.metric-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 99px;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.metric-card.in-view .metric-bar-fill {
    transform: scaleX(1);
}

@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .metric-value { font-size: 2.2rem; }
    .metric-inner { padding: 24px !important; }
}

/* ==========================================
   BRAND STORY
   ========================================== */
.brand-story {
    padding: 100px 0;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.story-content {
    max-width: 600px;
}
.story-content .section-desc {
    font-size: 1.1rem;
    margin-bottom: 24px;
}
.story-visual {
    display: flex;
    justify-content: center;
}
.story-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 300px;
    width: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(232, 97, 60, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
}
.story-icon {
    margin-bottom: 16px;
}

/* --- About Us --- */
.about-us {
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
    padding: 80px 0;
}
.about-flex {
    display: flex;
    justify-content: center;
}
.about-info {
    background: var(--bg-card);
    padding: 40px 60px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    max-width: 800px;
    width: 100%;
}
.contact-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--text-secondary);
}
.contact-list li strong {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-family: inherit;
    margin-bottom: 8px;
    display: inline-block;
}

/* --- Core Values --- */
.core-values {
    padding: 100px 0;
}
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}
.mv-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}
.mv-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.value-item {
    text-align: center;
}
.value-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.value-item h4 {
    margin-bottom: 12px;
    color: var(--text-primary);
}
.value-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* --- Target Audience --- */
.target-audience {
    padding: 100px 0;
    background: rgba(255,255,255,0.02);
}
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.audience-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary);
}
.audience-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Market & SWOT --- */
.market-swot {
    padding: 100px 0;
}
.market-analysis {
    margin-bottom: 64px;
}
.market-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.market-col h5 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 1.1rem;
}
.market-col p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.highlight-col {
    background: rgba(232, 97, 60, 0.1);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(232, 97, 60, 0.2);
}
.highlight-col h5 {
    color: var(--primary);
}

.swot-title {
    font-size: 2rem;
    margin-bottom: 48px;
}
.swot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.swot-card {
    position: relative;
    padding-top: 48px;
}
.swot-header {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 4rem;
    font-weight: 800;
    opacity: 0.1;
    line-height: 1;
}
.swot-card h4 {
    margin-bottom: 16px;
    font-size: 1.25rem;
}
.swot-card ul {
    list-style: none;
    padding: 0;
}
.swot-card ul li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}
.swot-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: inherit;
}

/* Color coding for SWOT */
.swot-card.strength { border-top: 4px solid #4CAF50; }
.swot-card.strength .swot-header, .swot-card.strength h4 { color: #4CAF50; }

.swot-card.weakness { border-top: 4px solid #FF9800; }
.swot-card.weakness .swot-header, .swot-card.weakness h4 { color: #FF9800; }

.swot-card.opportunity { border-top: 4px solid #2196F3; }
.swot-card.opportunity .swot-header, .swot-card.opportunity h4 { color: #2196F3; }

.swot-card.threat { border-top: 4px solid #F44336; }
.swot-card.threat .swot-header, .swot-card.threat h4 { color: #F44336; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .market-row, .swot-grid, .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    .about-info {
        padding: 32px;
    }
}
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .audience-grid {
        grid-template-columns: 1fr;
    }
    .story-card {
        width: 100%;
        max-width: 300px;
        border-radius: var(--radius-xl);
    }
}




/* ==========================================
   HIGH-TECH EFFECTS SYSTEM v2
   ========================================== */

/* --- Keyframes --- */
@keyframes border-rotate {
    0% { --angle: 0deg; }
    100% { --angle: 360deg; }
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes orbit-spin-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes scan-line {
    0% { top: -100%; }
    100% { top: 200%; }
}

@keyframes dot-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.15; }
}

@keyframes dot-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.8); opacity: 1; }
}

@keyframes slide-up-reveal {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes hud-flash {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* --- Scroll-triggered animation base class --- */
.anim-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Tech Background Pattern (circuit lines) --- */
.tech-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(232, 97, 60, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 97, 60, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 10%, transparent 70%);
}

.tech-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle 1px at center, rgba(232, 97, 60, 0.08) 0%, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 40%, black 20%, transparent 70%);
}

.dot-matrix-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle 1.5px at center, rgba(255, 255, 255, 0.03) 0%, transparent 1.5px);
    background-size: 24px 24px;
}

/* Make sections position: relative for bg layers */
.brand-story,
.core-values,
.target-audience,
.market-swot {
    position: relative;
    overflow: hidden;
}
.brand-story .container,
.core-values .container,
.target-audience .container,
.market-swot .container {
    position: relative;
    z-index: 1;
}

/* ==========================================
   TECH CARD — Universal animated border card
   ========================================== */
.tech-card {
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.tech-card-border {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(232, 97, 60, 0.0) 0%,
        rgba(232, 97, 60, 0.15) 25%,
        rgba(255, 155, 92, 0.3) 50%,
        rgba(232, 97, 60, 0.15) 75%,
        rgba(232, 97, 60, 0.0) 100%
    );
    background-size: 300% 300%;
    animation: border-gradient-move 6s ease infinite;
    z-index: 0;
    pointer-events: none;
}
@keyframes border-gradient-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.tech-card-inner {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border-radius: calc(var(--radius-lg) - 1px);
    padding: 32px;
    height: 100%;
}

/* Scan line effect on hover */
.tech-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -100%;
    height: 60%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(232, 97, 60, 0.03) 50%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.tech-card:hover::after {
    opacity: 1;
    animation: scan-line 1.5s linear;
}

/* Hover lift */
.tech-card:hover {
    transform: translateY(-6px);
}
.tech-card:hover .tech-card-border {
    background: linear-gradient(
        135deg,
        rgba(232, 97, 60, 0.1) 0%,
        rgba(232, 97, 60, 0.4) 25%,
        rgba(255, 155, 92, 0.6) 50%,
        rgba(232, 97, 60, 0.4) 75%,
        rgba(232, 97, 60, 0.1) 100%
    );
    background-size: 300% 300%;
    animation: border-gradient-move 3s ease infinite;
}

/* ==========================================
   BRAND STORY — Orbit System
   ========================================== */
.story-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.orbit-system {
    position: relative;
    width: 300px;
    height: 300px;
    perspective: 800px;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 120, 70, 0.06);
    box-shadow: 0 0 15px rgba(232, 97, 60, 0.04) inset, 0 0 15px rgba(232, 97, 60, 0.04);
}

.orbit-ring::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    width: 25%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 180, 120, 0.9), transparent);
    box-shadow: 0 0 12px rgba(255, 155, 92, 0.8);
    transform: translateX(-50%);
    border-radius: 5px;
}

.orbit-ring-1 {
    inset: 20%;
    animation: orbit-spin 15s linear infinite;
}
.orbit-ring-2 {
    inset: 8%;
    animation: orbit-spin-reverse 22s linear infinite;
}
.orbit-ring-2::after {
    width: 15%;
    background: linear-gradient(90deg, transparent, rgba(232, 97, 60, 0.7), transparent);
    box-shadow: 0 0 10px rgba(232, 97, 60, 0.5);
}
.orbit-ring-3 {
    inset: 0%;
    border: 1px dashed rgba(232, 97, 60, 0.15);
    box-shadow: none;
    animation: orbit-spin 30s linear infinite;
}
.orbit-ring-3::after {
    display: none;
}

.orbit-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255, 155, 92, 0.12) 0%, rgba(232, 97, 60, 0.02) 70%, transparent 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50%;
    border: 1px solid rgba(255, 160, 100, 0.25);
    box-shadow: 0 0 40px rgba(232, 97, 60, 0.2), inset 0 0 20px rgba(255, 155, 92, 0.1);
    animation: core-breathe 4s ease-in-out infinite;
    z-index: 10;
}

@keyframes core-breathe {
    0%, 100% { box-shadow: 0 0 40px rgba(232, 97, 60, 0.2), inset 0 0 20px rgba(255, 155, 92, 0.1); transform: translate(-50%, -50%) scale(1); }
    50% { box-shadow: 0 0 50px rgba(255, 155, 92, 0.35), inset 0 0 30px rgba(255, 155, 92, 0.15); transform: translate(-50%, -50%) scale(1.05); }
}

.orbit-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    margin-left: -5px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 15px 3px rgba(255, 155, 92, 0.6), 0 0 30px rgba(232, 97, 60, 0.4);
    will-change: transform;
    z-index: 5;
}

.orbit-dot.dot-1 {
    animation: orbit-path 15s linear infinite;
    --radius: 90px;
    --angle: 0deg;
}
.orbit-dot.dot-2 {
    animation: orbit-path-reverse 22s linear infinite;
    --radius: 126px;
    --angle: 120deg;
}
.orbit-dot.dot-3 {
    animation: orbit-path 30s linear infinite;
    --radius: 150px;
    --angle: 240deg;
}
.orbit-dot.dot-4 {
    animation: orbit-path-reverse 22s linear infinite;
    --radius: 126px;
    --angle: 300deg;
}

@keyframes orbit-path {
    from { transform: rotate(var(--angle)) translateX(var(--radius)) rotate(calc(-1 * var(--angle))); }
    to { transform: rotate(calc(var(--angle) + 360deg)) translateX(var(--radius)) rotate(calc(-1 * (var(--angle) + 360deg))); }
}
@keyframes orbit-path-reverse {
    from { transform: rotate(var(--angle)) translateX(var(--radius)) rotate(calc(-1 * var(--angle))); }
    to { transform: rotate(calc(var(--angle) - 360deg)) translateX(var(--radius)) rotate(calc(-1 * (var(--angle) - 360deg))); }
}

.story-label-floating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: float-y 4s ease-in-out infinite;
}

.label-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
    padding: 4px 16px;
    border: 1px solid rgba(232, 97, 60, 0.3);
    border-radius: 100px;
    background: rgba(232, 97, 60, 0.06);
}

.label-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* ==========================================
   CORE VALUES — HIGH-TECH EFFECTS
   ========================================== */

/* Canvas particles */
.cv-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}

/* Moving scanline across section */
.cv-scanline {
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(232,97,60,0.0) 10%, rgba(232,97,60,0.5) 50%, rgba(232,97,60,0.0) 90%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    animation: cv-scan 6s linear infinite;
    box-shadow: 0 0 12px 2px rgba(232,97,60,0.25);
}
@keyframes cv-scan {
    0%   { top: 0%; opacity: 0; }
    5%   { opacity: 1; }
    95%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* HUD label above title */
.cv-hud-label {
    font-size: 0.72rem;
    letter-spacing: 4px;
    color: var(--accent);
    font-family: 'Courier New', monospace;
    margin-bottom: 12px;
    opacity: 0.7;
    animation: hud-blink 3s ease infinite;
}
@keyframes hud-blink {
    0%, 90%, 100% { opacity: 0.7; }
    95% { opacity: 0.1; }
}

/* Glitch on title */
.cv-glitch-title {
    position: relative;
}
.cv-glitch-title::before,
.cv-glitch-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0; right: 0;
    overflow: hidden;
    pointer-events: none;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}
.cv-glitch-title::before {
    color: rgba(232,97,60,0.6);
    animation: glitch-top 7s step-end infinite;
    clip-path: polygon(0 0, 100% 0, 100% 38%, 0 38%);
    text-shadow: -2px 0 cyan;
}
.cv-glitch-title::after {
    color: rgba(100,200,255,0.4);
    animation: glitch-bot 7s step-end infinite;
    clip-path: polygon(0 62%, 100% 62%, 100% 100%, 0 100%);
    text-shadow: 2px 0 rgba(232,97,60,0.6);
}
@keyframes glitch-top {
    0%, 88%, 96%, 100% { transform: none; opacity: 0; }
    89% { transform: translate(-3px, -2px); opacity: 0.8; }
    92% { transform: translate(3px, 1px); opacity: 0.6; }
    94% { transform: translate(-1px, 0); opacity: 0.4; }
}
@keyframes glitch-bot {
    0%, 85%, 97%, 100% { transform: none; opacity: 0; }
    86% { transform: translate(3px, 2px); opacity: 0.7; }
    90% { transform: translate(-2px, -1px); opacity: 0.5; }
    95% { transform: translate(1px, 0); opacity: 0.3; }
}

/* ── HUD corner brackets — ALL tech-cards globally ── */
.tech-card .tech-card-inner {
    position: relative;
}
.tech-card .tech-card-inner::before,
.tech-card .tech-card-inner::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: rgba(232,97,60,0.4);
    border-style: solid;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    pointer-events: none;
    z-index: 2;
}
.tech-card .tech-card-inner::before {
    top: 10px; left: 10px;
    border-width: 2px 0 0 2px;
}
.tech-card .tech-card-inner::after {
    bottom: 10px; right: 10px;
    border-width: 0 2px 2px 0;
}
.tech-card:hover .tech-card-inner::before,
.tech-card:hover .tech-card-inner::after {
    width: 20px;
    height: 20px;
    border-color: rgba(232,97,60,0.9);
}

/* Pulsing ring on icon */
.mv-icon-wrap,
.value-icon-tech {
    position: relative;
}
.mv-icon-wrap::before,
.value-icon-tech::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    border: 1px solid rgba(232,97,60,0.25);
    animation: icon-ring-pulse 2.5s ease-out infinite;
    pointer-events: none;
}
.mv-icon-wrap::after,
.value-icon-tech::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: inherit;
    border: 1px solid rgba(232,97,60,0.1);
    animation: icon-ring-pulse 2.5s ease-out 0.6s infinite;
    pointer-events: none;
}
@keyframes icon-ring-pulse {
    0%   { transform: scale(0.85); opacity: 0.8; }
    70%  { transform: scale(1.15); opacity: 0; }
    100% { transform: scale(1.15); opacity: 0; }
}

/* Holographic shimmer on hover */
.tech-card:hover .tech-card-inner {
    background: linear-gradient(
        135deg,
        var(--bg-card) 0%,
        rgba(232,97,60,0.04) 50%,
        var(--bg-card) 100%
    );
}

/* Data readout on mv-card h3 */
.mv-card h3 {
    position: relative;
    display: inline-block;
}
.mv-card h3::after {
    content: '_';
    animation: cursor-blink 1.1s step-end infinite;
    opacity: 0;
    color: var(--accent);
}
.tech-card:hover .mv-card h3::after {
    opacity: 1;
}
@keyframes cursor-blink {
    0%, 100% { opacity: 0; }
    50%       { opacity: 1; }
}

/* ==========================================
   CORE VALUES — Enhanced Cards
   ========================================== */
.mv-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 97, 60, 0.06);
    border: 1px solid rgba(232, 97, 60, 0.12);
    border-radius: 12px;
    margin-bottom: 20px;
}

.value-icon-tech {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 97, 60, 0.06);
    border: 1px solid rgba(232, 97, 60, 0.12);
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--accent);
    transition: all 0.4s ease;
}

.tech-card:hover .value-icon-tech {
    box-shadow: 0 0 24px rgba(232, 97, 60, 0.3);
    border-color: rgba(232, 97, 60, 0.4);
    background: rgba(232, 97, 60, 0.1);
}

.value-item h4 span {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.85em;
}

/* ==========================================
   TARGET AUDIENCE — Badge & Icon Headers
   ========================================== */
.audience-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.audience-badge {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent);
    padding: 4px 12px;
    border: 1px solid rgba(232, 97, 60, 0.25);
    border-radius: 6px;
    background: rgba(232, 97, 60, 0.06);
    font-family: 'Inter', monospace;
}

.audience-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 97, 60, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(232, 97, 60, 0.1);
}

/* ==========================================
   MARKET ANALYSIS — Standalone Cards
   ========================================== */
.market-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 0;
}

.market-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-bottom: 20px;
}

.market-card .tech-card-inner h5 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.market-card .tech-card-inner p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* Highlight card — đồng nhất với các card còn lại */
.market-highlight .tech-card-inner {
    background: var(--bg-card);
}
.highlight-border {
    background: linear-gradient(
        135deg,
        rgba(232, 97, 60, 0.0) 0%,
        rgba(232, 97, 60, 0.15) 25%,
        rgba(255, 155, 92, 0.3) 50%,
        rgba(232, 97, 60, 0.15) 75%,
        rgba(232, 97, 60, 0.0) 100%
    ) !important;
    background-size: 300% 300% !important;
    animation: border-gradient-move 6s ease infinite !important;
}

.pulse-dot-indicator {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: dot-pulse 2s ease-in-out infinite;
}

/* ==========================================
   SWOT V2 — HUD Corner Brackets
   ========================================== */
.swot-card-v2 {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.swot-card-v2:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
}

/* HUD Corner Brackets */
.hud-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 2;
    pointer-events: none;
    transition: all 0.4s ease;
}
.hud-tl { top: 8px; left: 8px; border-top: 2px solid; border-left: 2px solid; border-radius: 4px 0 0 0; }
.hud-tr { top: 8px; right: 8px; border-top: 2px solid; border-right: 2px solid; border-radius: 0 4px 0 0; }
.hud-bl { bottom: 8px; left: 8px; border-bottom: 2px solid; border-left: 2px solid; border-radius: 0 0 0 4px; }
.hud-br { bottom: 8px; right: 8px; border-bottom: 2px solid; border-right: 2px solid; border-radius: 0 0 4px 0; }

.swot-card-v2:hover .hud-corner {
    width: 28px;
    height: 28px;
}

/* SWOT Letter */
.swot-letter {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0.06;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, currentColor 0%, transparent 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.4s;
}
.swot-card-v2:hover .swot-letter {
    opacity: 0.12;
}

.swot-card-v2 h4 {
    font-size: 1.15rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.swot-card-v2 h4 span {
    font-weight: 400;
    opacity: 0.7;
}

.swot-card-v2 ul {
    list-style: none;
    padding: 0;
}
.swot-card-v2 ul li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 0.92rem;
    line-height: 1.6;
}
.swot-card-v2 ul li::before {
    content: "›";
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.2em;
}

/* S = Green */
.swot-s { border-top: 3px solid #22c55e; }
.swot-s .hud-corner { border-color: #22c55e; }
.swot-s h4 { color: #4ade80; }
.swot-s .swot-letter { color: #22c55e; }
.swot-s ul li::before { color: #22c55e; }
.swot-s:hover { box-shadow: 0 0 30px rgba(34, 197, 94, 0.08); }

/* W = Amber */
.swot-w { border-top: 3px solid #f59e0b; }
.swot-w .hud-corner { border-color: #f59e0b; }
.swot-w h4 { color: #fbbf24; }
.swot-w .swot-letter { color: #f59e0b; }
.swot-w ul li::before { color: #f59e0b; }
.swot-w:hover { box-shadow: 0 0 30px rgba(245, 158, 11, 0.08); }

/* O = Blue */
.swot-o { border-top: 3px solid #3b82f6; }
.swot-o .hud-corner { border-color: #3b82f6; }
.swot-o h4 { color: #60a5fa; }
.swot-o .swot-letter { color: #3b82f6; }
.swot-o ul li::before { color: #3b82f6; }
.swot-o:hover { box-shadow: 0 0 30px rgba(59, 130, 246, 0.08); }

/* T = Red */
.swot-t { border-top: 3px solid #ef4444; }
.swot-t .hud-corner { border-color: #ef4444; }
.swot-t h4 { color: #f87171; }
.swot-t .swot-letter { color: #ef4444; }
.swot-t ul li::before { color: #ef4444; }
.swot-t:hover { box-shadow: 0 0 30px rgba(239, 68, 68, 0.08); }

/* ==========================================
   Responsive for new sections
   ========================================== */
@media (max-width: 992px) {
    .market-cards-row {
        grid-template-columns: 1fr;
    }
    .orbit-system {
        width: 240px;
        height: 240px;
    }
}
@media (max-width: 768px) {
    .orbit-system {
        width: 200px;
        height: 200px;
    }
}




/* ==========================================
   PARTNERS SECTION — High-Tech Cards
   ========================================== */
.partners-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: rgba(255,255,255,0.01);
    border-top: 1px solid var(--border);
}
.partners-section .container {
    position: relative;
    z-index: 1;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.partner-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px !important;
}

.partner-logo-wrap {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 97, 60, 0.05);
    border: 1px solid rgba(232, 97, 60, 0.12);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.tech-card:hover .partner-logo-wrap {
    box-shadow: 0 0 28px rgba(232, 97, 60, 0.25);
    border-color: rgba(232, 97, 60, 0.4);
    background: rgba(232, 97, 60, 0.1);
    transform: scale(1.08);
}

.partner-inner h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.partner-inner p {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* Trust Stats Bar */
.trust-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 36px 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.trust-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 97, 60, 0.03) 0%, transparent 50%, rgba(232, 97, 60, 0.03) 100%);
    pointer-events: none;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.trust-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.trust-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, transparent, var(--border), transparent);
}

/* Responsive */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-stats {
        flex-direction: column;
        gap: 24px;
        padding: 28px 24px;
    }
    .trust-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--border), transparent);
    }
}
@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}




/* Beautiful Solid Social Icons Styling for Footer */
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05); /* very faint white circle */
    border-radius: 50%;
    color: #fff; /* Solid white icon */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social .social-icon:hover {
    transform: translateY(-4px); /* Hover lift effect */
}

/* Brand specific hover colors */
.social-icon.facebook:hover {
    background-color: #1877F2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}
.social-icon.youtube:hover {
    background-color: #FF0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}
.social-icon.tiktok:hover {
    background-color: #000;
    /* TikTok colors glow effect */
    box-shadow: -2px 2px 8px rgba(0, 242, 254, 0.5), 2px -2px 8px rgba(254, 44, 85, 0.5); 
}
.social-icon.zalo:hover {
    background-color: #0068FF;
    box-shadow: 0 4px 12px rgba(0, 104, 255, 0.4);
}



/* ==========================================
   PROMO BANNER SECTION
   ========================================== */
.promo-banner {
    padding: 0 0 60px 0;
    position: relative;
    z-index: 10;
}

.banner-wrapper {
    width: 100%;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: rgba(232, 97, 60, 0.05);
    border: 1px solid rgba(232, 97, 60, 0.15);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5), 0 0 30px rgba(232, 97, 60, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px -15px rgba(0,0,0,0.6), 0 0 40px rgba(232, 97, 60, 0.2);
    border-color: rgba(232, 97, 60, 0.4);
}

.banner-link {
    display: block;
    width: 100%;
    height: auto;
}

.ad-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner-wrapper:hover .ad-banner-img {
    transform: scale(1.02);
}

/* ==========================================
   PROMO MODAL (POPUP)
   ========================================== */
.promo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.promo-modal-container {
    width: 90%;
    max-width: 480px;
    background: var(--bg-card);
    border: 1px solid rgba(232, 97, 60, 0.2);
    border-radius: 20px;
    padding: 35px 40px;
    position: relative;
    transform: scale(0.95) translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8), 0 0 50px rgba(232, 97, 60, 0.15);
}

.promo-modal-overlay.active .promo-modal-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.promo-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-modal-close:hover {
    background: rgba(232, 97, 60, 0.2);
    color: var(--accent);
    transform: rotate(90deg);
}

.promo-modal-content .modal-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 30px;
    background-clip: text;
}

.promo-modal-content .modal-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.modal-form .form-group {
    margin-bottom: 18px;
}

.modal-form label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.modal-form .form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modal-form .form-input:focus {
    outline: none;
    border-color: rgba(232, 97, 60, 0.5);
    background: rgba(232, 97, 60, 0.05);
    box-shadow: 0 0 0 3px rgba(232, 97, 60, 0.1);
}


