@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
    --blue: #5B8BDF;
    --violet: #8B5CF6;
    --pink: #E5177B;
    --dark: #1A1A2E;
    --text: #2D3748;
    --muted: #718096;
    --light: #F0F4FF;
    --white: #FFFFFF;
    --card: #FFFFFF;
    --border: rgba(91, 139, 223, 0.15);

    --grad: linear-gradient(135deg, #5B8BDF 0%, #8B5CF6 50%, #E5177B 100%);
    --grad-soft: linear-gradient(135deg, rgba(91, 139, 223, 0.12) 0%, rgba(139, 92, 246, 0.10) 50%, rgba(229, 23, 123, 0.08) 100%);
    --grad-hero: linear-gradient(135deg, #1A1A2E 0%, #2D1B69 40%, #4A0E2E 100%);
    --grad-blue: linear-gradient(135deg, #5B8BDF, #8B5CF6);
    --grad-pink: linear-gradient(135deg, #8B5CF6, #E5177B);

    --shadow-sm: 0 2px 8px rgba(91, 139, 223, 0.12);
    --shadow-md: 0 8px 30px rgba(91, 139, 223, 0.18);
    --shadow-lg: 0 20px 60px rgba(91, 139, 223, 0.25);
    --shadow-card: 0 4px 20px rgba(26, 26, 46, 0.08);

    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-full: 999px;

    --font-head: 'Poppins', sans-serif;
    --font-body: 'Manrope', sans-serif;

    --nav-h: 100px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ─── Scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--grad);
    border-radius: 3px;
}

/* ─── Typography ────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

/* ─── Container ─────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ─── Gradient Text ──────────────────────────────────────── */
.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(229, 23, 123, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(229, 23, 123, 0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--blue);
    color: var(--blue);
}

.btn-outline:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 9px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ─── Badges ─────────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: var(--font-head);
}

.badge-grad {
    background: var(--grad);
    color: white;
}

.badge-soft {
    background: var(--grad-soft);
    border: 1px solid var(--border);
    color: var(--violet);
}

.badge-blue {
    background: rgba(91, 139, 223, 0.12);
    color: var(--blue);
}

.badge-pink {
    background: rgba(229, 23, 123, 0.1);
    color: var(--pink);
}

/* ─── Section Headers ─────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 12px;
    font-family: var(--font-head);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 600px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-sub {
    margin: 0 auto;
}

/* ─── Cards ─────────────────────────────────────────────── */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-grad {
    background: var(--grad-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.card-grad:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* ─── Icon Box ───────────────────────────────────────────── */
.icon-box {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.icon-box-soft {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--grad-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

/* ─── Divider ────────────────────────────────────────────── */
.divider {
    height: 4px;
    width: 60px;
    background: var(--grad);
    border-radius: 2px;
    margin: 16px 0;
}

.divider-center {
    margin: 16px auto;
}

/* ─── Sections ───────────────────────────────────────────── */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--light);
}

.section-white {
    background: var(--white);
}

.section-dark {
    background: var(--dark);
}

/* ─── Page Hero Banner ─────────────────────────────────── */
.page-hero {
    padding: 120px 0 80px;
    background: var(--grad-hero);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: white;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
}

.page-hero-badge {
    margin-bottom: 20px;
}

/* ──────────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: var(--transition);
    padding: 0;
}

.navbar.transparent {
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(91, 139, 223, 0.12);
    border-bottom: 1px solid var(--border);
}

.navbar.dark-nav {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo img {
    height: 90px;
    width: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    color: var(--dark);
    position: relative;
}

.navbar.transparent .nav-links a,
.navbar.dark-nav .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}

.nav-links a:hover {
    color: var(--violet);
    background: rgba(139, 92, 246, 0.08);
}

.navbar.transparent .nav-links a:hover,
.navbar.dark-nav .nav-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.12);
}

.nav-links a.active {
    color: var(--violet);
}

.navbar.transparent .nav-links a.active,
.navbar.dark-nav .nav-links a.active {
    color: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-actions .btn-sm {
    padding: 9px 18px;
    font-size: 0.84rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    border: none;
    background: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.transparent .hamburger span,
.navbar.dark-nav .hamburger span {
    background: white;
}

.navbar.scrolled .hamburger span {
    background: var(--dark);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(26, 26, 46, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 120px;
    padding-bottom: 40px;
    overflow-y: auto;
    gap: 16px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    padding: 10px 20px;
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--violet);
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

/* ──────────────────────────────────────────────────────────
   HOME HERO
───────────────────────────────────────────────────────── */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(26, 26, 46, 0.90) 0%,
            rgba(45, 27, 105, 0.82) 40%,
            rgba(74, 14, 46, 0.78) 70%,
            rgba(26, 26, 46, 0.88) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: calc(var(--nav-h) + 40px) 0 80px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hero-date-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    color: white;
    font-size: 0.88rem;
    font-family: var(--font-head);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-date-chip .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grad);
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.hero-venue {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 36px;
}

.hero-venue svg {
    color: var(--violet);
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    max-width: 700px;
}

.hero-stat {
    padding: 20px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
}

.hero-stat-num {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* ──────────────────────────────────────────────────────────
   QUICK INFO STRIP (Homepage only)
───────────────────────────────────────────────────────── */
.info-strip {
    background: var(--grad);
    padding: 18px 0;
    overflow: hidden;
}

.info-strip-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
}

.info-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 0.9rem;
    flex-shrink: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* ──────────────────────────────────────────────────────────
   VISION & MISSION (Homepage)
───────────────────────────────────────────────────────── */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.vm-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.vm-card-vision {
    background: var(--grad);
    color: white;
}

.vm-card-mission {
    background: var(--dark);
    color: white;
}

.vm-card-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 12px;
    font-family: var(--font-head);
}

.vm-card h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.vm-card p {
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.8;
}

.vm-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.vm-bullet-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.vm-bullet-dot::after {
    content: '✓';
    font-size: 0.7rem;
    color: white;
    font-weight: 700;
}

.vm-card-mission .vm-bullet-dot {
    background: linear-gradient(135deg, var(--violet), var(--pink));
}

.vm-bullet p {
    opacity: 0.85;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────
   HOME: WHY PAINTECH STRIP
───────────────────────────────────────────────────────── */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.highlight-card {
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad);
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.highlight-card:nth-child(2)::before {
    background: var(--grad-blue);
}

.highlight-card:nth-child(3)::before {
    background: var(--grad-pink);
}

.highlight-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.highlight-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ──────────────────────────────────────────────────────────
   HOME: EXHIBITORS PREVIEW
───────────────────────────────────────────────────────── */
.cta-band {
    background: var(--grad);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M40 0l40 40-40 40L0 40z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-band>.container {
    position: relative;
    z-index: 1;
}

.cta-band h2 {
    color: white;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 16px;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 32px;
}

.cta-band .btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ──────────────────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────────────────── */
.track-record-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.record-num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.record-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    margin-top: 8px;
}

.fci-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    max-width: 700px;
    margin-top: 32px;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--grad);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
}

