/* ===== CSS Variables ===== */
:root {
    --navy: #0a0e27;
    --navy-light: #111640;
    --navy-mid: #161b4a;
    --blue: #3b82f6;
    --blue-light: #60a5fa;
    --blue-glow: rgba(59, 130, 246, 0.3);
    --orange: #f97316;
    --orange-light: #fb923c;
    --pink: #ec4899;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 40px -12px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background: var(--navy);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    color: var(--white);
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    font-size: 14px;
    padding: 10px 20px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), #2563eb);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

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

.btn-outline:hover {
    border-color: var(--blue);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4), transparent);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3), transparent);
    bottom: -50px;
    left: -100px;
    animation-delay: -3s;
}

.hero-glow-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-10px, 15px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 50%, var(--blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-height: 1.2em;
    border-right: 3px solid var(--blue-light);
    display: inline-block;
    animation: blink 0.7s step-end infinite;
}

.hero-title.done {
    border-right: none;
    animation: none;
}

@keyframes blink {
    50% { border-color: transparent; }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-400);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-tags {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-size: 13px;
    color: var(--blue-light);
    font-weight: 500;
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--navy-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ===== Section Banners & Images ===== */
.section-banner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hip-banner,
.hip-platform-banner,
.ecosystem-banner,
.jobhero-logo {
    text-align: center;
    margin-bottom: 48px;
}

.hip-platform-banner {
    margin-top: 0;
    margin-bottom: 48px;
}

.hip-platform-banner .section-banner {
    max-width: 500px;
}

.platform-logo {
    max-width: 320px;
    margin: 0 auto;
}

.platform-logo-link {
    display: inline-block;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: var(--transition);
    padding: 8px;
}

.platform-logo-link:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.15);
    transform: translateY(-2px);
}

.eco-card-logo {
    max-width: 200px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 16px;
    border-radius: 8px;
    background: #ffffff;
    padding: 12px;
}

/* ===== Cards Grid ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.card {
    background: rgba(17, 22, 64, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    opacity: 0;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(59, 130, 246, 0.1);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--blue-light);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===== Why Grid ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.why-item {
    padding: 32px;
    border-left: 2px solid rgba(59, 130, 246, 0.3);
    transition: var(--transition);
}

.why-item:hover {
    border-left-color: var(--orange);
    background: rgba(59, 130, 246, 0.03);
}

.why-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(59, 130, 246, 0.3);
    margin-bottom: 12px;
}

.why-item h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-item p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===== HIP Section ===== */
.hip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.hip-card {
    text-align: center;
    padding: 48px 32px;
    background: rgba(17, 22, 64, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.hip-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(249, 115, 22, 0.1);
}

.hip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(236, 72, 153, 0.1));
    border-radius: 16px;
    color: var(--blue-light);
}

.hip-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.hip-card p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===== JOB HERO Section ===== */
.jobhero-tagline {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 48px;
    font-style: italic;
}

.jobhero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(17, 22, 64, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
}

.feature-icon {
    color: var(--blue-light);
    display: flex;
    align-items: center;
}

.feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

.jobhero-note {
    max-width: 700px;
    margin: 0 auto;
    padding: 24px 32px;
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: var(--radius);
    text-align: center;
}

.jobhero-note p {
    font-size: 0.95rem;
    color: var(--gray-300);
    line-height: 1.6;
}

.jobhero-note strong {
    color: var(--orange-light);
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: rgba(17, 22, 64, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius);
    transition: var(--transition);
}

.service-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(4px);
}

.service-dot {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--blue-glow);
}

.service-item span {
    font-weight: 500;
    font-size: 1rem;
}

/* Active / Inactive Service States */
.service-inactive {
    opacity: 0.5;
    cursor: default;
}

.service-inactive .service-dot {
    background: var(--gray-500);
    box-shadow: none;
}

.service-active {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.05);
}

.service-active:hover {
    border-color: var(--orange);
    background: rgba(249, 115, 22, 0.1);
    transform: translateX(4px);
}

