/* ═══════════════════════════════════════════
   AktivCPQ — Brand Stylesheet
   Powered by Aktiv Software
   Design aligned with aktivsoftware.com
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800&display=swap');

:root {
    --navy: #1B327E;
    --navy-dark: #0f1e50;
    --navy-light: #2a4494;
    --red: #C30736;
    --red-dark: #9E2021;
    --red-light: #e8314b;
    --text: #242424;
    --text-light: #555;
    --text-muted: #777;
    --bg: #ffffff;
    --bg-light: #f7f8fc;
    --bg-warm: #fafafa;
    --bg-blue: #f0f2fa;
    --border: #e2e5f0;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(27, 50, 126, 0.06);
    --shadow-md: 0 4px 20px rgba(27, 50, 126, 0.08);
    --shadow-lg: 0 8px 40px rgba(27, 50, 126, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-pill: 30px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    line-height: 1.725;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--red); }

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

/* ── NAVIGATION ── */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.nav-logo {
    font-weight: 800; font-size: 22px;
    color: var(--navy); text-decoration: none;
    display: flex; align-items: center; gap: 6px;
}
.nav-logo .logo-aktiv { color: var(--navy); }
.nav-logo .logo-cpq { color: var(--red); font-weight: 800; font-size: 22px; }
.nav-logo-img { height: 28px; vertical-align: middle; margin-right: 2px; }
.nav-links { list-style: none; display: flex; gap: 32px; }
.nav-links a {
    font-size: 15px; font-weight: 500; color: var(--text);
    text-decoration: none; transition: color 0.3s;
    position: relative; padding: 4px 0;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: var(--red);
    transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 8px 8px 20px;
    background: var(--navy); color: white !important;
    font-size: 15px; font-weight: 500;
    border-radius: var(--radius-pill);
    text-decoration: none; transition: background 0.3s, transform 0.3s;
}
.nav-cta:hover { background: var(--navy-dark); color: white; transform: translateY(-1px); }
.nav-cta::after {
    content: '↗'; width: 32px; height: 32px;
    border-radius: 50%; background: white; color: var(--red-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700;
    transition: transform 0.4s;
}
.nav-cta:hover::after { transform: rotate(45deg); }

/* Mobile Nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: 0.3s; }

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none; position: absolute; top: 72px; left: 0; right: 0;
        background: white; flex-direction: column; gap: 0;
        padding: 16px 24px; border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--border); }
    .nav-links a::after { display: none; }
    .nav-cta { display: none; }
}

/* ── HERO ── */
.hero {
    padding: 140px 0 80px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: var(--navy);
    background: var(--bg-blue);
    padding: 6px 16px; border-radius: var(--radius-pill);
    margin-bottom: 24px; letter-spacing: 0.5px;
    text-transform: uppercase;
}
.hero-label::before {
    content: ''; width: 8px; height: 8px;
    background: var(--red); border-radius: 50%;
}
.hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800; line-height: 1.1;
    color: var(--text); margin-bottom: 24px;
}
.hero h1 span { color: var(--navy); }
.hero-desc {
    font-size: 18px; line-height: 1.6;
    color: var(--text-light); max-width: 520px;
    margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-visual { position: relative; }
.hero-img-stack {
    position: relative;
    min-height: 360px;
}
.hero-img-stack img {
    position: absolute;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease;
    max-height: 320px;
    object-fit: contain;
    background: var(--bg-light);
}
.hero-img-stack img:nth-child(1) {
    width: 88%; top: 0; left: 0; z-index: 2;
}
.hero-img-stack img:nth-child(2) {
    width: 72%; bottom: 0; right: 0; z-index: 3;
    border: 3px solid white;
}
.hero-img-stack:hover img:nth-child(1) { transform: translateY(-4px); }
.hero-img-stack:hover img:nth-child(2) { transform: translate(4px, -4px); }
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none !important; height: 0; overflow: hidden; }
    .hero { padding: 110px 0 50px; }
}
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 10px 10px 24px;
    background: var(--navy); color: white;
    font-family: "Jost", sans-serif;
    font-size: 17px; font-weight: 500;
    border-radius: var(--radius-pill);
    text-decoration: none; border: none; cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.btn-primary::after {
    content: '↗'; width: 36px; height: 36px;
    border-radius: 50%; background: white; color: var(--red-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700;
    transition: transform 0.4s;
}
.btn-primary:hover { background: var(--navy-dark); color: white; transform: translateY(-2px); }
.btn-primary:hover::after { transform: rotate(45deg); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 28px;
    background: white; color: var(--text);
    font-family: "Jost", sans-serif;
    font-size: 17px; font-weight: 500;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    text-decoration: none; cursor: pointer;
    transition: border-color 0.3s, transform 0.3s;
}
.btn-secondary:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-2px); }
.hero-stats {
    display: flex; gap: 48px; padding-top: 32px;
    border-top: 1px solid var(--border);
}
.hero-stat { text-align: left; }
.hero-stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--navy); }
.hero-stat span { font-size: 14px; color: var(--text-muted); }

