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

:root {
    --primary: #0F6FCE;
    --primary-dark: #0A4F94;
    --primary-light: #E8F2FC;
    --navy: #001f44;
    --dark: #0a1525;
    --dark-surface: #0f1d30;
    --dark-border: #1e3350;
    --text: #E6EDF3;
    --text-muted: #8B9BB5;
    --accent: #58A6FF;
    --green: #3FB950;
    --yellow: #D29922;
    --white: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0,10,30,0.4);
    --transition: 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }

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

/* ========== Navigation ========== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10, 21, 37, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}
.navbar.scrolled { border-bottom-color: var(--dark-border); background: rgba(10, 21, 37, 0.95); }

.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-circle {
    width: 52px; height: 52px; border-radius: 50%; background: var(--white);
    display: flex; align-items: center; justify-content: center;
    padding: 4px; flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.nav-logo .logo { width: 100%; height: 100%; object-fit: contain; border-radius: 0; }
.logo-text { font-size: 1.1rem; font-weight: 700; color: var(--white); letter-spacing: 0.5px; }

.nav-menu { display: flex; gap: 8px; }
.nav-link {
    padding: 8px 16px; border-radius: var(--radius-sm);
    color: var(--text-muted); font-size: 0.9rem; font-weight: 500;
    transition: all var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger .bar { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.hamburger.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== Hero ========== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(160deg, var(--dark) 0%, var(--navy) 50%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(15, 111, 206, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.hero-eyebrow {
    font-size: 0.85rem; font-weight: 600; color: var(--accent);
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
}
.hero-title { font-size: 2.8rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px; color: var(--white); }
.highlight { color: var(--accent); }
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; max-width: 540px; }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; padding: 14px 28px;
    border-radius: var(--radius-sm); font-size: 0.95rem; font-weight: 600;
    transition: all var(--transition); cursor: pointer; border: none;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(15,111,206,0.4); }
.btn-secondary { background: transparent; color: var(--accent); border: 1px solid var(--dark-border); }
.btn-secondary:hover { border-color: var(--accent); color: var(--white); transform: translateY(-2px); }

/* Hero Graphic - Orbit Animation */
.hero-graphic {
    position: relative; width: 100%; max-width: 480px; margin: 0 auto;
    aspect-ratio: 1;
}
.orbit-ring {
    position: absolute; border: 1px solid rgba(88, 166, 255, 0.15); border-radius: 50%;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.ring-1 { width: 50%; height: 50%; }
.ring-2 { width: 72%; height: 72%; animation: spin 30s linear infinite; }
.ring-3 { width: 96%; height: 96%; animation: spin 45s linear infinite reverse; }
.orbit-center {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 200px; height: 200px; border-radius: 50%; overflow: hidden;
    background: var(--white);
    border: 3px solid rgba(15, 111, 206, 0.3); box-shadow: 0 0 80px rgba(15, 111, 206, 0.35);
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
}
.orbit-center img { width: 100%; height: 100%; object-fit: contain; }
.orbit-node {
    position: absolute; width: 50px; height: 50px; border-radius: 50%;
    background: var(--dark-surface); border: 1px solid var(--dark-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1.1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.node-1 { top: 8%; left: 50%; transform: translateX(-50%); }
.node-2 { top: 30%; right: 4%; }
.node-3 { bottom: 12%; right: 12%; }
.node-4 { bottom: 12%; left: 12%; }
.node-5 { top: 30%; left: 4%; }

@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* ========== Section Headers ========== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 2.2rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 640px; margin: 0 auto; line-height: 1.7; }
.section-eyebrow {
    font-size: 0.8rem; font-weight: 600; color: var(--accent);
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}

/* ========== Products Overview ========== */
.products-overview { padding: 100px 0 40px; }

.product-nav {
    display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
    margin-top: 40px; padding-bottom: 40px;
}
.product-nav-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 40px;
    background: var(--dark-surface); border: 1px solid var(--dark-border);
    color: var(--text-muted); font-size: 0.9rem; font-weight: 500;
    cursor: pointer; transition: all var(--transition);
}
.product-nav-btn { position: relative; }
.product-nav-btn:hover { border-color: var(--accent); color: var(--white); }
.product-nav-btn.active {
    background: rgba(15, 111, 206, 0.15); border-color: var(--primary);
    color: var(--accent); font-weight: 600;
}

.nav-tooltip {
    position: absolute; bottom: -36px; left: 50%; transform: translateX(-50%);
    background: var(--dark); border: 1px solid var(--dark-border);
    border-radius: 6px; padding: 6px 14px;
    font-size: 0.75rem; font-weight: 400; color: var(--text-muted);
    white-space: nowrap; pointer-events: none;
    opacity: 0; transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(-50%) translateY(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 10;
}
.nav-tooltip::before {
    content: ''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
    border-left: 5px solid transparent; border-right: 5px solid transparent;
    border-bottom: 5px solid var(--dark-border);
}
.product-nav-btn:hover .nav-tooltip {
    opacity: 1; transform: translateX(-50%) translateY(0);
}

/* ========== Product Sections ========== */
.product-section { padding: 80px 0; }
.product-section.alt-bg { background: var(--dark-surface); }

.product-layout {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start;
}
.product-layout.reverse { grid-template-columns: 0.9fr 1.1fr; }
.product-layout.reverse .product-info { order: 2; }
.product-layout.reverse .product-visual { order: 1; }

.product-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px; border-radius: 40px;
    background: rgba(15, 111, 206, 0.1); border: 1px solid rgba(15, 111, 206, 0.25);
    color: var(--accent); font-size: 0.85rem; font-weight: 600;
    margin-bottom: 20px;
}

.product-info h2 { font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.25; }
.product-description { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }

.product-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
    width: 40px; height: 40px; min-width: 40px; border-radius: 10px;
    background: rgba(88, 166, 255, 0.08); border: 1px solid rgba(88, 166, 255, 0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 0.9rem;
}
.feature-item h4 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.feature-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

.product-pricing-note {
    font-size: 0.85rem; color: var(--accent); font-weight: 500;
    padding: 12px 16px; border-radius: var(--radius-sm);
    background: rgba(15, 111, 206, 0.06); border: 1px solid rgba(15, 111, 206, 0.12);
    margin-bottom: 24px; display: flex; align-items: center; gap: 8px;
}

.product-cta { margin-top: 8px; }

/* ========== Blueprint Grid Layout ========== */
.product-header-centered { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.product-header-centered .product-badge { display: inline-flex; margin-bottom: 20px; }
.product-header-centered h2 { font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.25; }
.product-header-centered .product-description { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }

.blueprint-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.feature-card {
    padding: 28px 24px; border-radius: var(--radius);
    background: var(--dark-surface); border: 1px solid var(--dark-border);
    transition: border-color var(--transition);
}
.feature-card:hover { border-color: var(--primary); }
.feature-card .feature-icon { margin-bottom: 14px; }
.feature-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.feature-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.feature-card.blueprint-scorecard {
    background: var(--dark); border-color: rgba(15, 111, 206, 0.25);
    display: flex; flex-direction: column;
}
.feature-card.blueprint-scorecard .visual-card-header {
    padding: 0 0 14px 0; border-bottom: 1px solid var(--dark-border); margin-bottom: 16px;
    font-size: 0.8rem; color: var(--text-muted); font-weight: 500;
    display: flex; align-items: center; gap: 10px;
}
.scorecard-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }

.product-footer-centered { text-align: center; margin-top: 32px; }
.product-footer-centered .product-pricing-note { display: inline-flex; margin-bottom: 16px; }

@media (max-width: 1024px) {
    .blueprint-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card.blueprint-scorecard[style*="span 2"] { grid-column: span 2; }
}
@media (max-width: 768px) {
    .blueprint-grid { grid-template-columns: 1fr; }
    .feature-card.blueprint-scorecard[style*="span 2"] { grid-column: span 1; }
}

/* ========== Visual Cards ========== */
.product-visual { position: sticky; top: 100px; }

.visual-card {
    background: var(--dark-surface); border: 1px solid var(--dark-border);
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow);
}
.visual-card.dark-card { background: var(--dark); }

