:root {
    --primary: #B8292F;
    --primary-dark: #8B1C21;
    --primary-light: #D94F54;
    --gold: #C9A84C;
    --gold-light: #E8CB7A;
    --dark: #1A1210;
    --dark-2: #2C1F1D;
    --mid: #5C3D38;
    --light-bg: #FAF7F2;
    --white: #FFFFFF;
    --text: #2C1F1D;
    --text-muted: #7A6560;
    --border: rgba(184, 41, 47, 0.15);
    --shadow: 0 8px 40px rgba(26, 18, 16, 0.12);
    --shadow-deep: 0 20px 60px rgba(26, 18, 16, 0.2);
    --radius: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: var(--text);
    background: var(--light-bg);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif SC', 'SimSun', serif;
    line-height: 1.3;
}
a {
    text-decoration: none;
    color: inherit;
}
/* ===== UTILITY ===== */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 90px 0;
}

.section-alt {
    background: var(--white);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

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

.section-header .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(184, 41, 47, 0.08);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.65);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 41, 47, 0.4);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.5);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
    background-size: 200% 100%;
    animation: shimmer 4s infinite linear;
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

.announcement a {
    color: var(--gold-light);
    text-decoration: none;
    margin-left: 8px;
}

/* ===== HEADER / NAV ===== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

header.scrolled {
    box-shadow: 0 4px 24px rgba(26, 18, 16, 0.1);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    max-width: 1160px;
    margin: 0 auto;
    height: 70px;
}

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

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(184, 41, 47, 0.3);
}

.logo-text {
    line-height: 1.2;
}

.logo-text strong {
    display: block;
    font-family: 'Noto Serif SC', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.logo-text span {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-links a:hover {
    background: rgba(184, 41, 47, 0.06);
    color: var(--primary);
}

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

.nav-tel {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
}

.nav-tel i {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    padding: 90px 30px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
    transform: translateX(0);
}

@media (max-width: 768px) {
    .mobile-nav {
        display: flex;
    }

    .nav-links, .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
}

.mobile-nav a i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.mobile-nav .mobile-cta {
    margin-top: 30px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(184, 41, 47, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-decor {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(184, 41, 47, 0.15);
    pointer-events: none;
}

.hero-decor::after {
    content: '';
    position: absolute;
    inset: 60px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 20px;
    max-width: 1160px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold-light);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--gold-light);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    opacity: 0.6;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat strong {
    display: block;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Noto Serif SC', serif;
    color: var(--white);
    line-height: 1;
}

.stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    display: block;
}

.stat strong em {
    color: var(--gold-light);
    font-style: normal;
}

.hero-card {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-2deg)
    }
    50% {
        transform: translateY(-16px) rotate(-2deg)
    }
}

.card-visual {
    width: 100%;
    aspect-ratio: 1.586;
    border-radius: 24px;
    background: linear-gradient(135deg, #2a1216 0%, #5c1820 40%, #8b1c21 70%, #b8292f 100%);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.card-visual::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.card-visual::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.06);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-logo-u {
    font-family: 'Noto Serif SC', serif;
    font-size: 36px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
}

.card-chip {
    width: 48px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

.card-chip::before {
    content: '';
    position: absolute;
    inset: 8px 6px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.card-number {
    font-size: 17px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 3px;
    z-index: 1;
    position: relative;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 1;
    position: relative;
}

.card-holder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-holder strong {
    display: block;
    font-size: 14px;
    color: var(--white);
    margin-top: 2px;
    letter-spacing: 2px;
}

.card-network {
    display: flex;
    gap: -8px;
}

.card-network span {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    opacity: 0.8;
}

.card-network span:first-child {
    background: rgba(255, 80, 80, 0.7);
    margin-right: -10px;
}

.card-network span:last-child {
    background: rgba(255, 180, 0, 0.7);
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.trust-item i {
    color: var(--primary);
    font-size: 18px;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img-inner {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--dark-2), var(--mid));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-img-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(184, 41, 47, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(201, 168, 76, 0.2) 0%, transparent 50%);
}

.about-icon-main {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.06);
    position: absolute;
}

.about-floating {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 30px;
}

.about-card-mini {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.about-card-mini i {
    font-size: 24px;
    color: var(--gold-light);
    margin-bottom: 8px;
    display: block;
}

.about-card-mini strong {
    font-size: 22px;
    color: var(--white);
    font-family: 'Noto Serif SC', serif;
    display: block;
}

.about-card-mini span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow-deep);
    line-height: 1.2;
    text-align: center;
    font-size: 13px;
    font-family: 'Noto Serif SC', serif;
}

.about-badge strong {
    font-size: 20px;
    display: block;
}

.about-content h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-points {
    list-style: none;
    margin-bottom: 30px;
}

.about-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.about-points li:last-child {
    border-bottom: none;
}

.about-points li i {
    color: var(--primary);
    margin-top: 3px;
}

/* ===== WHY US ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-deep);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(184, 41, 47, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon i {
    font-size: 22px;
    color: var(--primary);
}

.why-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== PRODUCTS / CARDS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-deep);
}

.product-card-top {
    padding: 32px 28px 28px;
    background: linear-gradient(135deg, var(--dark-2), var(--dark));
    position: relative;
    overflow: hidden;
}

.product-card-top::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.product-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.tag-standard {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
}

.tag-plus {
    background: rgba(201, 168, 76, 0.2);
    color: var(--gold-light);
}

.tag-premium {
    background: rgba(184, 41, 47, 0.3);
    color: #ff9999;
}

.product-card-top h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.product-card-top p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.product-price {
    margin-top: 20px;
    font-family: 'Noto Serif SC', serif;
}

.product-price .amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
}

.product-price .unit {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 4px;
}

.product-card-body {
    padding: 24px 28px;
}

.product-features {
    list-style: none;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li i {
    color: var(--primary);
    font-size: 13px;
    flex-shrink: 0;
}

.product-cta {
    padding: 0 28px 28px;
}

.product-cta .btn {
    width: 100%;
    justify-content: center;
}

/* ===== PROCESS ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--primary), var(--border));
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 12px;
}

.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
    position: relative;
}

.step-num i {
    font-size: 26px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.process-step:hover .step-num {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 8px rgba(184, 41, 47, 0.1);
}

.process-step:hover .step-num i {
    color: var(--white);
}

.step-index {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    transition: all 0.3s;
}

.testimonial:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Noto Serif SC', serif;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 14px;
    color: var(--white);
}

.author-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== ARTICLES ===== */
.articles-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
}

