/* FITNADO DESIGN SYSTEM & STYLES */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --b: #0256aa;
    --bd: #01478f;
    --b-gradient: linear-gradient(135deg, #0256aa 0%, #013d7a 100%);
    --bg: #f5f8fc;
    --t: #0f172a;
    --t-muted: #475569;
    --m: #64748b;
    --line: #e2e8f0;
    --star: #f59e0b;
    --font-main: 'Inter', Arial, sans-serif;
    font-family: 'Inter', Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body,
html,
input,
button,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
label,
li,
table,
div,
header,
nav,
footer,
section,
article {
    font-family: 'Inter', Arial, sans-serif;
}

/* Ensure FontAwesome & Icon fonts always render properly without font-family collision */
.fa,
.fas,
.far,
.fab,
.fal,
.fad,
.fat,
.fa-solid,
.fa-regular,
.fa-light,
.fa-thin,
.fa-duotone,
.fa-brands,
[class*="fa-"],
[class*="fa-"]::before,
[class*="fa-"]::after,
i[class*="fa"]::before,
i[class*="fa"]::after,
.bi,
[class*="bi-"],
[class*="bi-"]::before {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "FontAwesome", bootstrap-icons !important;
}

.fa-brands,
.fab,
[class*="fa-brands"]::before {
    font-family: "Font Awesome 6 Brands", "FontAwesome" !important;
}

/* Base Wrapper */
.fitnado-wrap {
    max-width: 1440px;
    margin: auto;
    padding: 0 32px;
}

@media (max-width: 991px) {
    .fitnado-wrap {
        padding: 0 16px;
    }
}

/* ========================================================
   TOP TRUST & ANNOUNCEMENT BAR
   ======================================================== */
.fitnado-topbar {
    background: #0f172a;
    color: #94a3b8;
    font-size: 12.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 7px 0;
    font-weight: 500;
}

.fitnado-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.fitnado-topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    padding: 3px 10px;
    border-radius: 9999px;
    font-size: 11.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.topbar-desc {
    color: #cbd5e1;
    font-size: 12px;
}

.fitnado-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-link {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.topbar-link:hover {
    color: #38bdf8;
    text-decoration: none;
}

.topbar-hotline {
    color: #fbbf24 !important;
    font-weight: 600;
}

.topbar-sep {
    color: #334155;
    font-size: 11px;
}

/* ========================================================
   PRO MAIN HEADER
   ======================================================== */
.fitnado-header {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 100;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04);
}

.fitnado-top {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding-top: 14px;
    padding-bottom: 14px;
}

/* Logo */
.fitnado-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.fitnado-logo:hover {
    transform: translateY(-1px);
}

.fitnado-logo .logo-text {
    font-size: 32px;
    font-weight: 600;
    font-style: italic;
    color: var(--b);
    line-height: 1;
    letter-spacing: -0.5px;
}

.fitnado-logo small {
    display: block;
    font-size: 9px;
    color: var(--m);
    letter-spacing: 0.8px;
    font-weight: 600;
    margin-top: 4px;
    font-style: normal;
}

.fitnado-logo img {
    max-height: 76px;
    width: auto;
    object-fit: contain;
}

/* Pro Search Component */
.fitnado-search-wrapper {
    flex: 1;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fitnado-search {
    display: flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 9999px;
    overflow: hidden;
    background: #f8fafc;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.fitnado-search:focus-within {
    border-color: var(--b);
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(2, 86, 170, 0.12), 0 0 0 4px rgba(2, 86, 170, 0.10);
    transform: translateY(-1px);
}

.fitnado-search-icon {
    padding-left: 18px;
    color: #94a3b8;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.fitnado-search input {
    border: 0;
    padding: 12px 14px;
    flex: 1;
    background: transparent;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--t);
}

.fitnado-search input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.btn-search-submit {
    border: 0;
    background: var(--b-gradient);
    color: #ffffff;
    padding: 10px 22px;
    margin: 3px;
    border-radius: 9999px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(2, 86, 170, 0.25);
}

.btn-search-submit:hover {
    background: linear-gradient(135deg, #01478f 0%, #013060 100%);
    box-shadow: 0 4px 12px rgba(2, 86, 170, 0.35);
    transform: scale(1.02);
}

.fitnado-search-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    padding-left: 8px;
}

.tags-label {
    color: #64748b;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.fitnado-search-tags a {
    color: #475569;
    background: #f1f5f9;
    padding: 2px 9px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.15s ease;
    font-weight: 500;
}

.fitnado-search-tags a:hover {
    color: var(--b);
    background: #e0f2fe;
}

/* Pro Header Action Hub */
.fitnado-top-action {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fitnado-action-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--t);
    transition: all 0.2s ease;
    background: transparent;
}

.fitnado-action-item:hover {
    background: #f8fafc;
    color: var(--b);
    text-decoration: none;
    transform: translateY(-1px);
}

.action-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f1f5f9;
    color: var(--b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
    position: relative;
}

.fitnado-action-item:hover .action-icon-wrap {
    background: var(--b);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(2, 86, 170, 0.25);
}

.action-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #ffffff;
}

.action-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.action-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.action-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--t);
}

.fitnado-action-item:hover .action-title {
    color: var(--b);
}

.btn-logout {
    color: #94a3b8;
    margin-left: 6px;
    padding: 4px;
    transition: color 0.15s;
}

.btn-logout:hover {
    color: #ef4444;
}

.fitnado-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--b-gradient);
    color: #ffffff !important;
    padding: 11px 20px;
    border-radius: 9999px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(2, 86, 170, 0.28);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.fitnado-btn-cta:hover {
    background: linear-gradient(135deg, #01478f 0%, #013060 100%);
    box-shadow: 0 6px 18px rgba(2, 86, 170, 0.38);
    transform: translateY(-2px);
    text-decoration: none;
}

/* ========================================================
   PRO NAVIGATION BAR (FLUID & SMOOTH)
   ======================================================== */
.fitnado-nav {
    background: var(--b-gradient);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(2, 86, 170, 0.22);
    position: sticky;
    top: 0;
    z-index: 99;
}

.fitnado-nav .fitnado-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
    font-weight: 600;
    font-size: 14px;
    height: 48px;
}

.fitnado-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    gap: 2px;
}

.fitnado-nav-list>li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.fitnado-nav-list>li>a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 38px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    padding: 0 12px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.1px;
    transition: background-color 0.18s ease, color 0.18s ease;
    white-space: nowrap;
    border-radius: 8px;
}