.visual-card-header {
    padding: 14px 20px; border-bottom: 1px solid var(--dark-border);
    font-size: 0.8rem; color: var(--text-muted); font-weight: 500;
    display: flex; align-items: center; gap: 10px;
}
.status-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--dark-border); display: inline-block;
}
.status-dot.active { background: var(--green); box-shadow: 0 0 6px rgba(63, 185, 80, 0.5); }

.visual-card-body { padding: 24px 20px; }

/* Blueprint Score Bars */
.score-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 0.82rem; }
.score-row:last-child { margin-bottom: 0; }
.score-row > span:first-child { width: 120px; color: var(--text-muted); flex-shrink: 0; }
.score-row > span:last-child { width: 36px; text-align: right; color: var(--white); font-weight: 600; flex-shrink: 0; }
.score-bar { flex: 1; height: 6px; background: var(--dark-border); border-radius: 3px; overflow: hidden; }
.score-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 3px; transition: width 1s ease; }

/* Launch Checklist */
.checklist-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 0; font-size: 0.88rem; color: var(--text-muted);
    border-bottom: 1px solid rgba(48, 54, 61, 0.5);
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item.done { color: var(--text); }
.checklist-item.done i { color: var(--green); }
.checklist-item.in-progress i { color: var(--yellow); }
.checklist-item i { font-size: 0.9rem; width: 18px; text-align: center; }