.about-text .section-label {
    margin-bottom: 8px;
}

.about-text .section-title {
    margin-bottom: 20px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.about-text p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.about-stat-box {
    background: var(--grad-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
}

.about-stat-box .num {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-box .lbl {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 4px;
}

.fci-card {
    background: var(--dark);
    color: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.fci-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.15);
}

.fci-card .section-label {
    color: var(--violet);
}

.fci-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.fci-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    margin-bottom: 16px;
}

.fci-card .badge-soft {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

/* ──────────────────────────────────────────────────────────
   INSIGHTS PAGE
───────────────────────────────────────────────────────── */
.stat-highlight-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.stat-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-box .num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box .label {
    color: var(--muted);
    font-size: 0.88rem;
    margin-top: 8px;
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.driver-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.driver-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

.driver-card:nth-child(1)::before {
    background: linear-gradient(90deg, #5B8BDF, #8B5CF6);
}

.driver-card:nth-child(2)::before {
    background: linear-gradient(90deg, #8B5CF6, #E5177B);
}

.driver-card:nth-child(3)::before {
    background: linear-gradient(90deg, #E5177B, #5B8BDF);
}

.driver-card:nth-child(4)::before {
    background: linear-gradient(90deg, #5B8BDF, #E5177B);
}

.driver-card:nth-child(5)::before {
    background: linear-gradient(90deg, #8B5CF6, #5B8BDF);
}

.driver-card:nth-child(6)::before {
    background: var(--grad);
}

.driver-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.driver-card .icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.driver-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.driver-card ul {
    color: var(--muted);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.driver-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.driver-card ul li::before {
    content: '→';
    color: var(--violet);
    font-weight: 700;
    flex-shrink: 0;
}

.market-banner {
    margin: 60px 0;
    padding: 48px;
    border-radius: var(--radius-lg);
    background: var(--grad);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.market-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M40 0l40 40-40 40L0 40z'/%3E%3C/g%3E%3C/svg%3E");
}

.market-banner>* {
    position: relative;
    z-index: 1;
}

.market-banner h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: white;
    margin-bottom: 16px;
}

.market-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.market-banner .big {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin: 16px 0 8px;
}

/* ──────────────────────────────────────────────────────────
   EXHIBITORS PAGE
───────────────────────────────────────────────────────── */
.why-exhibit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.roi-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.roi-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: var(--radius);
    background: var(--grad-soft);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.roi-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.roi-item .icon-box {
    flex-shrink: 0;
}

.roi-item-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.roi-item-text p {
    color: var(--muted);
    font-size: 0.88rem;
}

.expo-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.expo-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.expo-visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, transparent 100%);
    padding: 40px 32px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.expo-mini-stat {
    color: white;
}

.expo-mini-stat .n {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.expo-mini-stat .l {
    font-size: 0.8rem;
    opacity: 0.8;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    padding: 24px 20px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: var(--transition);
    cursor: default;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--violet);
}

.category-card .icon img {
    height: 80px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 10px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
}

.category-card h4 {
    font-size: 0.88rem;
    color: var(--dark);
    line-height: 1.4;
}

.category-card p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
    margin-top: 8px;
}

/* ──────────────────────────────────────────────────────────
   VISITORS PAGE
───────────────────────────────────────────────────────── */
.why-attend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.why-card .icon {
    font-size: 2.6rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    color: linear-gradient(to top, rgba(26, 26, 46, 0.7) 0%, transparent 60%);
    ;
}

.why-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.profiles-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.profile-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    border-radius: var(--radius);
    background: var(--grad-soft);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.profile-pill:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.profile-pill .icon {
    font-size: 1.8rem;
}

.profile-pill p {
    font-size: 0.8rem;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.3;
}

.highlights-band {
    background: var(--dark);
    padding: 80px 0;
    margin: 80px 0 0;
}

.highlights-band .section-title {
    color: white;
}

.highlights-band .section-label {
    color: var(--violet);
}

.highlights-band .section-sub {
    color: rgba(255, 255, 255, 0.6);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.highlight-item {
    padding: 28px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(139, 92, 246, 0.12);
    border-color: var(--violet);
}

.highlight-item .icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.highlight-item h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1rem;
}

.highlight-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────
   GALLERY
───────────────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 200px 200px;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ──────────────────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    padding: 28px;
    border-radius: var(--radius);
    background: var(--grad-soft);
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-card .icon-box {
    flex-shrink: 0;
}

.contact-card-text h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--violet);
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-card-text p,
.contact-card-text a {
    color: var(--dark);
    font-size: 0.98rem;
    font-weight: 500;
}

.contact-card-text a:hover {
    color: var(--violet);
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 48px;
    border: 1px solid var(--border);
}

.contact-form h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.contact-form p {
    color: var(--muted);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-family: var(--font-head);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group textarea {
    height: 130px;
    resize: vertical;
}

.form-success {
    display: none;
    padding: 16px;
    border-radius: var(--radius-sm);
    background: rgba(91, 139, 223, 0.1);
    border: 1px solid var(--border);
    color: var(--blue);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 16px;
    text-align: center;
}

/* ──────────────────────────────────────────────────────────
   MAP PLACEHOLDER
───────────────────────────────────────────────────────── */
.map-box {
    border-radius: var(--radius);
    overflow: hidden;
    height: 300px;
    background: var(--grad-soft);
    border: 1px solid var(--border);
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--violet);
}

.map-box .icon {
    font-size: 3rem;
}

.map-box p {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
}

.map-box small {
    color: var(--muted);
    font-size: 0.85rem;
}

/* ──────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
    height: 75px;
    margin-bottom: 24px;
    filter: brightness(1.2);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
    color: white;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--grad);
    border-radius: 1px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: var(--violet);
    padding-left: 4px;
}

.footer-col ul li a::before {
    content: '›';
    color: var(--violet);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--grad);
    color: white;
    border-color: transparent;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom span {
    color: var(--violet);
}

/* ──────────────────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 {
    transition-delay: 0.1s;
}

.fade-up-delay-2 {
    transition-delay: 0.2s;
}

.fade-up-delay-3 {
    transition-delay: 0.3s;
}

.fade-up-delay-4 {
    transition-delay: 0.4s;
}

.fade-up-delay-5 {
    transition-delay: 0.5s;
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .profiles-wrap {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 100px;
    }

    .section {
        padding: 70px 0;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .stat-highlight-row {
        grid-template-columns: repeat(1, 1fr);
    }


    .drivers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-exhibit-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .why-attend-grid {
        grid-template-columns: 1fr;
    }

    .profiles-wrap {
        grid-template-columns: repeat(3, 1fr);
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item:first-child {
        grid-column: span 2;
    }

    .about-highlight {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .track-record-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .profiles-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-highlight {
        grid-template-columns: 1fr 1fr;
    }

    .drivers-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact-form {
        padding: 28px;
    }

    .track-record-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
}