/* ========================================
   Global Terminal Aesthetic Styles
   Used across all pages
   ======================================== */

/* JetBrains Mono for terminal/code text */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ---- Page Hero (Shorter for non-homepage) ---- */
.page-hero {
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: white;
}

.page-hero .hero-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .page-hero .hero-grid-layout {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.page-hero-center {
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: white;
}

/* ---- Code Badge (Simpler) ---- */
.code-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: #0f172a;
    border-radius: 0.375rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    color: #4ade80;
    margin-bottom: 1.5rem;
}

/* ---- Tool Marquee ---- */
.tool-marquee-section {
    padding: 4rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.tool-marquee-track {
    display: flex;
    gap: 4rem;
    animation: marquee 30s linear infinite;
}

.tool-marquee-track:hover {
    animation-play-state: paused;
}

.tool-logo {
    height: 2rem;
    opacity: 0.5;
    filter: grayscale(1);
    transition: all 0.15s ease-out;
    flex-shrink: 0;
}

.tool-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---- FAQ Accordion ---- */
.faq-section {
    padding: 5rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease-out;
}

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

.faq-question .icon {
    font-size: 1.25rem;
    color: #64748b;
    transition: transform 0.2s ease-out;
}

.faq-item.open .faq-question .icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.7;
}

/* ---- Process Timeline ---- */
.timeline-section {
    padding: 5rem 0;
    background: white;
}

.timeline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .timeline-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.timeline-step {
    position: relative;
    text-align: center;
}

.timeline-day {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: #137fec;
    background: rgba(19, 127, 236, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.timeline-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: white;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.15s ease-out;
}

.timeline-icon .material-symbols-outlined {
    font-size: 1.5rem;
    color: #64748b;
}

.timeline-step:hover .timeline-icon {
    border-color: #137fec;
    background: #137fec;
}

.timeline-step:hover .timeline-icon .material-symbols-outlined {
    color: white;
}

.timeline-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.timeline-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
}

/* ---- Team Stats Terminal ---- */
.team-terminal {
    background: #0f172a;
    border-radius: 1rem;
    overflow: hidden;
    font-family: 'JetBrains Mono', monospace;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.team-terminal-header {
    background: #1e293b;
    padding: 0.875rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #334155;
}

.team-terminal-body {
    padding: 1.5rem;
}

.team-terminal-box {
    border: 1px solid #334155;
    border-radius: 0.5rem;
    overflow: hidden;
}

.team-terminal-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #334155;
    font-size: 0.8125rem;
}

.team-terminal-row:last-child {
    border-bottom: none;
}

.team-terminal-row .label {
    color: #94a3b8;
}

.team-terminal-row .value {
    color: #4ade80;
    font-weight: 600;
}

/* ---- Insight Cards ---- */
.insight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .insight-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.insight-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.15s ease-out;
}

.insight-card:hover {
    border-color: rgba(19, 127, 236, 0.3);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.insight-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: #137fec;
    margin-bottom: 1rem;
}

.insight-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.insight-text {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
}

/* ---- Book Page Split ---- */
.book-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .book-split {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.book-info-list {
    background: #0f172a;
    border-radius: 1rem;
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 2rem;
}

.book-info-list .line {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.8125rem;
}

.book-info-list .number {
    color: #64748b;
}

.book-info-list .text {
    color: #e2e8f0;
}

.book-checklist {
    margin-top: 1.5rem;
}

.book-checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: #475569;
}

.book-checklist-item .icon {
    color: #22c55e;
    font-size: 1.25rem;
}

.calendar-embed {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    min-height: 500px;
}

/* ---- Research Disclaimer ---- */
.research-disclaimer {
    background: #0f172a;
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    line-height: 1.8;
    color: #64748b;
    margin-top: 3rem;
}

/* ---- Hero Section ---- */
.hero-split {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid-layout {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-left {
    z-index: 1;
}

.hero-right {
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: #0f172a;
    border-radius: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4ade80;
    border: 1px solid #1e293b;
    margin-bottom: 2rem;
}

.hero-badge .pulse-dot {
    position: relative;
    width: 0.5rem;
    height: 0.5rem;
}

.hero-badge .pulse-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse-ring 2s ease-out infinite;
}

.hero-badge .pulse-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #22c55e;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Hero Headlines */
.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin: 0 0 1.5rem;
}