/* Orbit Metrics */
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.metric { text-align: center; padding: 16px; border-radius: var(--radius-sm); background: rgba(88, 166, 255, 0.04); border: 1px solid rgba(88, 166, 255, 0.08); }
.metric-value { display: block; font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.metric-label { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* Cortex Flow */
.cortex-flow { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.flow-step {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 20px; border-radius: var(--radius-sm);
    background: rgba(88, 166, 255, 0.06); border: 1px solid var(--dark-border);
    font-size: 0.85rem; color: var(--text-muted); width: 100%; justify-content: center;
}
.flow-step i { color: var(--accent); }
.highlight-step { background: rgba(15, 111, 206, 0.15); border-color: var(--primary); color: var(--white); font-weight: 600; }
.flow-arrow { color: var(--dark-border); font-size: 0.8rem; }
.flow-outputs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }
.flow-output {
    padding: 10px 12px; border-radius: var(--radius-sm);
    background: rgba(88, 166, 255, 0.04); border: 1px solid var(--dark-border);
    font-size: 0.78rem; color: var(--text-muted); text-align: center;
}
.flow-output i { color: var(--accent); margin-right: 4px; font-size: 0.7rem; }

/* Nova Chat Demo */
.chat-demo { display: flex; flex-direction: column; gap: 12px; }
.chat-msg {
    max-width: 85%; padding: 12px 16px; border-radius: 12px;
    font-size: 0.85rem; line-height: 1.5;
}
.chat-msg.user {
    align-self: flex-end; background: var(--primary); color: var(--white);
    border-bottom-right-radius: 4px;
}
.chat-msg.ai {
    align-self: flex-start; background: rgba(88, 166, 255, 0.08);
    border: 1px solid rgba(88, 166, 255, 0.15); color: var(--text);
    border-bottom-left-radius: 4px;
}
.chat-typing {
    align-self: flex-start; display: flex; gap: 4px; padding: 12px 16px;
}
.chat-typing span {
    width: 8px; height: 8px; border-radius: 50%; background: var(--text-muted);
    animation: typing 1.4s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); } 30% { opacity: 1; transform: scale(1); } }