.article-featured {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.article-featured:hover {
    box-shadow: var(--shadow-deep);
    transform: translateY(-4px);
}

.article-img {
    width: 100%;
    aspect-ratio: 2;
    background: linear-gradient(135deg, var(--dark-2), var(--mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.article-img-icon {
    position: absolute;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.04);
}

.article-cat {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
}

.article-body {
    padding: 28px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.article-meta i {
    color: var(--primary);
}

.article-featured h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.article-featured h3 a {
    text-decoration: none;
    color: var(--dark);
}

.article-featured h3 a:hover {
    color: var(--primary);
}

.article-featured p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 16px;
}

.read-more:hover {
    gap: 10px;
}

.articles-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-mini {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border);
    display: flex;
    gap: 16px;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.article-mini:hover {
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.article-mini-img {
    width: 64px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--dark-2), var(--mid));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.article-mini-img img{
    width:100%;
    object-fit:cover
}
.article-mini-img i {
    color: rgba(255, 255, 255, 0.3);
    font-size: 24px;
}

.article-mini-body {
    flex: 1;
    min-width: 0;
}

.article-mini-cat {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary);
    text-transform: uppercase;
}

.article-mini h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 4px 0;
    line-height: 1.4;
}

.article-mini span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    font-family: 'Noto Sans SC', sans-serif;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(184, 41, 47, 0.03);
}

.faq-question.active {
    color: var(--primary);
    background: rgba(184, 41, 47, 0.04);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.9;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.cta-banner h2 {
    font-size: clamp(24px, 4vw, 36px);
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cta-banner .btn-group {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ===== CONTACT ===== */
.contact-grid {
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border);

}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(184, 41, 47, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary);
    font-size: 17px;
}

.contact-list strong {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-list span {
    font-size: 15px;
    font-weight: 500;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border);
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: var(--light-bg);
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* ===== PARTNERS ===== */
.partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.partner-logo:hover {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.2);
}

.partner-logo i {
    font-size: 20px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
}

.footer-main {
    padding: 70px 0 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 20px;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-col h5 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
}

.footer-icp a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.footer-icp a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ===== BACK TO TOP ===== */
.back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 16px rgba(184, 41, 47, 0.4);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(10px);
    z-index: 99;
}

.back-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .process-steps::before {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-card {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .about-floating {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .partners-row {
        gap: 20px;
    }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* DOWNLOAD BUTTONS */
/* HERO */
.hero-dl {
    position: relative;
    overflow: hidden;
    padding: 90px 0 80px;
    background: var(--dark);
}

.hero-dl::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 70% at 75% 50%, rgba(184, 41, 47, 0.2) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 15% 70%, rgba(201, 168, 76, 0.08) 0%, transparent 55%);
}

.hero-dl .hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-dl .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--gold-light);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.hero-dl h1 {
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 18px;
}

.hero-dl h1 em {
    color: var(--gold-light);
    font-style: normal;
}

.hero-dl .hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 36px;
    line-height: 1.9;
}
.dl-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dl-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-radius: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dl-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.3s;
}

.dl-btn:hover::after {
    background: rgba(255, 255, 255, 0.05);
}

.dl-btn:hover {
    transform: translateY(-3px);
}

