/* === CHROMAFLAKE DESIGN SYSTEM === */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    font-weight: 400;
    color: #1A1A2E;
    background: #FFFFFF;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

/* === VARIABLES === */
:root {
    --dark: #1A1A2E;
    --accent: #FF6B35;
    --accent-hover: #E55A2B;
    --light: #F8F8F8;
    --white: #FFFFFF;
    --gray: #666;
    --gray-light: #999;
    --footer-bg: #111111;
    --border: #E0E0E0;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.15;
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.section-heading {
    text-align: center;
    margin-bottom: 48px;
    color: var(--dark);
}

.section-heading-light {
    color: var(--white);
}

.section-sub-light {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-top: -32px;
    margin-bottom: 48px;
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.navbar-logo {
    height: 44px;
    width: auto;
}

.navbar-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar-links a {
    display: inline-block;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark);
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.navbar-links a:hover {
    background: var(--light);
}

.btn-nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    margin-left: 8px;
    transition: background 0.2s !important;
}

.btn-nav-cta:hover {
    background: var(--accent-hover) !important;
}

/* === NAV ICONS === */
.nav-sep {
    width: 1px;
    height: 22px;
    background: var(--border);
    margin: 0 6px;
    align-self: center;
}

.nav-icon {
    padding: 6px !important;
    opacity: 0.65;
    transition: opacity 0.2s;
    color: var(--dark) !important;
}
.nav-icon:hover {
    opacity: 1;
    background: none !important;
}
.nav-icon svg {
    display: block;
    vertical-align: middle;
}

/* === HAMBURGER === */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* === HERO === */
.hero {
    min-height: 90vh;
    background: url('../images/01-garage-warm.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 72px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.hero-tag {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent);
    background: rgba(255,107,53,0.12);
    padding: 8px 20px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.hero h1 {
    color: var(--white);
    max-width: 720px;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin-bottom: 36px;
    font-weight: 400;
}

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

/* === BUTTONS === */
.btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

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

.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

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

.btn-cta-white:hover {
    background: var(--light);
    border-color: var(--light);
}

/* === TRUST BAR === */
.trust-bar {
    background: var(--dark);
    padding: 20px 0;
}

.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-item {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

/* === SECTIONS === */
.section {
    padding: 96px 0;
}

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

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-footer-link {
    text-align: right;
    margin-top: 32px;
}

.section-footer-link a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
    transition: color 0.2s;
}

.section-footer-link a:hover {
    color: var(--accent);
}

/* === APPLICATIONS GRID === */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.app-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    display: block;
    min-height: 200px;
}

.app-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.app-card:hover img {
    transform: scale(1.05);
    opacity: 0.75;
}

.app-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

/* === WHY GRID === */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.why-card {
    text-align: center;
    padding: 32px 24px;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.why-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.why-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.why-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* === PRICING === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 4px;
    padding: 36px 28px;
    text-align: center;
    color: var(--dark);
    position: relative;
}

.pricing-card-featured {
    box-shadow: 0 0 0 3px var(--accent);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 18px;
    border-radius: 4px;
    white-space: nowrap;
}

.pricing-tier {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.pricing-range {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.pricing-price {
    font-family: 'Oswald', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--dark);
}

.pricing-price span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
}

.pricing-specs {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-top: 28px;
    margin-bottom: 28px;
}

.pricing-cta {
    text-align: center;
}

/* === CTA SECTION === */
.cta-section {
    background: var(--accent);
    padding: 80px 0;
    text-align: center;
}

.cta-heading {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 16px;
    text-transform: none;
}

.cta-sub {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

/* === FOOTER === */
.footer {
    background: var(--footer-bg);
    color: rgba(255,255,255,0.7);
    padding: 72px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.06em;
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    padding: 5px 0;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-email {
    font-size: 0.95rem !important;
    color: rgba(255,255,255,0.8) !important;
    margin-top: 4px;
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* === PAGE BANNER (sub-page dark header) === */
.page-banner {
    background: var(--dark);
    padding: 80px 24px 64px;
    text-align: center;
    margin-top: 72px;
}
.page-banner h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 12px;
}
.page-banner p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}
.breadcrumb {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--white); }

/* === PAGE CONTENT === */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 24px;
}
.page-content h2 {
    font-size: 1.6rem;
    margin: 40px 0 14px;
    color: var(--dark);
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* === SECTION COMPAT === */
.section-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 600;
}
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 16px;
    color: var(--dark);
}
.section-subtitle {
    color: var(--gray);
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.6;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.divider {
    width: 48px;
    height: 3px;
    background: var(--accent);
    margin: 16px auto;
}

/* === TWO COLUMN === */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.two-col img { width: 100%; border-radius: 4px; }

/* === INDUSTRY / APP CARDS === */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.industry-card, .app-card-static {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 4px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.industry-card:hover, .app-card-static:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.industry-card .icon-box { color: var(--accent); font-size: 1.4rem; margin-bottom: 14px; }
.industry-card h3, .app-card-static h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
    text-transform: none;
    font-family: 'Inter', sans-serif;
}
.industry-card p, .app-card-static p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* === VALUE CARDS === */
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px 28px;
    border-radius: 4px;
    text-align: center;
    transition: border-color 0.2s;
}
.value-card:hover { border-color: var(--accent); }
.value-card .icon { font-size: 1.8rem; color: var(--accent); margin-bottom: 14px; }
.value-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    text-transform: none;
    font-family: 'Inter', sans-serif;
}
.value-card p { font-size: 0.84rem; color: var(--gray); line-height: 1.5; }