/* ========== Ecosystem Flow ========== */
.ecosystem { padding: 100px 0; background: var(--dark-surface); }
.ecosystem-flow {
    display: flex; align-items: flex-start; justify-content: center;
    gap: 24px; flex-wrap: nowrap; margin-top: 48px;
}
.eco-step { text-align: center; min-width: 120px; }
.eco-icon {
    width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 12px;
    background: rgba(88, 166, 255, 0.08); border: 1px solid var(--dark-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--accent);
}
.eco-step h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 4px; }
.eco-step p { font-size: 0.8rem; color: var(--text-muted); }
.eco-arrow { color: var(--dark-border); font-size: 1.2rem; padding-top: 20px; }
.eco-step.engine .eco-icon { background: rgba(15, 111, 206, 0.12); border-color: rgba(15, 111, 206, 0.25); }

/* ========== Story ========== */
.story { padding: 100px 0; }
.story-content {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    margin-bottom: 60px;
}
.story-block {
    padding: 32px; border-radius: var(--radius);
    background: var(--dark-surface); border: 1px solid var(--dark-border);
}
.story-block h3 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.story-block p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

.story-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    padding: 40px; border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(15, 111, 206, 0.08), rgba(88, 166, 255, 0.04));
    border: 1px solid rgba(15, 111, 206, 0.15);
}
.stat { text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ========== Team ========== */
.team { padding: 100px 0; background: var(--dark-surface); }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 900px; margin: 0 auto; }
.team-member {
    padding: 40px 32px;
    background: var(--dark); border: 1px solid var(--dark-border); border-radius: var(--radius);
}
.member-photo { font-size: 4rem; color: var(--dark-border); margin-bottom: 16px; text-align: center; }
.team-member h3 { font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 4px; text-align: center; }
.member-title { font-size: 0.9rem; color: var(--accent); font-weight: 500; margin-bottom: 16px; text-align: center; }
.member-bio { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.member-linkedin {
    display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 16px;
    font-size: 0.85rem; font-weight: 500; color: var(--accent);
    transition: color var(--transition);
}
.member-linkedin:hover { color: var(--white); }
.member-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.member-tags span {
    padding: 4px 12px; border-radius: 20px; font-size: 0.75rem;
    background: rgba(88, 166, 255, 0.08); border: 1px solid rgba(88, 166, 255, 0.15);
    color: var(--accent); font-weight: 500;
}

/* ========== Contact ========== */
.contact { padding: 100px 0; }
.contact-content { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item > i { font-size: 1.3rem; color: var(--accent); margin-top: 4px; }
.contact-item h4 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.contact-item p { font-size: 0.9rem; color: var(--text-muted); }
.contact-item a { color: var(--accent); }
.contact-item a:hover { color: var(--white); }

/* ========== Footer ========== */
.footer { padding: 48px 0 24px; border-top: 1px solid var(--dark-border); background: var(--dark); }
.footer-content { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 24px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--white); font-size: 0.95rem; }
.footer-logo img { border-radius: 0; width: 40px; height: 40px; object-fit: contain; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-links a:hover { color: var(--white); }
.footer-contact a { color: var(--text-muted); font-size: 0.85rem; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--dark-border); }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        display: none; flex-direction: column;
        position: absolute; top: 72px; left: 0; right: 0;
        background: var(--dark-surface); border-bottom: 1px solid var(--dark-border);
        padding: 16px;
    }
    .nav-menu.active { display: flex; }
    .nav-link { padding: 12px 16px; }

    .hero { padding: 120px 0 60px; }
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-graphic { max-width: 280px; }

    .product-layout,
    .product-layout.reverse { grid-template-columns: 1fr; }
    .product-layout.reverse .product-info { order: 1; }
    .product-layout.reverse .product-visual { order: 2; }
    .product-visual { position: static; }

    .product-nav { gap: 6px; }
    .product-nav-btn { padding: 8px 14px; font-size: 0.8rem; }

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

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

    .ecosystem-flow { flex-direction: column; align-items: center; flex-wrap: wrap; }
    .eco-arrow { transform: rotate(90deg); }

    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .hero-container { gap: 40px; }
    .hero-title { font-size: 2.2rem; }
    .product-layout,
    .product-layout.reverse { gap: 40px; }
}