.service-active span {
    color: var(--white);
    font-weight: 600;
}

.service-dot-active {
    background: var(--orange) !important;
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.5) !important;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); box-shadow: 0 0 8px rgba(249, 115, 22, 0.5); }
    50% { transform: scale(1.4); box-shadow: 0 0 16px rgba(249, 115, 22, 0.8); }
}

/* ===== Ecosystem Grid ===== */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.eco-card {
    padding: 36px;
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.eco-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.eco-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--blue-light);
}

.eco-card p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.eco-card-future {
    border-style: dashed;
    border-color: rgba(249, 115, 22, 0.3);
}

.eco-card-future h3 {
    color: var(--orange-light);
}

.eco-card-link {
    cursor: pointer;
    display: block;
}

.eco-card-link:hover {
    border-color: var(--orange);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(249, 115, 22, 0.1);
}

/* ===== Founder Section ===== */
.founder-card {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
    padding: 48px;
    background: rgba(17, 22, 64, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
}

.founder-card-link {
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.founder-card-link:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(249, 115, 22, 0.1);
}

.founder-img-default {
    display: block;
}

.founder-img-hover {
    display: none;
}

.founder-card-link:hover .founder-img-default {
    display: none;
}

.founder-card-link:hover .founder-img-hover {
    display: block;
}

.founder-photo {
    flex-shrink: 0;
}

.founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.founder-info {
    flex: 1;
}

.founder-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

.name-thai {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
}

.name-eng {
    color: #d4841c;
    font-size: 1.8rem;
    font-weight: 700;
}

.name-cn {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
}

.founder-names {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.founder-lang {
    font-size: 0.9rem;
    color: var(--gray-400);
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 6px;
}

.founder-role {
    font-size: 0.95rem;
    color: var(--blue-light);
    font-weight: 500;
    margin-bottom: 16px;
}

.founder-bio {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item svg {
    color: var(--blue-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 1rem;
    color: var(--white);
}

.contact-item a {
    color: var(--blue-light);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

.contact-cta {
    text-align: center;
    padding: 48px;
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
}

.contact-cta p {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
    padding: 48px 0;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ===== BOI STEM+ Section ===== */
.boi-label {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(234, 179, 8, 0.15));
    border-color: rgba(234, 179, 8, 0.4);
    color: #fbbf24;
}

.boi-organizer {
    text-align: center;
    margin-bottom: 48px;
}

.boi-organizer-img {
    max-width: 500px;
    width: 100%;
    margin: 0 auto 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.boi-organizer-text {
    font-size: 1rem;
    color: var(--gray-400);
}

.boi-organizer-text strong {
    color: var(--white);
}

.boi-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto 48px;
    padding: 48px;
    background: rgba(17, 22, 64, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
}

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

.boi-brochure-img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid rgba(234, 179, 8, 0.2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.boi-content-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fbbf24;
}

.boi-topics {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.boi-topic-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray-300);
}

.boi-topic-item svg {
    color: #fbbf24;
    flex-shrink: 0;
}

.boi-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.boi-tag {
    background: rgba(234, 179, 8, 0.1);
    border-color: rgba(234, 179, 8, 0.3);
    color: #fbbf24;
}

.boi-phase {
    max-width: 800px;
    margin: 0 auto 48px;
    padding: 40px;
    background: rgba(10, 14, 39, 0.7);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
}

.boi-phase-badge {
    display: inline-block;
    padding: 6px 20px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.2), rgba(249, 115, 22, 0.15));
    border: 1px solid rgba(234, 179, 8, 0.4);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.boi-phase-text {
    font-size: 1.05rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 28px;
}

.boi-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-boi {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--navy);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-boi:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.boi-partners {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.boi-partners-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.boi-partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.boi-partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.boi-partner-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    background: var(--white);
    padding: 12px;
    transition: var(--transition);
}

.boi-partner-logo:hover {
    border-color: rgba(234, 179, 8, 0.4);
    transform: translateY(-2px);
}

.boi-partner span {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* BOI Registration Form */
.boi-registration {
    max-width: 900px;
    margin: 0 auto 48px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: var(--radius);
    padding: 48px 40px;
    text-align: center;
}

/* Two-Column Registration Section */
.reg-section {
    max-width: 1100px;
    margin: 0 auto 48px;
}

.reg-header {
    text-align: center;
    margin-bottom: 40px;
}

.reg-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.reg-subtitle {
    font-size: 1.05rem;
    color: #fbbf24;
    font-weight: 500;
}

.reg-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 32px;
    align-items: start;
}

.reg-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.reg-overview h4,
.reg-block h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(234, 179, 8, 0.2);
}

.reg-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.reg-highlight {
    padding: 8px 16px;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #fbbf24;
}

.reg-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.reg-list li {
    font-size: 0.9rem;
    color: var(--gray-300);
    padding-left: 18px;
    position: relative;
}

.reg-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: 700;
}

.reg-list-check li::before {
    content: '✓';
    color: var(--green);
}

.reg-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.reg-stat {
    text-align: center;
    padding: 16px 8px;
    background: rgba(17, 22, 64, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: var(--radius);
}

.reg-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 4px;
}

.reg-stat span {
    font-size: 0.72rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Registration Form Card */
.reg-form-col {
    position: sticky;
    top: 100px;
}

.reg-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.reg-form-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 4px;
}

.reg-form-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 24px;
}

.reg-field {
    margin-bottom: 14px;
}

.reg-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 5px;
}