@media (max-width: 768px) {
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-stat strong { font-size: 22px; }
}

/* ── SECTIONS ── */
section { padding: 80px 0; }
section.alt { background: var(--bg-light); }
section.navy { background: var(--navy); color: white; }
section.navy .section-title { color: white; }
section.navy .section-desc { color: rgba(255,255,255,0.8); }

.section-label {
    font-size: 13px; font-weight: 600;
    color: var(--red); text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 12px;
}
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800; color: var(--text);
    line-height: 1.2; margin-bottom: 16px;
    position: relative; padding-bottom: 16px;
}
.section-title::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 60px; height: 2px; background: var(--red);
}
.section-title.centered { text-align: center; }
.section-title.centered::after { left: 50%; transform: translateX(-50%); }
.section-desc {
    font-size: 18px; color: var(--text-light);
    line-height: 1.6; max-width: 640px; margin-bottom: 48px;
}
.section-desc.centered { text-align: center; margin-left: auto; margin-right: auto; }

/* ── CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
    background: white; border-radius: var(--radius);
    padding: 32px; border: 1px solid var(--border);
    transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: var(--bg-blue); color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 20px;
}
.card h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--text-light); line-height: 1.6; }

/* ── STATS BAR ── */
.stats-bar {
    background: var(--navy);
    padding: 40px 24px;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
    text-align: center;
}
.stat-item strong { display: block; font-size: 32px; font-weight: 800; color: white; }
.stat-item span { font-size: 14px; color: rgba(255,255,255,0.7); }
@media (max-width: 768px) {
    .stats-bar { padding: 32px 24px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item strong { font-size: 24px; }
    .stat-item span { font-size: 12px; }
}

/* ── PRICING ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.pricing-card {
    background: white; border-radius: var(--radius);
    padding: 32px 24px; text-align: center;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-card.featured {
    border: 2px solid var(--navy);
    box-shadow: var(--shadow-lg);
}
.pricing-card.featured::before {
    content: 'BEST VALUE';
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--red); color: white;
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    padding: 4px 16px; border-radius: var(--radius-pill);
}
.pricing-card .plan-name {
    font-size: 18px; font-weight: 700; color: var(--text);
    margin-bottom: 8px;
}
.pricing-card .plan-price {
    font-size: 32px; font-weight: 800; color: var(--navy);
    margin-bottom: 4px;
}
.pricing-card .plan-price small { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.pricing-card .plan-desc {
    font-size: 14px; color: var(--text-muted);
    margin-bottom: 20px; line-height: 1.4;
}
.pricing-card ul {
    list-style: none; text-align: left; margin-bottom: 24px;
}
.pricing-card li {
    font-size: 14px; color: var(--text-light);
    padding: 6px 0; padding-left: 24px; position: relative;
}
.pricing-card li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--navy); font-weight: 700;
}
.pricing-card .plan-btn {
    display: block; width: 100%; padding: 12px;
    background: var(--bg-blue); color: var(--navy);
    font-family: "Jost", sans-serif;
    font-size: 15px; font-weight: 600;
    border-radius: var(--radius-pill);
    border: none; cursor: pointer; text-align: center;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}
.pricing-card .plan-btn:hover { background: var(--navy); color: white; }
.pricing-card.featured .plan-btn {
    background: var(--navy); color: white;
}
.pricing-card.featured .plan-btn:hover { background: var(--navy-dark); }

/* ── FEATURES ── */
.feature-section {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: center; padding: 60px 0;
    border-bottom: 1px solid var(--border);
}
.feature-section:last-child { border-bottom: none; }
.feature-section.reverse { direction: rtl; }
.feature-section.reverse > * { direction: ltr; }
.feature-visual {
    background: var(--bg-light); border-radius: var(--radius-lg);
    padding: 40px; min-height: 320px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border);
}
.feature-mockup {
    background: white; border-radius: var(--radius);
    padding: 24px; width: 100%; box-shadow: var(--shadow-sm);
}
.feature-content .section-label { margin-bottom: 8px; }
.feature-content h3 {
    font-size: 28px; font-weight: 800; color: var(--text);
    margin-bottom: 16px;
}
.feature-content p { font-size: 16px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.feature-list { list-style: none; }
.feature-list li {
    font-size: 15px; color: var(--text);
    padding: 8px 0; padding-left: 28px; position: relative;
}
.feature-list li::before {
    content: ''; position: absolute; left: 0; top: 14px;
    width: 12px; height: 12px; border-radius: 3px;
    background: var(--bg-blue); border: 2px solid var(--navy);
}
@media (max-width: 768px) {
    .feature-section { grid-template-columns: 1fr; gap: 32px; }
    .feature-section.reverse { direction: ltr; }
}

/* ── INDUSTRIES ── */
.industries-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px;
}
.industry-tag {
    display: flex; align-items: center; gap: 12px;
    background: white; padding: 16px 20px;
    border-radius: var(--radius); border: 1px solid var(--border);
    font-size: 15px; font-weight: 500; color: var(--text);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    text-decoration: none;
}
.industry-tag:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); transform: translateY(-2px); color: var(--navy); }
.industry-tag .tag-icon { font-size: 20px; }

