/* ========================================
   AI Hub - Global Styles (Anthropic Theme)
   ======================================== */

:root {
    --bg-cream: #faf9f7;
    --bg-warm-white: #ffffff;
    --bg-sand: #f5f3ef;
    --bg-dark: #1a1915;
    --bg-dark-warm: #2d2a24;
    --accent-coral: #da7756;
    --accent-coral-light: #e8a08a;
    --accent-coral-dark: #c15f3c;
    --accent-green: #2d8a6e;
    --accent-green-light: #e6f4f0;
    --text-dark: #1a1915;
    --text-medium: #4a4740;
    --text-light: #7a756c;
    --text-white: #faf9f7;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Breadcrumb Navigation */
.breadcrumb { padding: 0.75rem 0 0; }
.breadcrumb-list { display: flex; align-items: center; list-style: none; gap: 0; font-size: 0.85rem; }
.breadcrumb-item { display: flex; align-items: center; }
.breadcrumb-item a { color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.breadcrumb-item a:hover { color: var(--accent-coral); }
.breadcrumb-sep { margin: 0 0.5rem; color: var(--text-light); font-size: 0.75rem; }
.breadcrumb-item span[aria-current] { color: var(--text-medium); font-weight: 500; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    padding: 0;
}

h1, h2, h3, h4, .serif {
    font-family: 'Source Serif 4', Georgia, serif;
}

/* Main content wrapper */
.main-wrapper {
    padding: 0;
    padding-top: 1rem;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

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

/* ========================================
   Navigation
   ======================================== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem calc((100% - 1300px) / 2 + 2.5rem);
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

@media (max-width: 1400px) {
    nav {
        padding: 0.75rem 2.5rem;
    }
}

/* Spacer to prevent content from hiding behind fixed nav */
.nav-spacer {
    height: 80px;
}

.logo { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
}
.logo img {
    height: 44px;
    width: 44px;
    border-radius: 10px;
    object-fit: cover;
}
.logo-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-left: 0.6rem;
    letter-spacing: 0.5px;
}

.nav-links { 
    display: flex; 
    gap: 0.5rem; 
    list-style: none; 
}
.nav-links a { 
    color: var(--text-medium); 
    text-decoration: none; 
    font-size: 0.9rem; 
    font-weight: 500; 
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { 
    background: var(--bg-sand); 
    color: var(--text-dark);
}

.nav-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.btn-nav {
    padding: 0.6rem 1.25rem; 
    border-radius: var(--radius-sm); 
    font-size: 0.9rem; 
    font-weight: 500; 
    cursor: pointer; 
    transition: all 0.2s ease; 
    text-decoration: none;
    border: none;
}
.btn-nav-outline {
    background: transparent;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
}
.btn-nav-outline:hover {
    background: var(--bg-dark);
    color: var(--text-white);
}
.btn-nav-filled {
    background: var(--accent-coral); 
    color: white;
    border: 1px solid var(--accent-coral);
}
.btn-nav-filled:hover { 
    background: var(--accent-coral-dark);
    border-color: var(--accent-coral-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    color: var(--text-dark);
}

/* Mobile Menu (hidden by default) */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
}
.mobile-menu.active {
    display: block;
}
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}
.mobile-nav-links li {
    margin-bottom: 0.5rem;
}
.mobile-nav-links a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: var(--bg-sand);
    color: var(--accent-coral);
}
.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.mobile-nav-buttons .btn-nav {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}
.btn-primary {
    background: var(--accent-coral);
    color: white;
}
.btn-primary:hover {
    background: var(--accent-coral-dark);
    transform: translateY(-2px);
}
.btn-dark {
    background: var(--bg-dark);
    color: var(--text-white);
}
.btn-dark:hover {
    background: var(--bg-dark-warm);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
}
.btn-outline:hover {
    background: var(--bg-dark);
    color: var(--text-white);
}
.btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

/* ========================================
   Bento Grid
   ======================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
}

.bento-card {
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.bento-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
/* Clickable cards (links) get transform effect */
a.bento-card:hover {
    transform: translateY(-4px);
}

/* Card Variants */
.card-white {
    background: var(--bg-warm-white);
    border: 1px solid rgba(0,0,0,0.06);
}
.card-dark {
    background: var(--bg-dark);
    color: var(--text-white);
}
.card-dark:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    transform: translateY(-4px);
}
.card-coral {
    background: var(--accent-coral);
    color: white;
}
.card-coral:hover {
    background: var(--accent-coral-dark);
    box-shadow: 0 12px 32px rgba(232, 121, 102, 0.3);
}
.card-sand {
    background: var(--bg-sand);
    border: 1px solid rgba(0,0,0,0.06);
}

