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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #ffffff;
}

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

/* Header */
header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 2rem;
}

.logo {
    color: #01A6A6;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo svg {
    height: 24px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: color 0.3s;
    /* display: flex; */
    /* align-items: center; */
    gap: 0.5rem;
}

.nav-links a:hover {
    color: #0f172a;
}

/* Dropdown Styles */
.dropdown-toggle::after {
    content: "▼";
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.nav-item:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
    min-width: 800px;
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    width: 100%;
}

.dropdown-column {
    min-width: 0;
}

.dropdown-column-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    border-bottom: 2px solid #01A6A6;
    padding-bottom: 0.5rem;
}

.dropdown-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-links li {
    margin-bottom: 0.75rem;
}

.dropdown-link {
    display: block;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid transparent;
    line-height: 1.2;
}

.dropdown-link:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
    transform: translateY(-1px);
}

.dropdown-link-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 0.4rem;
    display: block;
    width: 100%;
    clear: both;
}

.dropdown-link-description {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
    display: block;
    width: 100%;
    clear: both;
    margin-top: 0;
}

.dropdown-link.featured {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #93c5fd;
}

.dropdown-link.featured .dropdown-link-name {
    color: #1e40af;
}

.dropdown-link.featured:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #60a5fa;
}

/* Navigation Right Side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}


.nav-cta {
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
    white-space: nowrap;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero .subhead {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.5;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #01A6A6;
    color: white;
    border: 2px solid #01A6A6;
}

.btn-primary:hover {
    background: #018181;
    border-color: #018181;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #cbd5e1;
    border: 2px solid #64748b;
}

.btn-secondary:hover {
    background: #64748b;
    color: white;
    border-color: #64748b;
}

.hero-microcopy {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 1rem;
    font-style: italic;
}

/* Feature Grid 3-Column */
.feature-grid-3col {
    padding: 4rem 0;
    background: #f8fafc;
}