/* ── TESTIMONIALS ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.testimonial-card {
    background: white; border-radius: var(--radius);
    padding: 32px; border: 1px solid var(--border);
    position: relative;
}
.testimonial-card::before {
    content: '"'; font-size: 60px; font-weight: 800;
    color: var(--bg-blue); position: absolute; top: 16px; left: 24px;
    line-height: 1;
}
.testimonial-card blockquote {
    font-size: 16px; line-height: 1.7; color: var(--text);
    font-style: italic; margin-bottom: 20px;
    position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .author-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--navy); color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px;
}
.testimonial-author .author-name { font-weight: 600; color: var(--text); font-size: 15px; }
.testimonial-author .author-role { font-size: 13px; color: var(--text-muted); }

/* ── FAQ ── */
.faq-list { max-width: 720px; }
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.faq-q {
    font-size: 17px; font-weight: 600; color: var(--text);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; font-size: 22px; color: var(--navy); }
.faq-a {
    font-size: 15px; color: var(--text-light); line-height: 1.7;
    max-height: 0; overflow: hidden; transition: max-height 0.3s, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 12px; }
.faq-item.open .faq-q::after { content: '−'; }

/* ── DEMO / VIDEO ── */
.video-wrapper {
    position: relative; border-radius: var(--radius-lg);
    overflow: hidden; background: var(--text);
    aspect-ratio: 16/9; max-width: 800px; margin: 0 auto;
    box-shadow: var(--shadow-lg);
}
.video-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.contact-card {
    background: white; border-radius: var(--radius);
    padding: 32px; text-align: center;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s;
}
.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-card .contact-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--bg-blue); color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin: 0 auto 16px;
}
.contact-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--text-light); margin-bottom: 12px; }
.contact-card a.card-link {
    font-size: 15px; font-weight: 600; color: var(--navy);
}