.hero-headline .gradient-text {
    background: linear-gradient(135deg, #137fec 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 2rem;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.hero-trust-icon {
    color: #137fec;
}

/* ---- Terminal Window ---- */
.terminal-window {
    width: 100%;
    max-width: 520px;
    background: #0f172a;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 100px -20px rgba(19, 127, 236, 0.3);
    font-family: 'JetBrains Mono', monospace;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    background: #1e293b;
    border-bottom: 1px solid #334155;
}

.terminal-dots {
    display: flex;
    gap: 0.5rem;
}

.terminal-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.terminal-dot.red {
    background: #ef4444;
}

.terminal-dot.yellow {
    background: #eab308;
}

.terminal-dot.green {
    background: #22c55e;
}

.terminal-title {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    color: #64748b;
}

.terminal-body {
    padding: 1.5rem;
    min-height: 320px;
    position: relative;
}

.terminal-line {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(5px);
    animation: terminal-line-appear 0.3s ease forwards;
}

.terminal-line.success .terminal-icon {
    color: #4ade80;
}

.terminal-line.info .terminal-icon {
    color: #38bdf8;
}

.terminal-line.prompt .terminal-icon {
    color: #a78bfa;
}

.terminal-icon {
    flex-shrink: 0;
    font-size: 0.875rem;
}

.terminal-text {
    color: #e2e8f0;
}

.terminal-text .highlight {
    color: #4ade80;
}

.terminal-text .muted {
    color: #64748b;
}

.terminal-text .accent {
    color: #38bdf8;
}

/* Terminal Box */
.terminal-box {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem 0;
}

.terminal-box-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #38bdf8;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.terminal-box-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    font-size: 0.8125rem;
}

.terminal-box-item .label {
    color: #94a3b8;
}

.terminal-box-item .value {
    color: #4ade80;
    font-weight: 600;
}

.terminal-box-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid #334155;
    font-size: 0.875rem;
    font-weight: 700;
}

.terminal-box-total .label {
    color: #e2e8f0;
}

.terminal-box-total .value {
    color: #4ade80;
}

/* Progress Bar */
.terminal-progress {
    margin: 1rem 0;
}

.terminal-progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    color: #94a3b8;
}

.terminal-progress-bar {
    height: 0.5rem;
    background: #334155;
    border-radius: 9999px;
    overflow: hidden;
}

.terminal-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #137fec, #4ade80);
    border-radius: 9999px;
    width: 0;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Blinking Cursor */
.terminal-cursor {
    display: inline-block;
    width: 0.5rem;
    height: 1rem;
    background: #4ade80;
    margin-left: 0.25rem;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Scanning Effect */
.terminal-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4ade80, transparent);
    opacity: 0.5;
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes terminal-line-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger terminal lines */
.terminal-line:nth-child(1) {
    animation-delay: 0.2s;
}

.terminal-line:nth-child(2) {
    animation-delay: 0.5s;
}

.terminal-line:nth-child(3) {
    animation-delay: 0.8s;
}

.terminal-line:nth-child(4) {
    animation-delay: 1.1s;
}

.terminal-line:nth-child(5) {
    animation-delay: 1.4s;
}

.terminal-line:nth-child(6) {
    animation-delay: 1.7s;
}

/* ---- Stats Bar ---- */
.stats-bar {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 3rem;
    background: #e2e8f0;
    display: none;
}