/* === STATS === */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.stat-item .stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 2.6rem;
    color: var(--accent);
    font-weight: 600;
}
.stat-item .stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.7);
    margin-top: 6px;
    font-weight: 500;
}

/* === TABLE === */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
}
.specs-table th {
    background: var(--dark);
    color: var(--white);
    padding: 14px 20px;
    text-align: left;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.specs-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.specs-table tr:nth-child(even) { background: var(--light); }

/* === COLOR GRID === */
.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}
.color-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.color-card:hover { border-color: var(--dark); }
.color-swatch {
    width: 100%;
    height: 100px;
    position: relative;
}
.swatch-tag {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 2px 8px;
    border-radius: 3px;
}
.color-card-body { padding: 12px 14px; }
.color-card-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: none;
}
.color-hex {
    font-size: 0.7rem;
    color: var(--gray);
    font-family: monospace;
}

/* === FILTER CHIPS === */
.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}
.filter-chip {
    padding: 8px 18px;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    background: var(--white);
    color: var(--dark);
    transition: border-color 0.2s, color 0.2s;
}
.filter-chip:hover, .filter-chip.active {
    border-color: var(--accent);
    color: var(--accent);
}

/* === APPLICATION STRIP === */
.app-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 16px 0;
}
.app-strip-item { text-align: center; font-size: 0.82rem; font-weight: 500; color: var(--dark); }
.strip-icon { font-size: 1.6rem; color: var(--accent); margin-bottom: 6px; }

/* === COLOR BAND === */
.color-band {
    background: var(--dark);
    padding: 72px 24px;
    text-align: center;
    color: var(--white);
}
.color-band h2 { color: var(--white); }
.color-band p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 28px; }

/* === CTA BANNER === */
.cta-banner {
    background: var(--dark);
    padding: 72px 24px;
    text-align: center;
}
.cta-banner h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
}
.cta-banner p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 28px;
}

/* === FAQ === */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    padding: 20px 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
}
.faq-question:hover { color: var(--accent); }
.faq-answer { padding: 0 0 20px; color: var(--gray); font-size: 0.9rem; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question { color: var(--accent); font-weight: 600; }

/* === CONTACT FORM === */
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 16px;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent); }
.contact-form label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 4px; color: var(--dark); }
.contact-form label .required { color: var(--accent); }
.btn-submit {
    padding: 14px 40px;
    background: var(--accent);
    color: var(--white);
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
    margin-top: 8px;
}
.btn-submit:hover { background: var(--accent-hover); }

/* === FEATURE LIST === */
.feature-list { list-style: none; }
.feature-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.92rem;
    color: var(--dark);
}
.feature-list li .icon { color: var(--accent); font-size: 0.9rem; flex-shrink: 0; }