.fitnado-nav-list>li>a i:not(.nav-chevron) {
    font-size: 13px;
    opacity: 0.85;
}

.fitnado-nav-list>li>a .nav-chevron {
    font-size: 9px;
    margin-left: 2px;
    opacity: 0.7;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fitnado-nav-list>li:hover>a .nav-chevron {
    transform: rotate(180deg);
}

.fitnado-nav-list>li>a:hover,
.fitnado-nav-list>li.active>a {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    text-decoration: none;
}

/* Nav Dropdown Menu (Smooth transition, zero jitter) */
.fitnado-nav-list>li .dropdown-menu-fitnado {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(2, 86, 170, 0.16), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s cubic-bezier(0.16, 1, 0.3, 1), transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.18s;
    z-index: 999;
    list-style: none;
    margin: 0;
    pointer-events: none;
}

/* Invisible bridge to prevent mouse leaving hover area */
.fitnado-nav-list>li .dropdown-menu-fitnado::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 8px;
}

.fitnado-nav-list>li:hover .dropdown-menu-fitnado {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.fitnado-nav-list>li .dropdown-menu-fitnado li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fitnado-nav-list>li .dropdown-menu-fitnado li a {
    display: flex;
    align-items: center;
    padding: 9px 14px;
    color: #1e293b;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.12s ease, color 0.12s ease;
}

.fitnado-nav-list>li .dropdown-menu-fitnado li a:hover {
    background-color: #f0f7ff;
    color: var(--b);
    font-weight: 600;
}

/* Hero Section */
.fitnado-hero {
    background: linear-gradient(90deg, #f5f9ff 0%, #eef5fc 58%, #dceaf8 100%);
    overflow: hidden;
    position: relative;
}

.fitnado-heroGrid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 440px;
    align-items: center;
    gap: 36px;
    padding: 20px 0;
}

.fitnado-hero-left {
    padding: 20px 0;
}

.fitnado-hero-left small {
    color: var(--b);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    display: block;
}

.fitnado-hero h1,
.fitnado-hero .fitnado-hero-title {
    font-size: 48px;
    line-height: 1.08;
    margin: 14px 0;
    font-weight: 600;
    color: var(--t);
}

.fitnado-hero h1 span,
.fitnado-hero .fitnado-hero-title span {
    color: var(--b);
}

.fitnado-hero p {
    font-size: 15.5px;
    line-height: 1.6;
    color: #344054;
    max-width: 580px;
    margin: 0 0 25px;
}

.fitnado-actions {
    display: flex;
    gap: 14px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.fitnado-stats {
    display: flex;
    gap: 50px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.fitnado-stats-item b {
    font-size: 26px;
    display: block;
    color: var(--t);
    font-weight: 600;
    line-height: 1.2;
}

.fitnado-stats-item span {
    font-size: 13px;
    color: var(--m);
    font-weight: 600;
}

.fitnado-visual {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0f172a;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.fitnado-visual a {
    display: block;
    width: 100%;
    height: 100%;
}

.fitnado-visual img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 24px;
    transition: transform 0.5s ease;
}

.fitnado-visual:hover img {
    transform: scale(1.03);
}

.fitnado-visual .figure {
    font-size: 90px;
    line-height: 1;
    margin-bottom: 12px;
}

.fitnado-visual b {
    font-size: 26px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Category Grid */
.fitnado-cats {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
    padding: 24px 0 10px;
}

.fitnado-cat {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 14px rgba(11, 75, 132, 0.06);
    text-align: center;
    padding: 16px 8px;
    font-weight: 600;
    font-size: 13px;
    color: var(--t);
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fitnado-cat:hover {
    border-color: var(--b);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(2, 86, 170, 0.15);
    color: var(--b);
}

.fitnado-cat .ico {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fitnado-cat .ico img {
    max-height: 34px;
    max-width: 34px;
    object-fit: contain;
}

/* Section Common */
.fitnado-section {
    padding: 24px 0 32px;
}

.fitnado-sectionHead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}

.fitnado-sectionHead h2 {
    font-size: 24px;
    margin: 0;
    font-weight: 600;
    color: var(--t);
    display: flex;
    align-items: center;
    gap: 8px;
}

.fitnado-sectionHead p {
    margin: 5px 0 0;
    color: var(--m);
    font-size: 14px;
}

.fitnado-more {
    color: var(--b);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
    white-space: nowrap;
}

.fitnado-more:hover {
    color: var(--bd);
    transform: translateX(3px);
}

/* Products Grid */
.fitnado-products {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.fitnado-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 14px rgba(11, 75, 132, 0.06);
    overflow: hidden;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.fitnado-card:hover {
    border-color: rgba(2, 86, 170, 0.3);
    box-shadow: 0 10px 24px rgba(2, 86, 170, 0.12);
    transform: translateY(-4px);
}

.fitnado-card .pic {
    height: 180px;
    background: linear-gradient(145deg, #f0f4f9, #dfe8f2);
    display: grid;
    place-items: center;
    font-size: 65px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.fitnado-card .pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.3s ease;
}

.fitnado-card:hover .pic img {
    transform: scale(1.05);
}

.fitnado-cardBody {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fitnado-rating {
    color: var(--star);
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.fitnado-cardBody h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 8px 0 6px;
    line-height: 1.35;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.fitnado-cardBody h3 a {
    color: var(--t);
    text-decoration: none;
    transition: color 0.2s;
}

.fitnado-cardBody h3 a:hover {
    color: var(--b);
}

.fitnado-price {
    color: var(--b);
    font-size: 19px;
    font-weight: 600;
    margin: 4px 0 6px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.fitnado-price-old {
    font-size: 13px;
    color: var(--m);
    font-weight: normal;
    text-decoration: line-through;
}

.fitnado-cardBody small {
    color: var(--m);
    font-size: 12px;
    display: block;
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fitnado-card .fitnado-btn {
    width: 100%;
    margin-top: auto;
    padding: 10px 14px;
    font-size: 13px;
}

/* Videos / 30s Review */
.fitnado-videos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.fitnado-video {
    text-decoration: none;
    color: var(--t);
    transition: transform 0.2s;
}

.fitnado-video:hover {
    transform: translateY(-3px);
}

.fitnado-video .pic {
    height: 200px;
    background: linear-gradient(160deg, #132d44, #507ca5);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: grid;
    place-items: center;
    color: white;
}

.fitnado-video .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fitnado-video:hover .pic img {
    transform: scale(1.06);
}

.fitnado-play-badge {
    position: absolute;
    width: 44px;
    height: 44px;
    background: rgba(2, 86, 170, 0.85);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.fitnado-video:hover .fitnado-play-badge {
    transform: scale(1.15);
    background: var(--b);
}

.fitnado-video b {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--t);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.fitnado-video:hover b {
    color: var(--b);
}

/* Goals Grid */
.fitnado-goals {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.fitnado-goal {
    height: 105px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0b2135, #0256aa);
    color: white;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(11, 33, 53, 0.15);
    position: relative;
    overflow: hidden;
}

.fitnado-goal::after {
    content: "→";
    position: absolute;
    right: 14px;
    top: 14px;
    font-size: 16px;
    opacity: 0.7;
    transition: all 0.2s;
}

.fitnado-goal:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(2, 86, 170, 0.3);
    color: #ffffff;
    background: linear-gradient(135deg, #0256aa, #0876d9);
}

.fitnado-goal:hover::after {
    opacity: 1;
    transform: translateX(4px);
}

/* Compare Section */
.fitnado-compare {
    display: grid;
    grid-template-columns: 1fr 1.7fr 1fr;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.fitnado-compare-side {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fitnado-compare-side h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 6px;
}

.fitnado-compare-side .price {
    color: var(--b);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.fitnado-compare-side .pic {
    width: 140px;
    height: 140px;
    background: var(--bg);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 50px;
    overflow: hidden;
}

.fitnado-compare-side .pic img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.fitnado-compare-mid {
    background: #f8fafc;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fitnado-compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    border-bottom: 1px solid var(--line);
    padding: 10px 4px;
    font-size: 14px;
    align-items: center;
}

.fitnado-compare-row:last-child {
    border-bottom: none;
}

.fitnado-compare-row b {
    color: var(--t);
    font-weight: 600;
}

.fitnado-compare-row span {
    color: #475467;
    font-weight: 600;
}

/* Articles Grid */
/* ========================================================
   KNOWLEDGE & GUIDES PRO ARTICLE SLIDER
   ======================================================== */
.fitnado-knowledge-section {
    position: relative;
}

.fitnado-articles-slider-wrap {
    margin: 10px -8px 0;
    padding: 0 8px;
}

.owl-articles-slider .owl-stage-outer {
    padding: 10px 4px 18px 4px;
}

.fitnado-article-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.fitnado-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(2, 86, 170, 0.1);
    border-color: #93c5fd;
}

/* Article Thumb */
.article-thumb {
    position: relative;
    display: block;
    width: 100%;
    height: 175px;
    background: #f1f5f9;
    overflow: hidden;
    text-decoration: none !important;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.fitnado-article-card:hover .article-thumb img {
    transform: scale(1.08);
}

.fallback-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #94a3b8;
    background: #f8fafc;
}

/* Category Badges */
.article-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.badge-compare {
    background: #0256aa;
    color: #ffffff;
}

.badge-review {
    background: #ea580c;
    color: #ffffff;
}

.badge-guide {
    background: #16a34a;
    color: #ffffff;
}

.badge-knowledge {
    background: #7c3aed;
    color: #ffffff;
}

/* Article Body */
.article-content-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11.5px;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 8px;
}

.article-meta-row i {
    font-size: 11px;
    margin-right: 3px;
}

.article-card-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 42px;
}

.article-card-title a {
    color: #0f172a;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.article-card-title a:hover,
.fitnado-article-card:hover .article-card-title a {
    color: var(--b);
}

.article-card-desc {
    font-size: 13px;
    line-height: 1.55;
    color: #64748b;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 58px;
    flex-grow: 1;
}

.article-card-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
    margin-top: auto;
}

.article-readmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--b);
    text-decoration: none !important;
    transition: gap 0.2s ease, color 0.2s ease;
}

.article-readmore-btn:hover,
.fitnado-article-card:hover .article-readmore-btn {
    color: var(--bd);
    gap: 9px;
}

/* Slider Controls Styling */
.owl-articles-slider .owl-nav button.owl-prev,
.owl-articles-slider .owl-nav button.owl-next {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: #ffffff !important;
    border: 1px solid var(--line) !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12) !important;
    color: var(--t) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px !important;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.owl-articles-slider .owl-nav button.owl-prev {
    left: -16px;
}

.owl-articles-slider .owl-nav button.owl-next {
    right: -16px;
}

.owl-articles-slider .owl-nav button.owl-prev:hover,
.owl-articles-slider .owl-nav button.owl-next:hover {
    background: var(--b) !important;
    color: #ffffff !important;
    border-color: var(--b) !important;
    box-shadow: 0 6px 16px rgba(2, 86, 170, 0.3) !important;
}

.owl-articles-slider .owl-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.owl-articles-slider .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    border-radius: 99px;
    display: block;
    transition: all 0.3s ease;
}

.owl-articles-slider .owl-dots .owl-dot.active span {
    width: 22px;
    background: var(--b);
}

/* Newsletter */
.fitnado-newsletter {
    margin: 40px 0 50px;
    background: linear-gradient(135deg, #0f172a 0%, #0256aa 100%);
    border-radius: 20px;
    color: #ffffff;
    padding: 38px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 14px 35px rgba(2, 86, 170, 0.22);
    position: relative;
    overflow: hidden;
}

.fitnado-newsletter::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-text-wrap {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: #38bdf8;
    font-size: 11.5px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 99px;
    margin-bottom: 8px;
}

.fitnado-newsletter h2 {
    font-size: 24px;
    margin: 0 0 6px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.fitnado-newsletter p {
    margin: 0;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.5;
}

.fitnado-newsletter-form {
    display: flex;
    gap: 12px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-input-icon {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    font-size: 15px;
    pointer-events: none;
}

.fitnado-newsletter-form input {
    height: 48px;
    padding: 0 18px 0 44px;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    min-width: 320px;
    font-size: 14px;
    outline: none;
    color: #0f172a;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.fitnado-newsletter-form input:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.3);
}

.fitnado-newsletter-btn {
    height: 48px;
    padding: 0 24px;
    border-radius: 12px;
    border: none;
    background: #ffffff;
    color: #0256aa !important;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.fitnado-newsletter-btn:hover {
    background: #f0f7ff;
    color: #01478f !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

/* ========================================================
   KHOE PRO FOOTER (PRO STANDARD)
   ======================================================== */
.fitnado-footer {
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 55px 0 25px;
    color: #94a3b8;
}

.fitnado-foot {
    display: grid;
    grid-template-columns: 2.2fr 1.2fr 1.2fr 1.3fr 1.6fr;
    gap: 32px;
    margin-bottom: 40px;
}

@media (max-width: 1199px) {
    .fitnado-foot {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    .footer-col-social {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .fitnado-foot {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.footer-col-brand .fitnado-logo {
    margin-bottom: 12px;
}

.footer-col-brand .fitnado-logo .logo-text {
    color: #ffffff;
}

.footer-brand-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: #94a3b8;
    margin: 12px 0 18px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #cbd5e1;
}

.footer-contact-item i {
    color: #38bdf8;
    margin-top: 3px;
    font-size: 13px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: #38bdf8;
}

/* Footer Headings & Nav */
.footer-heading {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px;
    letter-spacing: -0.2px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: #0256aa;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links li a {
    color: #94a3b8;
    font-size: 13.5px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-links li a.link-view-all {
    color: #38bdf8;
    font-weight: 600;
    margin-top: 4px;
}

/* Footer Social & Trust */
.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0 !important;
    transition: all 0.2s ease;
}

.footer-social-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(3px);
}

.footer-social-btn.btn-fb:hover {
    background: #1877f2;
    color: #ffffff !important;
}

.footer-social-btn.btn-zl:hover {
    background: #0068ff;
    color: #ffffff !important;
}

.footer-social-btn.btn-em:hover {
    background: #0256aa;
    color: #ffffff !important;
}

.footer-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 14px;
}

.footer-trust-badge i {
    font-size: 20px;
    flex-shrink: 0;
}

.footer-trust-badge strong {
    display: block;
    color: #ffffff;
    font-size: 12.5px;
    margin-bottom: 1px;
}

.footer-trust-badge span {
    font-size: 11px;
    color: #64748b;
}

/* Powered & Copyright Bar */
.fitnado-footer-powered {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #64748b;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright-text {
    color: #94a3b8;
}

.footer-analytics-text {
    color: #94a3b8;
}

.footer-analytics-text strong {
    color: #f1f5f9;
}

/* Mobile Fixed Bottom Navigation */
.fitnado-bottom-bar {
    display: none;
}

@media (max-width: 991px) {
    .fitnado-bottom-bar {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 480px;
        background: white;
        border-top: 1px solid var(--line);
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        padding: 8px 3px;
        z-index: 999;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
    }

    .fitnado-bottom-bar a {
        text-align: center;
        font-size: 10px;
        color: #475467;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        font-weight: 600;
    }

    .fitnado-bottom-bar a span {
        display: block;
        font-size: 20px;
        line-height: 1;
    }

    .fitnado-bottom-bar a.active {
        color: var(--b);
        font-weight: 600;
    }

    body {
        padding-bottom: 60px;
    }
}

/* RESPONSIVE BREAKPOINTS (Desktop 1920, 1440, Laptop 1366, Tablet 1024, 768, Mobile 430, 390, 375, 360) */

/* Laptop / Small Desktop (1025px - 1366px) */
@media (max-width: 1366px) {
    .fitnado-products {
        grid-template-columns: repeat(4, 1fr);
    }

    .fitnado-articles {
        grid-template-columns: repeat(4, 1fr);
    }

    .fitnado-videos {
        grid-template-columns: repeat(5, 1fr);
    }

    .fitnado-hero h1 {
        font-size: 44px;
    }
}

/* Tablet Landscape (992px - 1024px) */
@media (max-width: 1024px) {
    .fitnado-cats {
        grid-template-columns: repeat(4, 1fr);
    }

    .fitnado-products {
        grid-template-columns: repeat(3, 1fr);
    }

    .fitnado-videos {
        grid-template-columns: repeat(4, 1fr);
    }

    .fitnado-goals {
        grid-template-columns: repeat(3, 1fr);
    }

    .fitnado-articles {
        grid-template-columns: repeat(3, 1fr);
    }

    .fitnado-foot {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet Portrait & Mobile (<= 991px) */
@media (max-width: 991px) {
    .fitnado-topbar {
        font-size: 11.5px;
    }

    .fitnado-topbar-right {
        display: none;
    }

    .fitnado-top {
        min-height: auto;
        padding: 10px 0;
        flex-wrap: wrap;
        gap: 12px;
    }

    .fitnado-logo img {
        max-height: 56px;
    }

    .fitnado-search-wrapper {
        order: 3;
        width: 100%;
        max-width: 100%;
    }

    .fitnado-top-action {
        gap: 8px;
    }

    .action-text-wrap,
    .fitnado-btn-cta span {
        display: none;
    }

    .fitnado-btn-cta {
        padding: 9px 12px;
        border-radius: 10px;
    }

    .fitnado-btn-cta i {
        margin: 0;
        font-size: 15px;
    }

    .fitnado-nav {
        display: none;
    }

    .fitnado-heroGrid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 24px 0 0;
    }

    .fitnado-hero-left {
        padding: 10px 0 20px;
    }

    .fitnado-hero h1 {
        font-size: 34px;
        line-height: 1.1;
    }

    .fitnado-visual {
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 18px;
        margin-bottom: 20px;
    }

    .fitnado-stats {
        margin-top: 18px;
        padding-top: 15px;
        gap: 20px;
        justify-content: space-between;
    }

    .fitnado-stats-item b {
        font-size: 20px;
    }

    /* Horizontal scroll on mobile for categories */
    .fitnado-cats {
        display: flex;
        overflow-x: auto;
        padding: 14px 0;
        gap: 10px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .fitnado-cats::-webkit-scrollbar {
        display: none;
    }

    .fitnado-cat {
        min-width: 84px;
        flex-shrink: 0;
        padding: 12px 6px;
        font-size: 12px;
    }

    /* Horizontal scroll for products */
    .fitnado-products {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 8px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .fitnado-products::-webkit-scrollbar {
        display: none;
    }

    .fitnado-card {
        min-width: 205px;
        max-width: 205px;
        flex-shrink: 0;
    }

    .fitnado-card .pic {
        height: 155px;
    }

    /* Horizontal scroll for videos */
    .fitnado-videos {
        display: flex;
        overflow-x: auto;
        gap: 11px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .fitnado-videos::-webkit-scrollbar {
        display: none;
    }

    .fitnado-video {
        min-width: 175px;
        max-width: 175px;
        flex-shrink: 0;
    }

    .fitnado-video .pic {
        height: 220px;
    }

    /* Goals 2 columns */
    .fitnado-goals {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .fitnado-goal {
        height: 95px;
        font-size: 16px;
        padding: 14px;
    }

    /* Compare mobile */
    .fitnado-compare {
        grid-template-columns: 1fr;
    }

    .fitnado-compare-mobile-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 14px;
    }

    .fitnado-compare-side {
        padding: 14px;
    }

    .fitnado-compare-mid {
        border-left: none;
        border-right: none;
        border-top: 1px solid var(--line);
        padding: 10px 14px;
    }

    /* Articles mobile */
    .fitnado-articles {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .fitnado-article {
        display: flex;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid var(--line);
        align-items: center;
    }

    .fitnado-article .pic {
        width: 105px;
        height: 75px;
        flex-shrink: 0;
        margin-bottom: 0;
        font-size: 32px;
    }

    .fitnado-article-info {
        flex: 1;
    }

    .fitnado-article b {
        font-size: 14px;
    }

    .fitnado-article p {
        margin: 4px 0 0;
        font-size: 12px;
        color: var(--m);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Newsletter mobile */
    /* Newsletter mobile */
    .fitnado-newsletter {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }

    .newsletter-text-wrap {
        max-width: 100%;
        margin-bottom: 8px;
    }

    .fitnado-newsletter-form {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .newsletter-input-group {
        width: 100%;
    }

    .fitnado-newsletter-form input {
        min-width: 0;
        width: 100%;
    }

    .fitnado-newsletter-btn {
        width: 100%;
    }

    /* Footer mobile */
    .fitnado-foot {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fitnado-footer-powered {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Small mobile (360px - 390px) */
@media (max-width: 390px) {
    .fitnado-hero h1 {
        font-size: 28px;
    }

    .fitnado-card {
        min-width: 175px;
        max-width: 175px;
    }

    .fitnado-video {
        min-width: 155px;
        max-width: 155px;
    }
}

/* ==========================================================================
   FITNADO PHASE 02: PRODUCT DETAIL & COMPARISON STYLES
   ========================================================================== */
.rounded-12 {
    border-radius: 12px !important;
}

.rounded-8 {
    border-radius: 8px !important;
}

.object-cover {
    object-fit: cover !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

.hover-bg-light:hover {
    background-color: #f8fafc !important;
}

.gap-2 {
    gap: 8px !important;
}

.gap-3 {
    gap: 16px !important;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.font-weight-800 {
    font-weight: 600 !important;
}

.font-weight-900 {
    font-weight: 600 !important;
}

.bg-light-tint {
    background-color: #f9fbfd !important;
}

/* Product Gallery */
.pro-gallery-container {
    position: sticky;
    top: 20px;
}

.pro-main-image-wrap {
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-main-image-wrap img {
    max-height: 380px;
    width: auto;
    object-fit: contain;
}

.pro-thumb-item {
    transition: all 0.2s ease;
    opacity: 0.65;
}

.pro-thumb-item:hover,
.pro-thumb-item.active {
    opacity: 1;
    border-color: var(--b) !important;
    box-shadow: 0 0 0 2px rgba(2, 86, 170, 0.25);
}

/* Comparison Matrix */
.compare-matrix-desktop {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.compare-card-title a:hover {
    color: var(--b);
}

.compare-rows .row:last-child {
    border-bottom: 0 !important;
}

/* ==========================================================================
   PHASE 02: PRODUCT DETAIL + REVIEW + COMPARISON + AFFILIATE STYLES
   ========================================================================== */

/* Main Container */
.fitnado-pro-detail {
    color: #1f2937;
    font-family: inherit;
}

/* Gallery Styling */
.pro-gallery-wrap {
    position: relative;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e5eaf0;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.pro-main-img-box {
    position: relative;
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    border: 1px solid #edf2f7;
}

.pro-main-img-box img {
    max-height: 380px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pro-main-img-box:hover img {
    transform: scale(1.03);
}

.pro-badge-stack {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 5;
}

.badge-discount-glow {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
    letter-spacing: 0.5px;
}

.badge-tested {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    font-weight: 600;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pro-score-pill {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(17, 24, 39, 0.88);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pro-score-pill .score-num {
    color: #fbbf24;
    font-size: 15px;
}

.pro-thumbs-strip {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.pro-thumb-cell {
    width: 76px;
    height: 76px;
    min-width: 76px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    padding: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-thumb-cell img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.pro-thumb-cell:hover,
.pro-thumb-cell.active {
    border-color: var(--b);
    box-shadow: 0 0 0 2px rgba(2, 86, 170, 0.2);
    background: #ffffff;
}

.pro-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed #e2e8f0;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #475467;
    font-weight: 600;
}

.trust-badge-item i {
    color: var(--b);
    font-size: 14px;
}

/* Right Column: Hero Info & Conversion */
.pro-hero-info {
    padding-left: 10px;
}

@media (max-width: 991px) {
    .pro-hero-info {
        padding-left: 0;
        margin-top: 20px;
    }
}

.pro-meta-top {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.pro-brand-tag {
    background: #eff6ff;
    color: var(--b);
    font-weight: 600;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #bfdbfe;
    text-decoration: none;
    transition: all 0.2s;
}

.pro-brand-tag:hover {
    background: var(--b);
    color: #ffffff;
}

.pro-hero-title {
    font-size: 28px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.pro-rating-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.rating-stars-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fef3c7;
    color: #92400e;
    font-weight: 600;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 6px;
}

.rating-stars-badge i {
    color: #f59e0b;
}

.review-count-link {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.review-count-link:hover {
    color: var(--b);
    text-decoration: underline;
}

/* Price Box */
.pro-price-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 18px;
}

.price-card-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.price-values-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.current-price-val {
    font-size: 30px;
    font-weight: 600;
    color: #dc2626;
    letter-spacing: -0.5px;
    line-height: 1;
}

.original-price-val {
    font-size: 16px;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: line-through;
}

.save-pill {
    background: #fee2e2;
    color: #dc2626;
    font-weight: 600;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 6px;
}

/* BEST DEAL CTA BOX */
.pro-best-deal-container {
    background: linear-gradient(135deg, #0256aa, #013b75);
    border-radius: 16px;
    padding: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px -5px rgba(2, 86, 170, 0.4);
    position: relative;
    overflow: hidden;
}

.pro-best-deal-container::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.deal-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.deal-badge-best {
    background: #fbbf24;
    color: #1e293b;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.deal-price-highlight {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.btn-best-deal-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    color: #0256aa !important;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-best-deal-cta:hover {
    background: #fbbf24;
    color: #111827 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.coupon-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.12);
    border: 1px dashed rgba(255, 255, 255, 0.3);
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 12px;
    font-size: 13px;
}

.coupon-code-tag {
    background: #ffffff;
    color: #0256aa;
    font-weight: 600;
    font-family: monospace;
    font-size: 14px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
    letter-spacing: 1px;
}

.btn-copy-code {
    background: rgba(255, 255, 255, 0.25);
    border: 0;
    color: #ffffff;
    font-weight: 600;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-copy-code:hover {
    background: #ffffff;
    color: #0256aa;
}

/* ALL AFFILIATE OFFERS LIST */
.offers-card-wrap {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 20px;
}

.offers-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.offer-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 10px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
    gap: 10px;
}

.offer-item-row:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateX(2px);
}

.offer-plat-info {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.platform-pill {
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.platform-pill.badge-shopee {
    background: #fee2e2;
    color: #ea580c;
}

.platform-pill.badge-lazada {
    background: #e0e7ff;
    color: #3730a3;
}

.platform-pill.badge-tiktok {
    background: #f1f5f9;
    color: #0f172a;
}

.platform-pill.badge-tiki {
    background: #e0f2fe;
    color: #0369a1;
}

.platform-pill.badge-official {
    background: #dcfce7;
    color: #15803d;
}

.platform-pill.badge-default {
    background: #f3f4f6;
    color: #374151;
}

.offer-seller-text {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.offer-action-group {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.offer-price-val {
    font-weight: 600;
    font-size: 15px;
    color: #0f172a;
}

.btn-visit-store {
    background: #0256aa;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-visit-store:hover {
    background: #01478f;
    box-shadow: 0 2px 8px rgba(2, 86, 170, 0.3);
}

/* Disclosure text */
.affiliate-disclosure-box {
    background: #f8fafc;
    border-left: 3px solid #94a3b8;
    padding: 10px 14px;
    border-radius: 0 8px 8px 0;
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    font-style: italic;
}

/* PROS & CONS SECTION */
.fitnado-verdict-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.verdict-heading {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.verdict-quote-box {
    background: #eff6ff;
    border-left: 4px solid var(--b);
    padding: 14px 18px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 20px;
    font-size: 14px;
    color: #1e3a8a;
    line-height: 1.6;
    font-weight: 500;
}

.pros-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 18px;
    height: 100%;
}

.pros-box h4 {
    color: #166534;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cons-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 18px;
    height: 100%;
}

.cons-box h4 {
    color: #991b1b;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verdict-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.verdict-list li {
    font-size: 13px;
    color: #334155;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.verdict-list li:last-child {
    margin-bottom: 0;
}

.best-for-card {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 14px 18px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.best-for-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f59e0b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.best-for-text strong {
    display: block;
    color: #92400e;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.best-for-text p {
    margin: 0;
    color: #78350f;
    font-size: 13px;
    font-weight: 600;
}

/* SPECIFICATIONS TABLE */
.pro-specs-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.fitnado-table-specs {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.fitnado-table-specs tr:nth-child(even) {
    background: #f8fafc;
}

.fitnado-table-specs tr:nth-child(odd) {
    background: #ffffff;
}

.fitnado-table-specs td {
    padding: 12px 18px;
    font-size: 13px;
    border-bottom: 1px solid #f1f5f9;
}

.fitnado-table-specs tr:last-child td {
    border-bottom: 0;
}

.spec-key {
    font-weight: 600;
    color: #475467;
    width: 35%;
    background: rgba(241, 245, 249, 0.5);
}

.spec-val {
    font-weight: 600;
    color: #0f172a;
}

/* HEAD-TO-HEAD COMPARISON MATRIX */
.pro-h2h-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.h2h-table-wrap {
    overflow-x: auto;
}

.table-h2h {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.table-h2h th,
.table-h2h td {
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    vertical-align: middle;
}

.table-h2h th {
    background: #f8fafc;
    font-weight: 600;
    font-size: 13px;
    color: #1e293b;
}

.table-h2h .col-feature {
    width: 25%;
    text-align: left;
    font-weight: 600;
    color: #475467;
    background: #f8fafc;
}

.table-h2h .col-current-pro {
    background: #eff6ff;
    border: 2px solid var(--b);
    position: relative;
}

/* STICKY MOBILE BUY BAR */
.fitnado-sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 10px 16px;
    display: none;
    z-index: 999;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .fitnado-sticky-mobile-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
}

.sticky-bar-info {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.sticky-bar-thumb {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    object-fit: contain;
    background: #f8fafc;
    flex-shrink: 0;
}

.sticky-bar-meta {
    min-width: 0;
}

.sticky-bar-price {
    font-size: 16px;
    font-weight: 600;
    color: #dc2626;
    line-height: 1.1;
}

.sticky-bar-plat {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

.sticky-bar-btn {
    background: #0256aa;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(2, 86, 170, 0.3);
}


/* Review Tabs */
.pro-content-tabs .nav-tabs .nav-link {
    border: 0;
    border-bottom: 2px solid transparent;
    color: var(--m);
    padding: 12px 20px;
}

.pro-content-tabs .nav-tabs .nav-link.active {
    border-bottom-color: var(--b);
    color: var(--b);
    background: transparent;
}

.pro-specs-content table {
    width: 100%;
    border-collapse: collapse;
}

.pro-specs-content table th,
.pro-specs-content table td {
    padding: 10px 14px;
    border: 1px solid var(--line);
    font-size: 14px;
}

.pro-specs-content table tr:nth-child(even) {
    background-color: var(--bg);
}

/* ========================================================
   KHOE PRO CONTACT PAGE (PRO STANDARD)
   ======================================================== */
.fitnado-contact-page {
    background-color: #f8fafc;
    min-height: 100vh;
    padding-bottom: 60px;
}

/* Breadcrumb */
.fitnado-breadcrumb-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
}

.fitnado-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: var(--t-muted);
}

.fitnado-breadcrumb a {
    color: var(--t-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.fitnado-breadcrumb a:hover {
    color: var(--b);
}

.fitnado-breadcrumb .breadcrumb-item.active {
    color: var(--t);
    font-weight: 600;
}

.fitnado-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    padding-right: 8px;
    color: #cbd5e1;
}

/* Contact Hero */
.contact-hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0256aa 100%);
    color: #ffffff;
    padding: 48px 0 44px;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(2, 86, 170, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.contact-hero-content {
    max-width: 820px;
    position: relative;
    z-index: 2;
}

.contact-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #38bdf8;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.contact-hero-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 14px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.contact-hero-desc {
    font-size: 15.5px;
    line-height: 1.65;
    color: #cbd5e1;
    margin-bottom: 24px;
}

.contact-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    color: #e2e8f0;
}

/* Contact Main Grid */
.contact-main-section {
    padding: 40px 0;
}

.contact-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 36px;
    align-items: start;
}

@media (max-width: 991px) {
    .contact-grid-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Left Column: Direct Info Cards */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-header .contact-col-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--t);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.contact-info-header .contact-col-subtitle {
    font-size: 14px;
    color: var(--t-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.contact-cards-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.contact-card-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 86, 170, 0.08);
    border-color: #93c5fd;
}

.contact-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}

.icon-address {
    background: #eff6ff;
    color: #0256aa;
}

.icon-phone {
    background: #ecfdf5;
    color: #059669;
}

.icon-email {
    background: #fff7ed;
    color: #ea580c;
}

.icon-clock {
    background: #f5f3ff;
    color: #7c3aed;
}

.contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-card-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--m);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card-value {
    font-size: 15px;
    color: var(--t);
    font-weight: 600;
    line-height: 1.4;
}

.contact-card-value a {
    color: var(--t);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-card-value a:hover {
    color: var(--b);
}

.contact-card-note {
    font-size: 12.5px;
    color: var(--t-muted);
}

/* Action Pills */
.contact-action-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-action-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-action-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn-zalo {
    background: #0068ff;
    color: #ffffff !important;
}

.btn-call {
    background: #059669;
    color: #ffffff !important;
}

.btn-facebook {
    background: #1877f2;
    color: #ffffff !important;
}

/* Editorial Trust Box */
.editorial-trust-box {
    display: flex;
    gap: 16px;
    background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
    border: 1px solid #bbf7d0;
    border-radius: 14px;
    padding: 20px;
}

.trust-box-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #16a34a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.trust-box-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: #166534;
    margin-bottom: 6px;
}

.trust-box-text p {
    font-size: 13px;
    line-height: 1.55;
    color: #1e3a8a;
    margin-bottom: 0;
}

/* Right Column: Contact Form Card */
.contact-form-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px 36px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

@media (max-width: 767px) {
    .contact-form-card {
        padding: 24px 18px;
    }
}

.form-card-header {
    margin-bottom: 24px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
}

.form-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    color: var(--b);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.form-card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--t);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.form-card-desc {
    font-size: 14px;
    color: var(--t-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon>i {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    font-size: 15px;
    pointer-events: none;
    z-index: 2;
}

.contact-input-control {
    width: 100%;
    padding: 12px 14px 12px 42px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    color: var(--t);
    transition: all 0.2s ease-in-out;
    outline: none;
}

.contact-input-control:focus {
    background: #ffffff;
    border-color: var(--b);
    box-shadow: 0 0 0 3px rgba(2, 86, 170, 0.12);
}

.contact-textarea {
    padding: 12px 14px;
    min-height: 110px;
    resize: vertical;
}

.file-upload-wrapper input[type="file"] {
    background: #f8fafc;
    border: 1.5px dashed #cbd5e1;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 13px;
}

.form-submit-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-submit-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--b-gradient);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(2, 86, 170, 0.35);
    transition: all 0.2s ease-in-out;
}

.btn-submit-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 86, 170, 0.45);
    background: linear-gradient(135deg, #01478f 0%, #002d5a 100%);
}

.btn-reset-contact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-reset-contact:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.form-privacy-note {
    font-size: 12.5px;
    color: #64748b;
}

.form-privacy-note a {
    color: var(--b);
    text-decoration: underline;
}

/* Bottom Section: Map & FAQ */
.contact-bottom-section {
    padding: 20px 0 40px;
}

.contact-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 991px) {
    .contact-bottom-grid {
        grid-template-columns: 1fr;
    }
}

.contact-map-card,
.contact-faq-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
}

.map-card-header,
.faq-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.faq-card-header {
    justify-content: flex-start;
    gap: 10px;
}

.map-direct-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--b);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.map-direct-link:hover {
    text-decoration: underline;
}

.map-card-iframe iframe {
    border-radius: 12px;
    width: 100%;
    height: 300px;
    border: 0;
}

.contact-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 16px;
}

.faq-question {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--t);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.faq-answer {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--t-muted);
    padding-left: 20px;
}

/* ========================================================
   KHOE PRO STATIC PAGE & EDITORIAL TYPOGRAPHY
   ======================================================== */
.fitnado-static-page {
    background-color: #f8fafc;
    min-height: 100vh;
    padding-bottom: 60px;
}

/* Static Hero */
.static-hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0256aa 100%);
    color: #ffffff;
    padding: 44px 0 40px;
    position: relative;
    overflow: hidden;
}

.static-hero-section::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(2, 86, 170, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.static-hero-content {
    max-width: 860px;
    position: relative;
    z-index: 2;
}

.static-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #38bdf8;
    font-size: 12.5px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.static-hero-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.static-hero-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.static-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.static-hero-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12.5px;
    color: #e2e8f0;
}

/* Static Main Grid */
.static-main-section {
    padding: 36px 0;
}

.static-grid-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

@media (max-width: 991px) {
    .static-grid-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Main Article Card */
.static-article-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 36px 40px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

@media (max-width: 767px) {
    .static-article-card {
        padding: 24px 18px;
    }
}

/* Rich Editorial Typography inside HTML body */
.static-html-body {
    color: #1e293b;
    font-size: 15.5px;
    line-height: 1.8;
}

.static-html-body h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--t);
    margin-top: 32px;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 4px solid var(--b);
    line-height: 1.35;
    letter-spacing: -0.3px;
}

.static-html-body h2:first-child {
    margin-top: 0;
}

.static-html-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-top: 24px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.static-html-body p {
    margin-bottom: 16px;
    color: #334155;
}

.static-html-body strong {
    color: #0f172a;
    font-weight: 600;
}

.static-html-body ul,
.static-html-body ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.static-html-body li {
    margin-bottom: 8px;
    color: #334155;
}

.static-html-body a {
    color: var(--b);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}

.static-html-body a:hover {
    color: var(--bd);
}

.static-html-body blockquote {
    background: #f8fafc;
    border-left: 4px solid #0256aa;
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    margin: 20px 0;
    color: #475569;
    font-style: italic;
}

.static-html-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 16px 0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.static-html-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.static-html-body table th {
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 600;
    padding: 12px 14px;
    border: 1px solid var(--line);
    text-align: left;
}

.static-html-body table td {
    padding: 12px 14px;
    border: 1px solid var(--line);
    color: #334155;
}

.static-html-body table tr:nth-child(even) td {
    background: #f8fafc;
}

/* Article Footer & Sharing */
.static-article-footer {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.article-share-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.share-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--t);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-share-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none !important;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-share-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.btn-share-fb {
    background: #1877f2;
    color: #ffffff !important;
}

.btn-share-zalo {
    background: #0068ff;
    color: #ffffff !important;
}

.btn-share-copy {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
}

.btn-share-copy:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* Sidebar Widgets */
.static-sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 90px;
}

.sidebar-card-widget {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.widget-header i {
    font-size: 18px;
}

.widget-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--t);
    margin: 0;
}

/* Widget Principles List */
.widget-principles-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.widget-principles-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
}

.widget-principles-list li>i {
    margin-top: 3px;
    font-size: 13px;
    flex-shrink: 0;
}

.widget-principles-list li strong {
    display: block;
    color: var(--t);
    font-size: 13.5px;
    margin-bottom: 2px;
}

.widget-principles-list li p {
    color: var(--t-muted);
    margin: 0;
    line-height: 1.4;
}

/* Widget Quick Links */
.widget-quick-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none !important;
    background: #f8fafc;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.quick-link-item:hover {
    background: #eff6ff;
    border-color: #bfdbfe;
    transform: translateX(3px);
}

.quick-link-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.icon-prod {
    background: #eff6ff;
    color: #0256aa;
}

.icon-rev {
    background: #fef3c7;
    color: #d97706;
}

.icon-comp {
    background: #f0fdf4;
    color: #16a34a;
}

.icon-guide {
    background: #faf5ff;
    color: #9333ea;
}

.quick-link-text {
    flex: 1;
    min-width: 0;
}

.quick-link-text strong {
    display: block;
    font-size: 13.5px;
    color: var(--t);
    margin-bottom: 1px;
}

.quick-link-text span {
    display: block;
    font-size: 11.5px;
    color: var(--t-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.quick-link-arrow {
    font-size: 11px;
    color: #94a3b8;
}

/* Widget CTA Box */
.widget-cta-box {
    background: linear-gradient(135deg, #0f172a 0%, #0256aa 100%);
    color: #ffffff;
    border: none;
}

.widget-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: #38bdf8;
    font-size: 11.5px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 99px;
    margin-bottom: 10px;
}

.widget-cta-title {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.widget-cta-desc {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 16px;
}

.widget-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-sidebar-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    color: #0256aa !important;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-sidebar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-sidebar-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 14px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background 0.2s;
}

.btn-sidebar-call:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ========================================================
   PRO ABOUT US PAGE (FITNADO / KHỎE PRO)
   ======================================================== */
.fitnado-about-page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 24px 16px 48px;
}

/* 1. Hero Section */
.about-hero-section {
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 56px 32px 48px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(2, 86, 170, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.about-hero-title {
    font-size: 38px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.about-hero-subtitle {
    font-size: 16.5px;
    color: #cbd5e1;
    max-width: 780px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 18px 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--b-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(2, 86, 170, 0.3);
}

.stat-meta {
    display: flex;
    flex-direction: column;
}

.stat-meta strong {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
}

.stat-meta span {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

/* 2. Mission & Vision */
.about-mission-section {
    margin-bottom: 40px;
}

.about-feature-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(2, 86, 170, 0.08);
    border-color: #cbd5e1;
}

.box-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.icon-blue {
    background: #e0f2fe;
    color: #0284c7;
}

.icon-green {
    background: #dcfce7;
    color: #16a34a;
}

.about-feature-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 14px;
}

.about-feature-box p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
}

/* 3. 4 Core Pillars */
.about-pillars-section {
    margin-bottom: 48px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--b);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-heading {
    font-size: 26px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.pillar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 26px 22px;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
}

.pillar-card:hover {
    border-color: var(--b);
    box-shadow: 0 8px 24px rgba(2, 86, 170, 0.1);
    transform: translateY(-4px);
}

.pillar-num {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 22px;
    font-weight: 600;
    color: #e2e8f0;
    font-family: monospace;
}

.pillar-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #f1f5f9;
    color: var(--b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
    transition: background-color 0.2s, color 0.2s;
}

.pillar-card:hover .pillar-icon {
    background: var(--b);
    color: #ffffff;
}

.pillar-card h4 {
    font-size: 16.5px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.pillar-card p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 4. Process Workflow */
.about-process-section {
    background: linear-gradient(135deg, #0256aa 0%, #013870 100%);
    border-radius: 24px;
    padding: 48px 32px;
    color: #ffffff;
    margin-bottom: 40px;
    box-shadow: 0 8px 28px rgba(2, 86, 170, 0.2);
}

.process-step {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px 20px;
    height: 100%;
    transition: background-color 0.2s, transform 0.2s;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}

.step-badge {
    display: inline-block;
    background: #fbbf24;
    color: #0f172a;
    font-size: 11.5px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 9999px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.process-step h5 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 13.5px;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 5. Dynamic Content Box */
.about-body-content {
    margin-bottom: 40px;
}

.content-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    font-size: 15px;
    line-height: 1.8;
    color: #334155;
}

.content-box h2 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-top: 24px;
    margin-bottom: 14px;
    border-left: 4px solid var(--b);
    padding-left: 12px;
}

.content-box h2:first-child {
    margin-top: 0;
}

.content-box ul,
.content-box ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

.content-box li {
    margin-bottom: 8px;
}

/* 6. CTA Box */
.about-cta-section {
    margin-bottom: 32px;
}

.cta-card {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
    border: 2px dashed #cbd5e1;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
}

.cta-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 15px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 24px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--b-gradient);
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(2, 86, 170, 0.28);
    transition: all 0.2s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(2, 86, 170, 0.38);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #334155 !important;
    border: 1px solid #cbd5e1;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.btn-cta-secondary:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: var(--b) !important;
}

/* 7. Share Block */
.about-share-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.share-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #64748b;
}

.share-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.fb {
    background: #1877f2;
}

.share-btn.tw {
    background: #000000;
}

.share-btn.zalo {
    background: #0068ff;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        padding: 36px 18px 30px;
    }

    .about-hero-title {
        font-size: 24px;
    }

    .about-hero-stats {
        grid-template-columns: 1fr;
    }

    .about-process-section {
        padding: 32px 18px;
    }

    .content-box {
        padding: 24px 18px;
    }
}