/* ── OFFICES ── */
.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.office-card {
    background: white; border-radius: var(--radius);
    padding: 28px; border: 1px solid var(--border);
}
.office-card h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.office-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.office-card .flag { font-size: 24px; margin-bottom: 8px; display: block; }
@media (max-width: 768px) {
    .office-grid { grid-template-columns: 1fr; }
}

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.blog-card {
    background: white; border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden; transition: box-shadow 0.3s, transform 0.3s;
    text-decoration: none; color: inherit; display: block;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); color: inherit; }
.blog-card .card-cover {
    height: 180px; background: var(--bg-blue);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.blog-card .card-cover .cover-icon { font-size: 48px; }
.blog-card .card-body { padding: 24px; }
.blog-card .card-type {
    font-size: 12px; font-weight: 600; color: var(--red);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.blog-card h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ── NEWSLETTER ── */
.newsletter { background: var(--bg-blue); }
.newsletter-box { text-align: center; max-width: 500px; margin: 0 auto; }
.newsletter-box h2 { font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.newsletter-box p { font-size: 16px; color: var(--text-light); margin-bottom: 24px; }

/* ── CTA SECTION ── */
.cta-section {
    background: var(--navy);
    padding: 64px 24px; text-align: center;
}
.cta-section h2 { font-size: 28px; font-weight: 800; color: white; margin-bottom: 12px; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-section .btn-primary { background: white; color: var(--navy); }
.cta-section .btn-primary:hover { background: #f0f0f0; color: var(--navy); }
.cta-section .btn-primary::after { background: var(--navy); color: white; }

/* ── FOOTER ── */
.site-footer {
    background: var(--text); color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px;
    margin-bottom: 48px;
}
.footer-brand .footer-logo {
    font-size: 22px; font-weight: 800; color: white;
    margin-bottom: 8px;
}
.footer-brand .footer-logo .logo-cpq { color: var(--red-light); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.powered-by {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: rgba(255,255,255,0.5);
    padding: 6px 14px; border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.08);
    margin-top: 4px;
}
.powered-by a { color: rgba(255,255,255,0.8); }
.powered-by a:hover { color: white; }
.footer-col h4 {
    font-size: 14px; font-weight: 700; color: white;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer-col a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px; text-align: center;
    font-size: 13px; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ── ODOO MODULE CARDS ── */
.module-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 700px; }
.module-card {
    background: white; border-radius: var(--radius);
    padding: 28px; border: 1px solid var(--border);
    text-align: center;
}
.module-card .badge-row { display: flex; gap: 6px; justify-content: center; margin-bottom: 12px; }
.module-badge {
    display: inline-block; font-size: 11px; font-weight: 600;
    padding: 3px 10px; border-radius: var(--radius-pill);
    background: var(--bg-blue); color: var(--navy);
}
.module-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.module-card .module-price { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
@media (max-width: 600px) {
    .module-grid { grid-template-columns: 1fr; }
}

/* ── RESOURCE CARDS ── */
.resource-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.resource-card {
    background: white; border-radius: var(--radius);
    padding: 24px; border: 1px solid var(--border);
    text-decoration: none; color: inherit; display: block;
    transition: box-shadow 0.3s;
}
.resource-card:hover { box-shadow: var(--shadow-md); color: inherit; }
.resource-card .resource-type {
    font-size: 12px; font-weight: 600; color: var(--red);
    text-transform: uppercase; margin-bottom: 8px;
}
.resource-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.resource-card p { font-size: 14px; color: var(--text-light); }

/* ── DEMO WALKTHROUGH ── */
.walkthrough-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.walk-step {
    text-align: center; padding: 24px 16px;
    background: white; border-radius: var(--radius);
    border: 1px solid var(--border);
}
.walk-step .step-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--navy); color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
    margin: 0 auto 12px;
}
.walk-step h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.walk-step p { font-size: 13px; color: var(--text-muted); }

/* ── BOOKING ── */
.booking-card {
    background: var(--bg-blue); border-radius: var(--radius-lg);
    padding: 48px; text-align: center; max-width: 600px; margin: 0 auto;
}
.booking-card h2 { font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.booking-card p { font-size: 16px; color: var(--text-light); margin-bottom: 24px; }
.booking-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-opt {
    display: block; padding: 14px; background: white;
    border-radius: var(--radius); border: 1px solid var(--border);
    text-decoration: none; color: var(--text); font-size: 14px; font-weight: 500;
    transition: border-color 0.3s;
}
.booking-opt:hover { border-color: var(--navy); color: var(--navy); }
.booking-opt .opt-icon { display: block; font-size: 20px; margin-bottom: 4px; }
@media (max-width: 600px) { .booking-options { grid-template-columns: 1fr; } }

/* ── QUICK LINKS ── */
.quick-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.quick-card {
    display: block; padding: 24px; background: white;
    border-radius: var(--radius); border: 1px solid var(--border);
    text-decoration: none; color: inherit;
    transition: box-shadow 0.3s;
}
.quick-card:hover { box-shadow: var(--shadow-md); color: inherit; }
.quick-card .quick-icon { font-size: 24px; margin-bottom: 8px; display: block; }
.quick-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.quick-card p { font-size: 13px; color: var(--text-light); }

/* ── COMPARISON NOTE ── */
.comparison-note {
    background: var(--bg-blue); border-radius: var(--radius-lg);
    padding: 32px; margin-top: 48px;
    border-left: 4px solid var(--navy);
}
.comparison-note h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.comparison-note p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }
.mt-32 { margin-top: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-32 { margin-bottom: 32px; }

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── ADDITIONAL CAPABILITY CARDS ── */
.capability-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

/* ── INDUSTRY PAGES ── */
.industry-hero {
    padding: 140px 0 60px;
    background: var(--bg);
}
.industry-hero .hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.industry-hero .industry-icon { font-size: 64px; margin-bottom: 16px; display: block; }
.industry-hero h1 {
    font-size: clamp(32px, 4.5vw, 48px); font-weight: 800;
    color: var(--text); line-height: 1.15; margin-bottom: 16px;
}
.industry-hero h1 span { color: var(--navy); }
.industry-hero .hero-desc { font-size: 18px; line-height: 1.6; color: var(--text-light); margin-bottom: 32px; }
.industry-hero-visual {
    background: var(--bg-light); border-radius: var(--radius-lg); padding: 40px;
    border: 1px solid var(--border); min-height: 300px;
    display: flex; align-items: center; justify-content: center;
}
@media (max-width: 900px) {
    .industry-hero .hero-grid { grid-template-columns: 1fr; }
    .industry-hero-visual { display: none; }
}

.pain-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.pain-card {
    background: #fef7f7; border-radius: var(--radius);
    padding: 28px; border: 1px solid #f5d5d5;
}
.pain-card .pain-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.pain-card h3 { font-size: 17px; font-weight: 700; color: var(--red-dark); margin-bottom: 8px; }
.pain-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

.solution-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.solution-card {
    background: #f0f7ff; border-radius: var(--radius);
    padding: 28px; border: 1px solid #d0e0f5;
}
.solution-card .sol-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.solution-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.solution-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

.results-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px;
}
.result-card {
    text-align: center; padding: 28px 16px;
    background: white; border-radius: var(--radius);
    border: 1px solid var(--border);
}
.result-card .result-num { font-size: 36px; font-weight: 800; color: var(--navy); display: block; }
.result-card .result-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

.use-case-list { max-width: 720px; }
.use-case-item {
    display: flex; gap: 16px; padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.use-case-item .uc-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.use-case-item h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.use-case-item p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

.other-industries { display: flex; gap: 12px; flex-wrap: wrap; }
.other-industries a {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; background: white; border: 1px solid var(--border);
    border-radius: var(--radius-pill); font-size: 14px; font-weight: 500;
    color: var(--text); text-decoration: none; transition: all 0.3s;
}
.other-industries a:hover { border-color: var(--navy); color: var(--navy); }