.dl-btn-ios {
    background: linear-gradient(135deg, #1c1c1e, #2c2c2e);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.dl-btn-ios:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

.dl-btn-google {
    background: linear-gradient(135deg, #1a2535, #1e3a5f);
    border: 1px solid rgba(66, 133, 244, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.dl-btn-google:hover {
    box-shadow: 0 14px 40px rgba(66, 133, 244, 0.2);
}

.dl-btn-apk {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border: 1px solid rgba(184, 41, 47, 0.4);
    box-shadow: 0 8px 30px rgba(184, 41, 47, 0.25);
}

.dl-btn-apk:hover {
    box-shadow: 0 14px 40px rgba(184, 41, 47, 0.4);
}

.dl-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.dl-btn-ios .dl-icon {
    color: #f5f5f7;
}

.dl-btn-google .dl-icon {
    color: #4285f4;
}

.dl-btn-apk .dl-icon {
    color: rgba(255, 255, 255, 0.9);
}

.dl-text {
    flex: 1;
}

.dl-text small {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.dl-text strong {
    display: block;
    font-size: 17px;
    color: var(--white);
    font-weight: 600;
}

.dl-text span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}

.dl-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

/* VERSION INFO */
.version-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.version-item {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    gap: 5px;
}

.version-item i {
    color: rgba(255, 255, 255, 0.2);
}

/* PHONE MOCKUP */
.phone-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 41, 47, 0.25) 0%, transparent 70%);
    filter: blur(40px);
}

.phone {
    position: relative;
    z-index: 1;
    width: 240px;
    background: linear-gradient(145deg, #2a2a2c, #1a1a1c);
    border-radius: 44px;
    padding: 14px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    animation: phoneFloat 5s ease-in-out infinite;
}

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

.phone-notch {
    width: 80px;
    height: 26px;
    background: #111;
    border-radius: 13px;
    margin: 0 auto 12px;
    position: relative;
}

.phone-notch::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1c1c1e;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.phone-screen {
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 9/19;
    position: relative;
}
.phone-screen img{
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-top: 20px;
}

/* WARNING SECTION */
.warning-section {
    background: linear-gradient(135deg, #1a0c0a, #2c1210);
    border-top: 1px solid rgba(184, 41, 47, 0.2);
    border-bottom: 1px solid rgba(184, 41, 47, 0.2);
    padding: 70px 0;
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

.warning-icon-main {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(184, 41, 47, 0.2);
    border: 1px solid rgba(184, 41, 47, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.warning-header h2 {
    font-size: clamp(20px, 3vw, 30px);
    color: var(--white);
}

.warning-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.warning-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px;
}

.warning-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(184, 41, 47, 0.2);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.warning-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(184, 41, 47, 0.4);
}

.warning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(184, 41, 47, 0.6), transparent);
}

.warning-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(184, 41, 47, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.warning-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.warning-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.85;
}

.warning-card .tag-danger {
    display: inline-block;
    margin-top: 12px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(184, 41, 47, 0.2);
    color: var(--primary-light);
    padding: 3px 12px;
    border-radius: 20px;
}

/* OFFICIAL ONLY */
.official-banner {
    margin-top: 40px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.official-banner i {
    font-size: 32px;
    color: var(--gold);
    flex-shrink: 0;
}

.official-banner-text {
    flex: 1;
    min-width: 200px;
}

.official-banner-text strong {
    display: block;
    font-size: 16px;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.official-banner-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.official-domain {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.domain-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--white);
    font-weight: 500;
}

.domain-tag i {
    color: var(--gold);
}

/* FEATURES */
.features-section {
    background: var(--dark);
    padding: 80px 0;
}

.features-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    background: rgba(201, 168, 76, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.features-section h2 {
    font-size: clamp(24px, 3.5vw, 38px);
    color: var(--white);
    margin-bottom: 14px;
}

.features-section .sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 20px;
}

.feat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    transition: all 0.3s;
}

.feat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-4px);
}

.feat-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.feat-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.feat-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
}

/* QR SECTION */
.qr-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.qr-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.qr-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.qr-text {
    flex: 1;
    min-width: 260px;
}

.qr-text h2 {
    font-size: clamp(22px, 3vw, 34px);
    color: var(--white);
    margin-bottom: 14px;
}

.qr-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.85;
    max-width: 480px;
}

.qr-boxes {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.qr-box {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    width: 130px;
}

.qr-placeholder {
    width: 90px;
    height: 90px;
    background: var(--white);
    border-radius: 8px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.qr-placeholder i {
    font-size: 36px;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.qr-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 6px, rgba(0, 0, 0, 0.06) 6px, rgba(0, 0, 0, 0.06) 7px),
    repeating-linear-gradient(90deg, transparent, transparent 6px, rgba(0, 0, 0, 0.06) 6px, rgba(0, 0, 0, 0.06) 7px);
}

.qr-box span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    display: block;
}

.qr-box small {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-top: 3px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-dl .hero-grid {
        grid-template-columns:1fr;
    }

    .phone-wrap {
        display: none;
    }

    .warning-grid {
        grid-template-columns:1fr 1fr;
    }

    .features-grid {
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width: 600px) {
    .warning-grid {
        grid-template-columns:1fr;
    }

    .features-grid {
        grid-template-columns:1fr 1fr;
    }

    .qr-inner {
        flex-direction: column;
        text-align: center;
    }

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



/* Tags */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    font-size: 12px;
    padding: 5px 13px;
    border-radius: 20px;
    background: var(--light-bg);
    color: var(--text-muted);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
}

.tag-item:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