.card-arrow {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-sand);
    color: var(--text-medium);
    transition: all 0.2s;
}
.bento-card:hover .card-arrow {
    background: var(--accent-coral);
    color: white;
}
.card-arrow svg { width: 18px; height: 18px; }

/* ========================================
   Page Headers
   ======================================== */
.page-header {
    grid-column: span 12;
    padding: 1.5rem 0 2rem;
    text-align: center;
}
.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.page-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    grid-column: span 12;
    padding: 2.5rem 0 0.75rem;
}
.section-header h2 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}
.section-header p {
    color: var(--text-light);
    font-size: 1rem;
}

/* ========================================
   Product Cards
   ======================================== */
.product-card {
    grid-column: span 3;
    background: var(--bg-warm-white);
    border: 1px solid rgba(0,0,0,0.06);
    min-height: 280px;
    display: flex;
    flex-direction: column;
}
.product-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-sand);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
.product-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.product-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    flex-grow: 1;
    line-height: 1.6;
}
.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent-coral);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: gap 0.2s;
}
.product-link:hover { gap: 0.65rem; }

/* ========================================
   Solution Tags
   ======================================== */
.solutions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.solution-tag {
    padding: 0.55rem 1.1rem;
    background: var(--bg-sand);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-medium);
    transition: all 0.2s;
    cursor: pointer;
    border: 1px solid transparent;
}
.solution-tag:hover,
.solution-tag.active {
    background: var(--accent-coral);
    color: white;
    border-color: var(--accent-coral);
}

/* ========================================
   Stats
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}
.stat-number {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--accent-coral);
    line-height: 1;
    margin-bottom: 0.2rem;
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(250,249,247,0.65);
}

/* ========================================
   Tabs
   ======================================== */
.tabs-container {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}
.tab-btn {
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(0,0,0,0.1);
    background: var(--bg-warm-white);
    color: var(--text-medium);
}
.tab-btn:hover {
    border-color: var(--text-dark);
}
.tab-btn.active {
    background: var(--bg-dark);
    color: var(--text-white);
    border-color: var(--bg-dark);
}

/* ========================================
   Resource Cards
   ======================================== */
.resource-card {
    grid-column: span 4;
    background: var(--bg-warm-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.resource-tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}
.tag-guide {
    background: var(--accent-green-light);
    color: var(--accent-green);
}
.tag-success {
    background: #fef3c7;
    color: #b45309;
}
.tag-usecase {
    background: #fce7f3;
    color: #be185d;
}
.tag-update {
    background: #e0e7ff;
    color: #4338ca;
}
.resource-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.resource-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
}
.resource-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ========================================
   Forms
   ======================================== */
.form-group {
    margin-bottom: 1.25rem;
}
.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.form-label .required {
    color: var(--accent-coral);
}
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--bg-warm-white);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-coral);
    box-shadow: 0 0 0 3px rgba(218,119,86,0.1);
}
.form-textarea {
    min-height: 120px;
    resize: vertical;
}
.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a4740' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* ========================================
   Modal
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal {
    background: var(--bg-warm-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.modal-overlay.active .modal {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-light);
    transition: color 0.2s;
}
.modal-close:hover {
    color: var(--text-dark);
}
.modal-close svg {
    width: 24px;
    height: 24px;
}
.modal h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.modal .subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ========================================
   Footer (Legacy - kept for other pages)
   ======================================== */
.footer {
    grid-column: span 12;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding: 2.5rem 0 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.footer-brand p {
    color: var(--text-light);
    margin: 0.75rem 0 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}
.footer-social {
    display: flex;
    gap: 0.6rem;
}
.social-link {
    width: 38px;
    height: 38px;
    background: var(--bg-sand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 600;
    font-size: 0.85rem;
}
.social-link:hover {
    background: var(--accent-coral);
    color: white;
}
.footer-column h4 {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-medium);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.55rem;
}
.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--accent-coral);
}
.footer-bottom {
    grid-column: span 12;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.footer-bottom p {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* ========================================
   NEW Footer
   ======================================== */
.site-footer {
    background: var(--bg-dark);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-new {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
}

.footer-brand-new p {
    color: rgba(250,249,247,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-social-new {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(250,249,247,0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background: var(--accent-coral);
    color: white;
}

.footer-links-grid {
    display: flex;
    gap: 3rem;
    margin-left: auto;
}

.footer-column-new h4 {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(250,249,247,0.35);
    margin-bottom: 0.85rem;
}

.footer-column-new ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column-new li {
    margin-bottom: 0.4rem;
}

.footer-column-new a {
    color: rgba(250,249,247,0.45);
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.2s ease;
}

.footer-column-new a:hover {
    color: var(--accent-coral);
}

.footer-bottom-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.footer-bottom-new p {
    color: rgba(250,249,247,0.4);
    font-size: 0.8rem;
}

/* ========================================
   CTA Section (Legacy)
   ======================================== */
.cta-card {
    grid-column: span 12;
    background: var(--accent-coral);
    color: white;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}
.cta-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}
.cta-content p {
    font-size: 1rem;
    opacity: 0.9;
}
.cta-buttons {
    display: flex;
    gap: 0.75rem;
}

/* ========================================
   NEW Homepage Sections
   ======================================== */

/* Section Label */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-coral);
    margin-bottom: 0.75rem;
}

/* Technology Landscape / Trusted Marquee */
.trusted-section {
    padding: 1.25rem 0 0;
    overflow: hidden;
}
.trusted-inner {
    text-align: center;
    max-width: 1225px;
    margin: 0 auto;
    background: var(--bg-warm-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 1.25rem 2.5rem 1.75rem;
    overflow: hidden;
}
.trusted-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-coral);
    margin-bottom: 1.75rem;
}
.trusted-label-line {
    width: 24px;
    height: 1.5px;
    background: currentColor;
}
.trusted-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}
.trusted-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    animation: marqueeScroll 45s linear infinite;
}
.trusted-track:hover {
    animation-play-state: paused;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.trusted-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}