/* === IMG PLACEHOLDER === */
.img-placeholder {
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 0.85rem;
    text-align: center;
    border-radius: 4px;
    min-height: 200px;
}

/* === PRODUCTS GRID === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.product-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: var(--light);
}
.product-card-body { padding: 20px; }
.product-card-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
    text-transform: none;
}
.btn-sm {
    display: inline-block;
    padding: 8px 20px;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
.btn-sm:hover { background: var(--accent); color: var(--white); }

/* === BUTTON VARIANTS === */
.btn-dark {
    background: var(--dark);
    color: var(--white);
    border: 2px solid var(--dark);
}
.btn-dark:hover { background: #2A2A4E; border-color: #2A2A4E; }
.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border);
}
.btn-outline:hover { background: var(--light); border-color: var(--dark); }
.btn-white {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--white);
}
.btn-white:hover { background: var(--light); }

/* === TRUST LINE === */
.trust-line {
    font-size: 0.82rem;
    color: var(--gray);
    margin-top: 12px;
    letter-spacing: 0.03em;
}

/* === TORGINOL ALT PAGE === */

/* Hero */
.alt-hero {
    margin-top: 72px;
    padding: 96px 0 80px;
    text-align: center;
    background: var(--dark);
    color: var(--white);
}
.alt-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 16px;
}
.alt-hero h1 sup { font-size: 0.5em; }
.alt-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.6;
}
.alt-hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.alt-hero-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
}

/* Who Cards */
.alt-who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.alt-who-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.alt-who-card:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.alt-who-icon { font-size: 2.4rem; margin-bottom: 16px; }
.alt-who-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    text-transform: none;
    letter-spacing: 0;
}
.alt-who-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}
.alt-who-card sup { font-size: 0.7em; }

/* Comparison Table */
.alt-table-wrap { overflow-x: auto; margin-bottom: 24px; }
.alt-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.alt-table thead { border-bottom: 2px solid var(--dark); }
.alt-table th {
    padding: 16px 20px;
    text-align: left;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.alt-th-feature { background: var(--light); color: var(--dark); width: 30%; }
.alt-th-us { background: var(--dark); color: var(--white); width: 35%; }
.alt-th-them { background: #333; color: rgba(255,255,255,0.8); width: 35%; }
.alt-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.5;
}
.alt-table tbody tr:nth-child(even) td { background: rgba(0,0,0,0.02); }
.alt-table td:nth-child(1) { font-weight: 500; color: var(--dark); }
.alt-table td:nth-child(2) { color: var(--dark); }
.alt-table td:nth-child(3) { color: var(--gray); }
.alt-table sup { font-size: 0.7em; }

.alt-table-cards { display: none; }
.alt-table-footer {
    text-align: center;
    margin-top: 28px;
    color: var(--gray-light);
    line-height: 1.6;
}
.alt-table-footer sup { font-size: 0.7em; }

/* Mobile comparison cards */
.alt-compare-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--white);
}
.alt-compare-feature {
    background: var(--light);
    padding: 14px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
}
.alt-compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.alt-compare-col { padding: 14px 16px; font-size: 0.85rem; line-height: 1.5; }
.alt-compare-us { background: var(--dark); color: rgba(255,255,255,0.9); }
.alt-compare-them { background: #2a2a2a; color: rgba(255,255,255,0.75); }
.alt-compare-label {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
    opacity: 0.5;
    font-weight: 600;
}

/* Alt Why Rows */
.alt-why-rows { margin-top: 8px; }
.alt-why-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 72px;
}
.alt-why-row:last-child { margin-bottom: 0; }
.alt-why-row-reverse .alt-why-img { order: -1; }
.alt-why-text h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--dark);
}
.alt-why-text p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}
.alt-why-text sup { font-size: 0.7em; }
.alt-why-img .img-placeholder { min-height: 240px; }