.reg-field input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--navy);
    transition: var(--transition);
    background: #f8fafc;
}

.reg-field input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: var(--white);
}

.reg-field input::placeholder {
    color: #94a3b8;
}

.reg-consent {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin: 18px 0;
}

.reg-consent input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--blue);
}

.reg-consent label {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.reg-form-card .btn-boi {
    margin-top: 8px;
    color: var(--navy);
    font-size: 1rem;
}

.reg-form-note {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

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

    .reg-form-col {
        position: static;
    }

    .reg-list {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .reg-form-card {
        padding: 28px 20px;
    }

    .reg-stats {
        grid-template-columns: 1fr 1fr;
    }
}

.boi-registration-header {
    margin-bottom: 32px;
}

.boi-registration-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.boi-registration-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(234, 179, 8, 0.15);
    border: 1px solid rgba(234, 179, 8, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fbbf24;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.boi-registration-subtitle {
    font-size: 1.05rem;
    color: var(--gray-300);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.boi-registration-notice {
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 28px;
    text-align: left;
}

.boi-registration-notice-en {
    font-size: 0.95rem;
    color: var(--gray-300);
    margin-bottom: 8px;
    line-height: 1.6;
}

.boi-registration-notice-th {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.boi-registration-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.boi-tally-wrapper {
    background: #ffffff;
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: var(--radius);
    padding: 32px;
    min-height: 700px;
}

.boi-tally-wrapper iframe {
    border-radius: 8px;
}

/* BOI Brochure Preview Link */
.boi-brochure-link {
    display: block;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.boi-brochure-preview {
    width: 100%;
    display: block;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(234, 179, 8, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.boi-brochure-link:hover .boi-brochure-preview {
    transform: scale(1.01);
    border-color: rgba(234, 179, 8, 0.5);
}

.boi-brochure-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 39, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: var(--radius-lg);
}

.boi-brochure-link:hover .boi-brochure-overlay {
    background: rgba(10, 14, 39, 0.6);
}

.boi-brochure-overlay span {
    opacity: 0;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fbbf24;
    padding: 14px 28px;
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid rgba(234, 179, 8, 0.6);
    border-radius: 8px;
    transition: var(--transition);
}

.boi-brochure-link:hover .boi-brochure-overlay span {
    opacity: 1;
}
.boi-structure {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.boi-role-card {
    padding: 32px 24px;
    background: rgba(17, 22, 64, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.boi-role-card:hover {
    border-color: rgba(234, 179, 8, 0.3);
    transform: translateY(-3px);
}

.boi-role-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(234, 179, 8, 0.12);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.boi-role-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 16px;
    border-radius: 12px;
    background: var(--white);
    padding: 12px;
}

.boi-role-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.boi-role-card p {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* Supporting Partners */
.boi-supporting {
    text-align: center;
    margin-bottom: 48px;
}

.boi-supporting .boi-partner small {
    display: block;
    font-size: 0.68rem;
    color: var(--gray-500);
    margin-top: 2px;
}

/* HERO Connect Explanation */
.boi-hero-connect-explain {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 32px;
    background: rgba(17, 22, 64, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: var(--radius-lg);
}

.boi-hc-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.boi-hc-title span {
    color: #60a5fa;
}

.boi-hc-desc {
    font-size: 1rem;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.boi-hc-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.boi-hc-supporting {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 32px;
}

.boi-hc-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius);
}

.boi-hc-node {
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
}

.boi-hc-node-top {
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.15), rgba(59, 130, 246, 0.15));
    border-color: rgba(233, 30, 140, 0.3);
}

.boi-hc-node-mid {
    background: rgba(234, 179, 8, 0.1);
    border-color: rgba(234, 179, 8, 0.25);
    color: #fbbf24;
}

.boi-hc-arrow {
    font-size: 1.2rem;
    color: var(--gray-500);
}

.boi-hc-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.boi-hc-services span {
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--blue-light);
}

@media (max-width: 768px) {
    .boi-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 32px;
    }

    .boi-phase {
        padding: 28px 20px;
    }

    .boi-buttons {
        flex-direction: column;
        align-items: center;
    }

    .boi-registration {
        padding: 28px 16px;
    }

    .boi-registration-title {
        font-size: 1.4rem;
    }

    .boi-registration-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .boi-tally-wrapper {
        padding: 12px;
    }

    .boi-structure {
        grid-template-columns: 1fr;
    }

    .boi-hero-connect-explain {
        padding: 32px 20px;
    }

    .boi-hc-services {
        flex-direction: column;
    }

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

    .boi-partner-logo {
        width: 48px;
        height: 48px;
    }

    .boi-organizer-img {
        max-width: 300px;
    }
}

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

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .founder-card {
        padding: 36px;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: var(--transition);
        border-left: 1px solid rgba(59, 130, 246, 0.1);
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 18px;
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

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

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

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

    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

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

    .founder-image {
        width: 160px;
        height: 160px;
    }

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

    .jobhero-features {
        gap: 12px;
    }

    .feature-item {
        padding: 12px 16px;
    }

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

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

    .platform-logo {
        max-width: 240px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }

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

    .tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .founder-image {
        width: 140px;
        height: 140px;
    }

    .platform-logo {
        max-width: 200px;
    }

    .jobhero-tagline {
        font-size: 1.2rem;
    }
}

/* ===== Utility ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}


/* ===== AI-Ready Business Solutions Section ===== */
.ai-ready-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.ai-ready-card {
    display: flex;
    flex-direction: column;
    background: rgba(17, 22, 64, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.ai-ready-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.ai-ready-card-1:hover {
    border-color: rgba(24, 181, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 20px rgba(24, 181, 255, 0.1);
}

.ai-ready-card-2:hover {
    border-color: rgba(192, 132, 252, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 20px rgba(192, 132, 252, 0.1);
}

.ai-ready-card-img {
    overflow: hidden;
    height: 220px;
}

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

.ai-ready-card:hover .ai-ready-card-img img {
    transform: scale(1.05);
}

.ai-ready-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.ai-ready-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
}

.ai-ready-card-1 h3 { color: #18b5ff; }
.ai-ready-card-2 h3 { color: #c084fc; }

.ai-ready-card-sub {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-300);
}

.ai-ready-card-desc {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.7;
    flex: 1;
}

.ai-ready-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 16px;
    transition: var(--transition);
    text-align: center;
}

.ai-ready-btn-1 {
    background: linear-gradient(135deg, #18b5ff, #0ea5e9);
    color: var(--navy);
    box-shadow: 0 4px 12px rgba(24, 181, 255, 0.3);
}

.ai-ready-btn-2 {
    background: linear-gradient(135deg, #c084fc, #ec4899);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(192, 132, 252, 0.3);
}

.ai-ready-card:hover .ai-ready-btn {
    transform: translateY(-2px);
}

.ai-ready-card:hover .ai-ready-btn-1 {
    box-shadow: 0 6px 20px rgba(24, 181, 255, 0.5);
}

.ai-ready-card:hover .ai-ready-btn-2 {
    box-shadow: 0 6px 20px rgba(192, 132, 252, 0.5);
}

@media (max-width: 768px) {
    .ai-ready-grid {
        grid-template-columns: 1fr;
    }

    .ai-ready-card-img {
        height: 180px;
    }
}


/* ===== HERO Magnetic AI Promo Section ===== */
.hma-promo-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(24, 181, 255, 0.03), rgba(192, 132, 252, 0.02));
}

.hma-promo-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 48px 40px;
    background: rgba(17, 22, 64, 0.6);
    border: 1px solid rgba(24, 181, 255, 0.15);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.hma-promo-card:hover {
    border-color: rgba(24, 181, 255, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(24, 181, 255, 0.08);
}

.hma-promo-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.hma-promo-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #18b5ff, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.hma-promo-sub {
    font-size: 1.15rem;
    color: var(--gray-300);
    font-weight: 600;
    margin-bottom: 16px;
}

.hma-promo-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 12px;
}

.hma-promo-desc {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.hma-promo-btn {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, #18b5ff, #0ea5e9);
    color: var(--navy);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(24, 181, 255, 0.3);
}

.hma-promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 181, 255, 0.5);
}

@media (max-width: 768px) {
    .hma-promo-card {
        padding: 32px 24px;
    }

    .hma-promo-title {
        font-size: 1.5rem;
    }

    .hma-promo-btn {
        width: 100%;
        text-align: center;
    }
}


/* ===== HERO Magnetic AI Promo Section ===== */
.hma-promo-section {
    background: linear-gradient(135deg, #122448 0%, #251a5e 50%, #152d5a 100%);
    border-top: 1px solid rgba(24, 181, 255, 0.2);
    border-bottom: 1px solid rgba(24, 181, 255, 0.2);
    padding: 80px 0;
}

.hma-promo-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 32px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hma-promo-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hma-promo-hero-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: var(--radius-lg);
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    animation: aeo-float 6s ease-in-out infinite;
    transition: var(--transition);
}

.hma-promo-hero-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(24, 181, 255, 0.15);
}

.hma-promo-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    align-items: center;
}

.hma-promo-logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: contain;
    margin-bottom: 4px;
}

.hma-promo-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #18b5ff, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hma-promo-sub {
    font-size: 1.15rem;
    color: var(--gray-300);
    font-weight: 500;
}

.hma-promo-free {
    display: inline-block;
    width: fit-content;
    padding: 8px 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #4ade80;
}

.hma-promo-desc {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.hma-promo-btn {
    margin-top: 8px;
    width: fit-content;
}

.hma-promo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hma-promo-img {
    width: 100%;
    max-width: 380px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(24, 181, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(24, 181, 255, 0.08);
    transition: var(--transition);
    animation: aeo-float 6s ease-in-out infinite;
    animation-delay: -3s;
}

.hma-promo-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(24, 181, 255, 0.12);
}

@media (max-width: 768px) {
    .hma-promo-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hma-promo-content {
        align-items: center;
    }

    .hma-promo-free {
        margin: 0 auto;
    }

    .hma-promo-img {
        max-width: 300px;
    }

    .hma-promo-hero-img {
        max-width: 220px;
    }

    .hma-promo-left {
        order: -1;
    }
}