@media (min-width: 768px) {
    .stat-item:not(:last-child)::after {
        display: block;
    }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number .gradient {
    background: linear-gradient(135deg, #137fec 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

/* ---- Process Section ---- */
.process-section {
    padding: 5rem 0;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

/* Connecting line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e2e8f0;
    display: none;
}

@media (min-width: 768px) {
    .process-grid::before {
        display: block;
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-circle {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: white;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.2s ease-out;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.process-circle .material-symbols-outlined {
    font-size: 2rem;
    color: #64748b;
    transition: color 0.2s ease-out;
}

.process-step:hover .process-circle {
    border-color: #137fec;
    transform: scale(1.05);
    box-shadow: 0 10px 25px -5px rgba(19, 127, 236, 0.15);
}

.process-step:hover .process-circle .material-symbols-outlined {
    color: #137fec;
}

.process-step.active .process-circle {
    background: #137fec;
    border-color: #137fec;
}

.process-step.active .process-circle .material-symbols-outlined {
    color: white;
}

.process-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.process-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 200px;
}

/* ---- Services Grid ---- */
.services-section {
    padding: 5rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.services-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card-new {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.15s ease-out;
}

.service-card-new:hover {
    border-color: rgba(19, 127, 236, 0.3);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-icon-new {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(19, 127, 236, 0.1);
    color: #137fec;
    transition: all 0.15s ease-out;
}

.service-card-new:hover .service-icon-new {
    background: #137fec;
    color: white;
}

.service-stat-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #16a34a;
    background: #f0fdf4;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    border: 1px solid #dcfce7;
}

.service-title-new {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.service-desc-new {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-link-new {
    font-size: 0.875rem;
    font-weight: 700;
    color: #137fec;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.15s ease-out;
}

.service-link-new:hover {
    gap: 0.5rem;
}

/* ---- Case Study Preview ---- */
.case-preview-section {
    padding: 5rem 0;
    background: white;
}

.case-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .case-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.case-preview-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.15s ease-out;
}

.case-preview-card:hover {
    border-color: rgba(19, 127, 236, 0.3);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.case-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.case-preview-company {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.case-preview-industry {
    font-size: 0.75rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
}

.case-preview-metric {
    font-size: 2rem;
    font-weight: 900;
    color: #137fec;
    margin: 1rem 0 0.5rem;
}

.case-preview-before,
.case-preview-after {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.case-preview-before strong,
.case-preview-after strong {
    color: #0f172a;
}

.case-preview-quote {
    font-size: 0.875rem;
    font-style: italic;
    color: #475569;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    margin-top: 1rem;
    border-left: 3px solid #137fec;
}

/* ---- Industry Cards ---- */
.industry-section {
    padding: 5rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

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

@media (min-width: 768px) {
    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .industry-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.industry-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.15s ease-out;
}

.industry-card:hover {
    border-color: rgba(19, 127, 236, 0.3);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.industry-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.industry-icon .material-symbols-outlined {
    font-size: 1.75rem;
}

.industry-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.industry-stat {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.industry-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: #137fec;
}

/* ---- About/Why Us Section ---- */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #137fec;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.about-headline {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.about-text {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
    font-size: 0.9375rem;
}

.about-list .icon {
    color: #137fec;
    flex-shrink: 0;
}

.about-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0f172a;
}

.about-stat-label {
    font-size: 0.75rem;
    color: #64748b;
}

.about-image {
    background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
    border-radius: 1rem;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.about-image-placeholder {
    text-align: center;
    color: #64748b;
}

.about-image-placeholder .material-symbols-outlined {
    font-size: 4rem;
    color: #137fec;
    margin-bottom: 1rem;
}

/* ---- Quotes Section ---- */
.quotes-section {
    padding: 5rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.quotes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .quotes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.quote-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #137fec;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: Georgia, serif;
}

.quote-text {
    font-size: 1rem;
    font-style: italic;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quote-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #137fec 0%, #0ea5e9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
}

.quote-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
}

.quote-title {
    font-size: 0.8125rem;
    color: #64748b;
}

/* ---- Final CTA Dark ---- */
.cta-dark {
    padding: 5rem 0;
    background: #0f172a;
    text-align: center;
}

.cta-dark-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-dark-headline {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.cta-dark-subheadline {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-dark-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-dark-fine-print {
    font-size: 0.8125rem;
    color: #64748b;
}

/* Button variants for dark bg */
.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    background: white;
    color: #0f172a;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease-out;
}

.btn-white:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease-out;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ---- Section Headers ---- */
.section-header-new {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #137fec;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-headline {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subheadline {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
}

/* ---- Responsive Fixes ---- */
@media (max-width: 767px) {
    .hero-split {
        padding: 7rem 0 4rem;
        text-align: center;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .terminal-window {
        max-width: 100%;
    }

    .terminal-body {
        padding: 1rem;
        min-height: 280px;
    }
}