/* FAQ details */
.alt-faq-list { max-width: 800px; margin: 0 auto; }
.alt-faq-item {
    border-bottom: 1px solid var(--border);
    padding: 0;
}
.alt-faq-item summary {
    padding: 24px 0;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.alt-faq-item summary::-webkit-details-marker { display: none; }
.alt-faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--accent);
    margin-left: 16px;
    transition: transform 0.2s;
}
.alt-faq-item[open] summary::after {
    content: '−';
}
.alt-faq-item summary:hover { color: var(--accent); }
.alt-faq-body { padding: 0 0 24px; }
.alt-faq-body p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}
.alt-faq-item sup { font-size: 0.7em; }

/* Alt Form */
.alt-form-wrap { max-width: 800px; margin: 0 auto; }
.alt-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
}
.alt-form-field { margin-bottom: 4px; }

/* Disclaimer */
.alt-disclaimer {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 32px;
    max-width: 800px;
    margin: 0 auto;
}
.alt-disclaimer h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    color: var(--dark);
}
.alt-disclaimer p {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.7;
}
.alt-disclaimer sup { font-size: 0.7em; }

/* === FOOTER COMPAT === */
.footer-contact { margin-top: 0; }
.footer-contact i { width: 18px; margin-right: 8px; }

/* === APPLICATION SHOWCASE === */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.showcase-card {
    display: block;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--dark);
}

.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.showcase-img-wrap {
    overflow: hidden;
}

.showcase-img-wrap img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.showcase-body {
    padding: 24px;
    background: #F3F4F6;
    border-radius: 0 0 16px 16px;
}

.showcase-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: 0;
}

.showcase-body p {
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.6;
}

/* CTA Card (6th) */
.showcase-cta {
    position: relative;
    min-height: 100%;
}

.showcase-cta-bg {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 340px;
}

.showcase-cta-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
    z-index: 1;
}

.showcase-cta-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: var(--white);
}

.showcase-cta-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.showcase-cta-content p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 24px;
    line-height: 1.5;
}

.showcase-cta-btn {
    display: inline-block;
    background: var(--white);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    margin-top: auto;
    align-self: flex-start;
    transition: background 0.2s;
}

.showcase-cta-btn:hover {
    background: var(--light);
}

/* === PRODUCT SERIES === */
.series-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 64px;
}

.series-row:last-child {
    margin-bottom: 0;
}

.series-img-col {
    overflow: hidden;
    border-radius: 12px;
}

.series-scene-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.series-text-col {
    padding: 8px 0;
}

.series-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.series-tagline {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 16px;
    font-weight: 500;
}

.series-desc {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Swatch Row */
.swatch-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.swatch-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
}

.swatch-btn:hover {
    transform: scale(1.1);
}

.swatch-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}

.swatch-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.swatch-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray);
    text-align: center;
}

/* View all link */
.series-view-all {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1.5px solid transparent;
    transition: border-color 0.2s;
    text-decoration: none;
}

.series-view-all:hover {
    border-bottom-color: var(--accent);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .pricing-card {
        padding: 24px 16px;
    }

    .pricing-price {
        font-size: 2rem;
    }

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

@media (max-width: 768px) {
    .navbar-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        gap: 0;
    }

    .navbar-links.show {
        display: flex;
    }

    .navbar-links a {
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid var(--light);
        font-size: 0.95rem;
        border-radius: 0;
    }

    .navbar-links a:last-child {
        border-bottom: none;
    }

    .btn-nav-cta {
        margin-left: 0 !important;
        margin-top: 8px;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .trust-bar-inner {
        flex-direction: column;
        gap: 10px;
    }

    .trust-item {
        font-size: 0.82rem;
    }

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

    .app-card img {
        height: 220px;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .section {
        padding: 64px 0;
    }

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

    .series-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .series-name {
        font-size: 1.4rem;
    }

    .swatch-circle {
        width: 64px;
        height: 64px;
    }

    /* Alt page mobile */
    .alt-who-grid { grid-template-columns: 1fr; }

    .alt-table-wrap { display: none; }
    .alt-table-cards { display: block; }

    .alt-why-row, .alt-why-row-reverse {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 48px;
    }
    .alt-why-row-reverse .alt-why-img { order: 0; }

    .alt-why-text h3 { font-size: 1.2rem; }

    .alt-hero-trust { gap: 20px; }

    .alt-form-grid { grid-template-columns: 1fr; }
}