.trusted-logo-item svg {
    height: 40px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}
.trusted-logo-item:hover svg {
    opacity: 1;
}
.pg-wordmark {
    font-weight: 800;
    font-size: 1.2rem;
    white-space: nowrap;
    opacity: 0.9;
    transition: opacity 0.3s;
}
.pg-wordmark:hover {
    opacity: 1;
}
.pg-pre {
    color: #1a1a1a;
}
.pg-sql {
    color: #336791;
}
@media (max-width: 768px) {
    .trusted-section { padding: 0.5rem 1rem; }
    .trusted-inner { padding: 1.25rem 1rem; }
    .trusted-track { gap: 2rem; }
    .trusted-logo-item svg { height: 20px; }
    .pg-wordmark { font-size: 0.7rem; }
}

/* Products Section V2 - Contained Layout */
.products-section-v2 {
    padding: 2rem 0 2rem;
}

.products-container-v2 {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.products-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.products-header-left h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 0.25rem;
}

.products-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.products-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    background: var(--bg-warm-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.products-nav-btn:hover {
    background: var(--bg-dark);
    border-color: var(--bg-dark);
    color: white;
}

.products-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.products-nav-btn:disabled:hover {
    background: var(--bg-warm-white);
    border-color: rgba(0,0,0,0.1);
    color: var(--text-medium);
}

.products-carousel-track {
    overflow: hidden;
    flex: 1;
}

.products-grid-v2 {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.4s ease;
}

.products-grid-v2 .product-card-v2 {
    flex: 0 0 calc(25% - 0.9375rem);
    min-width: calc(25% - 0.9375rem);
}

.product-card-v2 {
    background: var(--bg-warm-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.product-card-v2:hover {
    border-color: var(--accent-coral);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.product-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.product-number-v2 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.product-arrow {
    width: 32px;
    height: 32px;
    background: var(--bg-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.2s ease;
}

.product-card-v2:hover .product-arrow {
    background: var(--accent-coral);
    color: white;
}

.product-card-v2 h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-card-v2 p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
}

/* Products Section V1 - Dark (kept for reference) */
.products-section {
    background: var(--bg-dark);
    padding: 5rem 0;
    margin-top: 1.5rem;
}

.products-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.products-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.products-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.products-header p {
    color: rgba(250,249,247,0.6);
    font-size: 1.05rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.product-card-new {
    background: var(--bg-dark-warm);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.product-card-new:hover {
    transform: translateY(-4px);
    border-color: var(--accent-coral);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.product-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-number {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-coral);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.product-card-new h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.product-card-new p {
    font-size: 0.9rem;
    color: rgba(250,249,247,0.6);
    line-height: 1.6;
    flex-grow: 1;
}

.product-card-footer {
    margin-top: auto;
    padding-top: 1rem;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-coral);
    transition: gap 0.2s ease;
}

.product-card-new:hover .learn-more {
    gap: 0.75rem;
}

/* Stats Section */
.stats-section {
    padding: 1.5rem 0 4rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
}

.stat-item {
    padding: 1rem;
}

.stat-number-new {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent-coral);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-new {
    font-size: 0.9rem;
    color: rgba(250,249,247,0.7);
    font-weight: 500;
}

/* Solutions Section */
.solutions-section {
    background: var(--bg-sand);
    padding: 5rem 0;
}

.solutions-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.solutions-left h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.solutions-left p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 450px;
}

.solutions-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.solution-card-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--bg-warm-white);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.solution-card-new:hover {
    background: var(--bg-dark);
    border-color: var(--bg-dark);
}

.solution-card-new:hover .solution-title {
    color: var(--text-white);
}

.solution-card-new:hover svg {
    color: var(--accent-coral);
}

.solution-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.2s ease;
}

.solution-card-new svg {
    color: var(--text-light);
    transition: color 0.2s ease;
}

/* CTA Section New */
.cta-section {
    background: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-coral-dark) 100%);
    padding: 2.5rem 0;
}

.cta-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.cta-content-new h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.35rem;
}