.eyebrow {
    text-align: center;
    color: #01A6A6;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-column {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.feature-column p,
.feature-column ul {
    color: #475569;
    line-height: 1.6;
}

.feature-column ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.feature-column li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature-column li:before {
    content: "•";
    color: #01A6A6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.feature-column strong {
    color: #01A6A6;
    font-weight: 600;
}

/* Section Base */
.section {
    padding: 4rem 0;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro {
    font-size: 1.2rem;
    color: #475569;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Pain-Aspiration Split Section */
.pain-aspiration-split {
    background: #ffffff;
}

.pain-aspiration {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.pain-column,
.aspiration-column {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
}

.pain-column {
    border-left: 4px solid #ef4444;
}

.aspiration-column {
    border-left: 4px solid #10b981;
}

.pain-column h3 {
    color: #dc2626;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.aspiration-column h3 {
    color: #059669;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pain-column ul,
.aspiration-column ul {
    list-style: none;
}

.pain-column li,
.aspiration-column li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.pain-column li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.aspiration-column li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.bridge-sentence {
    background: #eff6ff;
    border: 2px solid #dbeafe;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 1.1rem;
    color: #1e40af;
    font-weight: 500;
}

/* Process Steps 3-Column Section */
.process-steps-3col {
    background: #f8fafc;
}

.steps-diagram {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #01A6A6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0f172a;
}

.step-card p {
    color: #475569;
    line-height: 1.6;
}

.assurance-bullets {
    background: #eff6ff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.assurance-bullets ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.assurance-bullets li {
    position: relative;
    padding-left: 1.5rem;
    color: #1e40af;
    font-weight: 500;
}

.assurance-bullets li:before {
    content: "✓";
    color: #01A6A6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.btn-link {
    color: #01A6A6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Card Tiles Grid */
.card-tiles-grid {
    background: #ffffff;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.card-tile {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #01A6A6;
    transition: all 0.3s;
    cursor: pointer;
}

.card-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.card-tile h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.card-tagline {
    font-style: italic;
    color: #01A6A6;
    margin-bottom: 1rem;
}

.card-tile ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.card-tile li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    color: #475569;
    font-size: 0.9rem;
}

.card-tile li:before {
    content: "→";
    color: #01A6A6;
    position: absolute;
    left: 0;
}

.card-link {
    color: #01A6A6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    font-style: italic;
}

.card-link:hover {
    text-decoration: underline;
}

/* Icon Cards Grid */
.icon-cards-grid {
    background: #f8fafc;
}

.icon-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.icon-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    cursor: pointer;
    text-align: center;
}

.icon-card:hover {
    transform: translateY(-3px);
}

.icon-visual {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.icon-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.icon-tagline {
    font-size: 0.9rem;
    color: #01A6A6;
    font-weight: 500;
    margin-bottom: 1rem;
}

.icon-card p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Stats Proof 3-Column Section */
.stats-proof-3col {
    background: #ffffff;
}

.stats-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-column {
    text-align: center;
}

.stat-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.stat-list {
    list-style: none;
}

.stat-list li {
    margin-bottom: 0.75rem;
    color: #475569;
}


.stat-highlight {
    color: #01A6A6;
    font-weight: 600;
}

.trust-strip {
    background: #f0f9ff;
    border: 2px solid #bae6fd;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: #0369a1;
    font-weight: 500;
}

/* Role Tiles Grid Section */
.role-tiles-grid {
    background: #f8fafc;
}

.role-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.role-tile {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #01A6A6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.role-title {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.role-description {
    color: #475569;
    font-style: italic;
    line-height: 1.6;
}

/* Summary Content Section */
.summary-content {
    background: #ffffff;
}

.summary-content-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
}

.summary-content-text p {
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq {
    background: #f8fafc;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e2e8f0;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question:after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #01A6A6;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 0;
    color: #475569;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 1rem 1.5rem 1.5rem;
}

.faq-footer {
    text-align: center;
    margin-top: 2rem;
}

/* Closing CTA */
.closing-cta {
    background: #0f172a;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.closing-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.closing-cta p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.closing-cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.closing-cta .btn-primary {
    background: #01A6A6;
    border-color: #01A6A6;
}

.closing-cta-secondary {
    color: #01A6A6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.closing-cta-secondary:hover {
    text-decoration: underline;
}

/* Placeholder Content */
.placeholder-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.placeholder-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Footer */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-secondary-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.footer-secondary-nav a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-secondary-nav a:hover {
    color: #ffffff;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-bottom-left p {
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    color: #94a3b8;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.375rem;
}

.social-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-secondary-nav {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Solutions Page Styles */

/* Quick Chooser Section */
.quick-chooser {
    background: #f8fafc;
}

.chooser-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.chooser-chip {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.chooser-chip:hover {
    border-color: #01A6A6;
    background: #eff6ff;
    color: #1e40af;
    transform: translateY(-2px);
}

.chooser-microcopy {
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
    max-width: 600px;
    margin: 2rem auto 0;
}

/* Solutions Hub Grid */
.solutions-hub {
    background: #ffffff;
}

.solutions-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.solution-hub-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    height: fit-content;
}

.solution-hub-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    border-color: #01A6A6;
}

.solution-hub-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.solution-oneliner {
    font-size: 1.1rem;
    color: #01A6A6;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.solution-best-for {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.solution-outcomes h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.solution-outcomes ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.solution-outcomes li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #475569;
    font-size: 0.9rem;
}

.solution-outcomes li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.solution-hub-cta {
    color: #01A6A6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.solution-hub-cta:hover {
    border-bottom-color: #01A6A6;
}

/* Value Delivery Section */
.value-delivery {
    background: #f8fafc;
}

.value-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.value-step {
    text-align: center;
    padding: 1.5rem;
}

.value-step .step-number {
    width: 60px;
    height: 60px;
    background: #01A6A6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.value-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.value-step p {
    color: #475569;
    line-height: 1.6;
}

/* Cross-Industry Section */
.cross-industry {
    background: #ffffff;
}

.industry-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.industry-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.industry-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.industry-item p {
    color: #64748b;
    font-size: 0.9rem;
    font-style: italic;
}

.link-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Proof Outcomes Section */
.proof-outcomes {
    background: #f8fafc;
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stats-microcopy {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    max-width: 700px;
    margin: 2rem auto 0;
}

/* Closing CTA Microcopy */
.closing-cta-microcopy {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Industries Page Styles */

/* Industry Chooser Chips */
.industry-chooser-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.industry-chooser-chip {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.industry-chooser-chip:hover {
    border-color: #01A6A6;
    background: #eff6ff;
    color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.chip-icon {
    font-size: 1.25rem;
}

/* Industries Hub Grid */
.industries-hub {
    background: #ffffff;
}

.industries-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.industry-hub-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    height: fit-content;
}

.industry-hub-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    border-color: #01A6A6;
}

.industry-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.industry-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    border-radius: 10px;
}

.industry-hub-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.industry-oneliner {
    font-size: 1.1rem;
    color: #01A6A6;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.industry-wins h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.industry-wins ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.industry-wins li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
}

.industry-wins li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.industry-use-cases {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.industry-hub-cta {
    color: #01A6A6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.industry-hub-cta:hover {
    border-bottom-color: #01A6A6;
}

/* Common Outcomes Section */
.common-outcomes {
    background: #f8fafc;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.outcome-chip {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.outcome-chip:hover {
    border-color: #01A6A6;
    background: #eff6ff;
    transform: translateY(-2px);
}

.outcome-icon {
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    border-radius: 8px;
}

.outcome-text {
    font-weight: 500;
    color: #0f172a;
    font-size: 0.95rem;
}

/* Getting Started Section */
.getting-started {
    background: #ffffff;
}

.getting-started-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.getting-started-step {
    text-align: center;
    padding: 1.5rem;
}

.getting-started-step .step-number {
    width: 60px;
    height: 60px;
    background: #01A6A6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.getting-started-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.getting-started-step p {
    color: #475569;
    line-height: 1.6;
}

/* Alternative Exploration Section */
.alternative-exploration {
    background: #f8fafc;
}

.alternative-links {
    text-align: center;
    margin-top: 2rem;
}

.primary-alternative-link {
    display: inline-block;
    color: #01A6A6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid #01A6A6;
}

.primary-alternative-link:hover {
    color: #1e40af;
    border-bottom-color: #1e40af;
}

.secondary-alternative-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.secondary-link:hover {
    color: #01A6A6;
    background: #eff6ff;
}

footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 3rem 0 1rem;
}

/* Large screen optimization for dropdowns */
@media (min-width: 1200px) {
    .dropdown-menu {
        min-width: 900px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subhead {
        font-size: 1.1rem;
    }

    .nav-links {
        display: none;
    }

    .dropdown-menu {
        min-width: 300px;
        left: -100px;
    }

    .dropdown-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .pain-aspiration {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .steps-diagram {
        grid-template-columns: 1fr;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .icon-cards {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    .closing-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .section h2 {
        font-size: 2rem;
    }
    .assurance-bullets ul {
        grid-template-columns: 1fr;
    }
    /* Solutions page responsive */
    .chooser-chips {
        flex-direction: column;
        align-items: center;
    }
    .chooser-chip {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    .solutions-hub-grid {
        grid-template-columns: 1fr;
    }
    .value-steps {
        grid-template-columns: 1fr;
    }
    .industry-list {
        grid-template-columns: 1fr;
    }
    .stats-band {
        grid-template-columns: repeat(2, 1fr);
    }
    .link-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .role-tiles {
        grid-template-columns: 1fr;
    }
}

/* ================================
   Manufacturing Page Styles
   ================================ */

.manufacturing-reality {
    background-color: #f8f9fa;
}

.challenges-section {
    margin: 2rem 0;
}

.challenges-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.challenges-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1.1rem;
    color: #495057;
}

.challenges-list li:before {
    content: '⚠️';
    margin-right: 0.75rem;
    font-size: 1rem;
}

.challenges-conclusion {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #fff;
    border-left: 4px solid #0066cc;
    font-style: italic;
}

.what-changes {
    background-color: #fff;
}

.what-it-reflects,
.what-teams-can-do {
    margin: 2rem 0;
}

.what-it-reflects ul,
.what-teams-can-do ul {
    list-style: none;
    padding: 0;
}

.what-it-reflects li,
.what-teams-can-do li {
    padding: 0.5rem 0;
    color: #495057;
}

.what-it-reflects li:before {
    content: '📊';
    margin-right: 0.75rem;
}

.what-teams-can-do li:before {
    content: '✅';
    margin-right: 0.75rem;
}

.manufacturing-use-cases {
    background-color: #f8f9fa;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.use-case-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.use-case-card h3 {
    color: #0066cc;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.use-case-tagline {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 1rem;
}

.use-case-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.use-case-card li {
    padding: 0.25rem 0;
    color: #495057;
}

.use-case-card li:before {
    content: '•';
    color: #0066cc;
    margin-right: 0.5rem;
    font-weight: bold;
}

.use-case-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
}

.use-case-link:hover {
    text-decoration: underline;
}

.use-case-note {
    margin-top: 1rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.how-teams-use-it {
    background-color: #fff;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.role-card {
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.role-card h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.role-card ul {
    list-style: none;
    padding: 0;
}

.role-card li {
    padding: 0.5rem 0;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

.role-card li:last-child {
    border-bottom: none;
}

.role-card li:before {
    content: '👤';
    margin-right: 0.75rem;
}

.manufacturing-outcomes {
    background-color: #f8f9fa;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.outcome-stat {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.outcome-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.outcome-label {
    color: #495057;
    font-size: 0.95rem;
    margin: 0;
}

.outcomes-note {
    margin-top: 2rem;
    text-align: center;
}

.outcomes-note p {
    margin: 0.5rem 0;
    color: #495057;
}

/* Responsive styles for manufacturing page */
@media (max-width: 768px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .roles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .outcomes-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .outcome-number {
        font-size: 1.5rem;
    }

    .challenges-list li {
        font-size: 1rem;
    }

    .use-case-card,
    .role-card {
        padding: 1rem;
    }
}

/* ================================
   Energy & Utilities Page Styles
   ================================ */

.energy-reality {
    background-color: #f8f9fa;
}

.energy-reality .challenges-list li:before {
    content: '⚡';
    margin-right: 0.75rem;
    font-size: 1rem;
}

.energy-use-cases {
    background-color: #f8f9fa;
}

.what-it-represents,
.what-teams-can-do {
    margin: 2rem 0;
}

.what-it-represents ul,
.what-teams-can-do ul {
    list-style: none;
    padding: 0;
}

.what-it-represents li,
.what-teams-can-do li {
    padding: 0.5rem 0;
    color: #495057;
}

.what-it-represents li:before {
    content: '🔌';
    margin-right: 0.75rem;
}

.what-teams-can-do li:before {
    content: '⚡';
    margin-right: 0.75rem;
}

.energy-outcomes {
    background-color: #f8f9fa;
}

.outcomes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.outcome-item {
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    text-align: center;
}

.outcome-item h4 {
    color: #0066cc;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.outcome-item p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
}

.outcomes-note {
    margin-top: 2rem;
    text-align: center;
}

.outcomes-note p {
    margin: 0.5rem 0;
    color: #495057;
    font-style: italic;
}

/* Responsive styles for energy page */
@media (max-width: 768px) {
    .outcomes-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .outcome-item {
        padding: 1rem;
    }
}

/* ================================
   Smart Buildings Page Styles
   ================================ */

.smart-buildings-reality {
    background-color: #f8f9fa;
}

.smart-buildings-reality .challenges-list li:before {
    content: '🏢';
    margin-right: 0.75rem;
    font-size: 1rem;
}

.smart-building-use-cases {
    background-color: #f8f9fa;
}

.what-it-represents ul li:before {
    content: '🏗️';
    margin-right: 0.75rem;
}

.what-teams-can-do ul li:before {
    content: '🔧';
    margin-right: 0.75rem;
}

.smart-building-outcomes {
    background-color: #f8f9fa;
}

.role-card li:before {
    content: '🏢';
    margin-right: 0.75rem;
}

/* ===== HIGHLIGHT-CALLOUT SECTION ===== */
.highlight-callout {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 3rem 0;
    position: relative;
}

.highlight-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #01A6A6, #06b6d4);
    border-radius: 2px;
}

.highlight-callout .container {
    max-width: 800px;
    margin: 0 auto;
}

.callout-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.callout-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #0f172a;
    margin: 0 0 1rem 0;
}

.callout-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 1.5rem 0;
}

.callout-content .inline-cta {
    margin: 0;
}

.callout-content .btn-link {
    font-size: 1rem;
    color: #01A6A6;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: inline-block;
}

.callout-content .btn-link:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

/* Responsive adjustments for highlight-callout */
@media (max-width: 768px) {
    .highlight-callout {
        padding: 2rem 0;
    }
    
    .callout-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .callout-content h3 {
        font-size: 1.3rem;
    }
    
    .callout-content p {
        font-size: 1rem;
    }
}

/* ===== CANONICAL REFERENCE STYLING ===== */
.canonical-reference {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
}

.canonical-reference p {
    margin: 0 0 1rem 0;
    font-style: italic;
    color: #64748b;
    font-size: 0.95rem;
}

.canonical-reference .inline-cta {
    margin: 0;
}

.canonical-reference .btn-link {
    color: #01A6A6;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: inline-block;
}

.canonical-reference .btn-link:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

/* ================================
   Cookie Settings Page Styles
   ================================ */

.cookie-settings-panel {
    background: #f8fafc;
    border-radius: 0.5rem;
    padding: 2rem;
    margin: 2rem 0;
}

.cookie-category {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.cookie-status.required {
    background: #94a3b8;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.3s;
    border-radius: 28px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #01A6A6;
}

input:checked + .slider:before {
    transform: translateX(22px);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: #64748b;
    border: 2px solid #64748b;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

.btn-outline:hover {
    background: #64748b;
    color: white;
}

@media (max-width: 768px) {
    .cookie-settings-panel {
        padding: 1rem;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* ================================
   Demo Page Styles
   ================================ */

.demo-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    color: #1e293b;
}

.demo-hero h1 {
    color: #1e293b;
}

.demo-hero .subhead {
    color: #475569;
}

.demo-note {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #64748b;
}

.demo-main {
    padding: 4rem 0;
}

.demo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.demo-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.demo-section h2 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.demo-section ul,
.demo-section ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.demo-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.demo-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.demo-form-container {
    position: sticky;
    top: 2rem;
}

.demo-form-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.demo-form-card h3 {
    margin: 0 0 0.5rem 0;
    color: #1e293b;
    font-size: 1.25rem;
}

.form-subtitle {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #01A6A6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.demo-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.form-note {
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.success-message h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.success-message p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
    .demo-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .demo-form-container {
        position: static;
    }
    
    .demo-main {
        padding: 2rem 0;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .demo-form-card {
        padding: 1.5rem;
    }
    
    .demo-info {
        gap: 2rem;
    }
}

/* ================================
   Guide Detail Page Styles
   ================================ */

.guide-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    color: #1e293b;
    padding: 4rem 0;
}

.guide-hero h1 {
    color: #1e293b;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.guide-hero .subhead {
    color: #475569;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.guide-note {
    font-size: 1rem;
    color: #64748b;
    font-style: italic;
}

.guide-content {
    padding: 4rem 0;
}

.guide-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
    align-items: start;
}

.guide-toc {
    position: sticky;
    top: 2rem;
}

.toc-sticky h4 {
    margin: 0 0 1rem 0;
    color: #1e293b;
    font-size: 1.1rem;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.25rem 0;
    display: block;
    transition: color 0.3s;
}

.toc-list a:hover {
    color: #01A6A6;
}

.guide-main {
    max-width: none;
}

.guide-metadata {
    margin-bottom: 3rem;
}

.metadata-card {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 2rem;
    border-left: 4px solid #01A6A6;
}

.metadata-card h3 {
    margin: 0 0 1.5rem 0;
    color: #1e293b;
}

.metadata-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metadata-item {
    display: flex;
    gap: 0.5rem;
}

.metadata-label {
    font-weight: 600;
    color: #374151;
    min-width: 80px;
}

.metadata-value {
    color: #64748b;
}

.guide-nav {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.guide-nav-link {
    color: #01A6A6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.guide-nav-link:hover {
    text-decoration: underline;
}

.guide-section {
    margin-bottom: 4rem;
    scroll-margin-top: 2rem;
}

.guide-section h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.guide-section h3 {
    color: #374151;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
}

.guide-section h4 {
    color: #475569;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem 0;
}

.guide-section p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #374151;
}

.guide-section ul,
.guide-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.guide-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #374151;
}

.concept-callout,
.mistakes-callout {
    background: #eff6ff;
    border-left: 4px solid #01A6A6;
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 2rem;
    margin: 2rem 0;
}

.concept-callout h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1e293b;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.step-item {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #01A6A6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.step-item h4 {
    margin: 0 0 0.75rem 0;
    color: #1e293b;
    font-size: 1.1rem;
}

.step-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #64748b;
}

.step-note {
    text-align: center;
    font-style: italic;
    color: #01A6A6;
    font-weight: 500;
    margin-top: 1rem;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.application-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 3px solid #01A6A6;
}

.application-item h4 {
    margin: 0;
    color: #374151;
    font-size: 1rem;
    line-height: 1.4;
}

.execution-cta {
    text-align: center;
    margin: 2rem 0;
}

.takeaways-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.takeaway-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
}

.takeaway-bullet {
    color: #01A6A6;
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 1rem;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.next-step-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.3s;
    text-align: center;
}

.next-step-card:hover {
    border-color: #01A6A6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.next-step-label {
    font-size: 0.9rem;
    color: #64748b;
}

.next-step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

@media (max-width: 1024px) {
    .guide-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guide-toc {
        position: static;
        order: -1;
    }
    
    .toc-sticky {
        background: #f8fafc;
        padding: 1.5rem;
        border-radius: 0.5rem;
    }
    
    .toc-list {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .toc-list li {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .guide-hero h1 {
        font-size: 2.5rem;
    }
    
    .metadata-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .next-steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}