.cta-content-new p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    max-width: 500px;
}

.cta-buttons-new {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--bg-dark);
    color: var(--text-white);
    border: 2px solid var(--bg-dark);
}

.btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

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

.btn-outline:hover {
    background: white;
    color: var(--accent-coral);
    border-color: white;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1200px) {
    .product-card { grid-column: span 4; }
    .resource-card { grid-column: span 6; }
}

@media (max-width: 992px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .nav-buttons { display: none; }
    .product-card { grid-column: span 6; }
    .resource-card { grid-column: span 6; }
    .footer { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }

    /* Hero bento cards - reflow for tablet */
    .bento-grid > .bento-card[style*="grid-column: span 7"],
    .bento-grid > .bento-card[style*="grid-column: span 5"],
    .bento-grid > a.bento-card[style*="grid-column: span 5"] {
        grid-column: span 12 !important;
    }
    .bento-grid > .bento-card[style*="grid-row: span 2"] {
        grid-row: span 1 !important;
    }
    .bento-grid > a.bento-card[style*="grid-column: span 3"] {
        grid-column: span 7 !important;
    }
    .bento-grid > a.bento-card[style*="grid-column: span 2"] {
        grid-column: span 5 !important;
    }

    /* New sections responsive */
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid-v2 .product-card-v2 { flex: 0 0 calc(50% - 0.625rem); min-width: calc(50% - 0.625rem); }
    .solutions-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .solutions-right { grid-template-columns: repeat(3, 1fr); }
    .cta-container { flex-direction: column; text-align: center; }
    .cta-content-new p { max-width: 100%; }

    /* Footer responsive */
    .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-brand-new { max-width: 100%; }
}

@media (max-width: 768px) {
    body { padding: 0; }
    .container { padding: 0 1rem; }
    .bento-grid { gap: 0.9rem; }
    .page-header h1 { font-size: 2.25rem; }
    .product-card { grid-column: span 12; }
    .resource-card { grid-column: span 12; }
    .cta-card {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        padding: 2rem 1.5rem;
    }
    .footer { grid-template-columns: 1fr; gap: 1.75rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .tabs-container { justify-content: flex-start; }

    /* Hero bento cards - stack on mobile */
    .bento-grid > .bento-card,
    .bento-grid > a.bento-card {
        grid-column: span 12 !important;
        min-height: auto !important;
    }
    .bento-grid > .bento-card[style*="grid-row: span 2"] {
        grid-row: span 1 !important;
        min-height: 320px !important;
    }

    /* Contact FAQ cards - full width on mobile */
    .bento-card[style*="grid-column: span 6"] {
        grid-column: span 12 !important;
    }

    /* New sections mobile */
    .products-section { padding: 3rem 0; }
    .products-container { padding: 0 1rem; }
    .products-header h2 { font-size: 1.75rem; }
    .products-grid { grid-template-columns: 1fr; }
    .product-card-new { min-height: 180px; }

    .products-section-v2 { padding: 2.5rem 0; }
    .products-container-v2 { padding: 0 1rem; }
    .products-header-left h2 { font-size: 1.5rem; }
    .products-grid-v2 { gap: 1rem; }
    .products-grid-v2 .product-card-v2 { flex: 0 0 100%; min-width: 100%; }
    .product-card-v2 { min-height: 160px; }
    .product-card-v2 h3 { font-size: 1.25rem; }

    .stats-section { padding: 2.5rem 1rem; }
    .stats-container { padding: 2rem 1.5rem; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stat-number-new { font-size: 2.25rem; }

    .products-nav-btn { width: 36px; height: 36px; }
    .products-carousel-wrapper { gap: 0.5rem; }

    .solutions-section { padding: 3rem 0; }
    .solutions-container { padding: 0 1rem; }
    .solutions-left h2 { font-size: 1.75rem; }
    .solutions-right { grid-template-columns: 1fr; }

    .cta-section { padding: 2rem 0; }
    .cta-container { padding: 0 1rem; }
    .cta-content-new h2 { font-size: 1.5rem; }
    .cta-buttons-new { flex-direction: column; width: 100%; }
    .cta-buttons-new .btn { width: 100%; justify-content: center; }

    /* Footer mobile - 2x2 grid */
    .site-footer { padding: 3rem 0 1.5rem; }
    .footer-container { padding: 0 1rem; }
    .footer-links-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }
    .footer-links-grid .footer-column-new { min-width: auto; }
    .footer-bottom-new { flex-direction: column; gap: 0.5rem; text-align: center; }
}
