/* ==========================================
   TourHub Pro - Home Page Styles (v3)
   Professional SaaS landing page
   ========================================== */

/* Design Tokens */
:root {
    --thp-home-gradient-start: #0d6efd;
    --thp-home-gradient-mid: #6610f2;
    --thp-home-gradient-end: #d63384;
    --thp-home-text: #212529;
    --thp-home-text-muted: #6c757d;
    --thp-home-text-secondary: #495057;
    --thp-home-border: #e2e8f0;
    --thp-home-bg-subtle: #f8fafc;
    --thp-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --thp-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    --thp-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.04);
    --thp-radius-sm: 8px;
    --thp-radius-md: 12px;
    --thp-radius-lg: 16px;
    --thp-radius-xl: 20px;
    --thp-section-gap: 0;
    --thp-section-padding: 3rem 1.25rem;
    --thp-blue: #0d6efd;
    --thp-blue-bg: #e7f1ff;
    --thp-amber: #f59e0b;
    --thp-green: #198754;
    --thp-green-bg: #d1e7dd;
    --thp-purple: #6610f2;
    --thp-purple-bg: #f3e8ff;
    --thp-orange: #fd7e14;
    --thp-orange-bg: #ffe5d0;
    --thp-teal: #0dcaf0;
    --thp-gold: #ffc107;
    --thp-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   Landing Page Layout Overrides
   ========================================== */
body.thp-landing-page .thp-topbar {
    display: none !important;
}

body.thp-landing-page .thp-content {
    padding: 0 !important;
    max-width: 100% !important;
}

/* ==========================================
   Landing Navigation Bar
   ========================================== */
.thp-landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.thp-landing-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.thp-landing-nav__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.thp-landing-nav__brand-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--thp-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.thp-landing-nav.scrolled .thp-landing-nav__brand {
    color: var(--thp-home-text);
}

.thp-landing-nav.scrolled .thp-landing-nav__brand-icon {
    background: var(--thp-blue-bg);
    color: var(--thp-blue);
}

.thp-landing-nav__links {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
}

.thp-landing-nav__links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.thp-landing-nav__links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.thp-landing-nav.scrolled .thp-landing-nav__links a {
    color: var(--thp-home-text-secondary);
}

.thp-landing-nav.scrolled .thp-landing-nav__links a:hover {
    color: var(--thp-blue);
    background: var(--thp-blue-bg);
}

.thp-landing-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.thp-landing-nav__lang {
    display: block;
}

.thp-landing-nav__lang .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.85rem;
    padding: 0.35rem 0.6rem !important;
}

.thp-landing-nav.scrolled .thp-landing-nav__lang .nav-link {
    color: var(--thp-home-text-secondary) !important;
}

.thp-landing-nav__login {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.45rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.thp-landing-nav__login:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.thp-landing-nav.scrolled .thp-landing-nav__login {
    background: var(--thp-blue);
    color: white;
    border-color: var(--thp-blue);
}

.thp-landing-nav.scrolled .thp-landing-nav__login:hover {
    background: #0b5ed7;
    border-color: #0b5ed7;
}

/* ==========================================
   Scroll Reveal
   ========================================== */
.home-section {
    margin-bottom: var(--thp-section-gap);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.home-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.home-section.no-reveal {
    opacity: 1;
    transform: none;
}

/* ==========================================
   Section Headers (Global)
   ========================================== */
.section-header {
    margin-bottom: 2rem;
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--thp-purple), var(--thp-blue));
    color: white;
    padding: 0.35rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--thp-home-text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Content max-width for wide screens */
.thp-landing-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* ==========================================
   Section 1: Hero (Full-Bleed)
   ========================================== */
.hero-section {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(214, 51, 132, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0d6efd 0%, #6610f2 50%, #d63384 100%);
    border-radius: 0;
    padding: 7rem 1.25rem 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.25rem;
}

.hero-badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-actions .btn-hero-primary {
    background: white;
    color: var(--thp-blue);
    border: none;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    border-radius: var(--thp-radius-sm);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: all var(--thp-transition);
    text-align: center;
    min-height: 48px;
    font-size: 1rem;
}

.hero-actions .btn-hero-primary:hover {
    background: #f0f4ff;
    color: var(--thp-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-actions .btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 0.85rem 1.75rem;
    font-weight: 500;
    border-radius: var(--thp-radius-sm);
    transition: all var(--thp-transition);
    text-align: center;
    min-height: 48px;
    font-size: 1rem;
}

.hero-actions .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
}

/* Hero AI Demo Card */
.hero-demo-card {
    margin-top: 2rem;
}

/* Hero Social Proof Strip */
.hero-social-proof {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 1;
    text-align: center;
}

/* ==========================================
   Highlights Strip (between Hero & Problem)
   ========================================== */
.thp-highlights-section {
    background: white;
    border-bottom: 1px solid var(--thp-home-border);
    padding: 3rem 1.25rem;
}

.thp-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.thp-highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

.thp-highlight-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--thp-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-bottom: 0.75rem;
    transition: transform var(--thp-transition), box-shadow var(--thp-transition);
}

.thp-highlight-item:hover .thp-highlight-icon {
    transform: translateY(-2px);
    box-shadow: var(--thp-shadow-sm);
}

.thp-highlight-icon-blue { background: #e7f1ff; color: var(--thp-blue); }
.thp-highlight-icon-purple { background: #f3e8ff; color: var(--thp-purple); }
.thp-highlight-icon-green { background: #d1e7dd; color: var(--thp-green); }
.thp-highlight-icon-orange { background: #ffe5d0; color: var(--thp-orange); }
.thp-highlight-icon-teal { background: #cff4fc; color: #0aa2c0; }
.thp-highlight-icon-indigo { background: #e8e0f8; color: #4c3fbf; }

.thp-highlight-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thp-highlight-text strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--thp-home-text);
    margin-bottom: 0.2rem;
}

.thp-highlight-text span {
    font-size: 0.8rem;
    color: var(--thp-home-text-muted);
    line-height: 1.45;
    max-width: 180px;
}

/* ==========================================
   Section 2: Problem → Solution
   ========================================== */
.problem-section {
    padding: var(--thp-section-padding);
    background: var(--thp-home-bg-subtle);
}

.problem-section .section-header,
.problem-section .problem-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.problem-card {
    background: white;
    border: 1px solid var(--thp-home-border);
    border-radius: var(--thp-radius-xl);
    overflow: visible;
    box-shadow: var(--thp-shadow-sm);
    transition: transform var(--thp-transition), box-shadow var(--thp-transition);
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--thp-shadow-lg);
}

/* Tag + Icon row */
.problem-tag-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.problem-tag-row .problem-tag {
    margin-bottom: 0;
}

.problem-tag-row .problem-icon {
    margin-bottom: 0;
}

/* Tag labels */
.problem-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.problem-tag-pain {
    background: #fef2f2;
    color: #dc2626;
}

.problem-tag-solve {
    background: #ecfdf5;
    color: #059669;
}

.problem-half {
    padding: 1.75rem 1.5rem;
    position: relative;
}

.problem-half-problem {
    background: #fffbfa;
    border-left: none;
    border-radius: var(--thp-radius-xl) var(--thp-radius-xl) 0 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #fecaca;
}

.problem-half-solution {
    background: #f0fdf4;
    border-left: none;
    border-radius: 0 0 var(--thp-radius-xl) var(--thp-radius-xl);
    padding-top: 1.5rem;
    flex: 1;
}

/* Transform arrow divider */
.problem-transform {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 0;
    z-index: 2;
}

.problem-transform-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #059669);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 3px 10px rgba(5, 150, 105, 0.3);
    position: relative;
    z-index: 3;
}

.problem-half-problem .problem-icon {
    color: #dc2626;
}

.problem-half-solution .problem-icon {
    color: #059669;
}

.problem-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--thp-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.problem-half-problem .problem-icon {
    background: #fee2e2;
}

.problem-half-solution .problem-icon {
    background: #d1fae5;
}

.problem-half h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--thp-home-text);
    line-height: 1.4;
}

.problem-half .problem-desc {
    font-size: 0.85rem;
    color: #9b1c1c;
    opacity: 0.7;
    margin-bottom: 0;
    line-height: 1.55;
}

.problem-half .solution-title {
    color: #065f46;
    font-size: 1rem;
}

.problem-half p {
    font-size: 0.85rem;
    color: var(--thp-home-text-secondary);
    margin-bottom: 0;
    line-height: 1.55;
}

/* ==========================================
   Section 3: Workflow
   ========================================== */
.workflow-section {
    background: white;
    border-top: 1px solid var(--thp-home-border);
    border-bottom: 1px solid var(--thp-home-border);
    border-radius: 0;
    padding: var(--thp-section-padding);
}

.workflow-section .section-header,
.workflow-section .workflow-steps {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile: vertical timeline */
.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.workflow-step {
    background: var(--thp-home-bg-subtle);
    border: 1px solid var(--thp-home-border);
    border-radius: var(--thp-radius-md);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: transform var(--thp-transition), box-shadow var(--thp-transition);
}

.workflow-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--thp-shadow-md);
}

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--thp-blue);
    color: white;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
}

.step-number-2 { background: var(--thp-purple); box-shadow: 0 2px 8px rgba(102, 16, 242, 0.3); }
.step-number-3 { background: var(--thp-green); box-shadow: 0 2px 8px rgba(25, 135, 84, 0.3); }
.step-number-4 { background: var(--thp-orange); box-shadow: 0 2px 8px rgba(253, 126, 20, 0.3); }

.step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 0.875rem;
    border-radius: var(--thp-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.step-icon-blue { background: linear-gradient(135deg, var(--thp-blue), #3b82f6); }
.step-icon-purple { background: linear-gradient(135deg, var(--thp-purple), #8b5cf6); }
.step-icon-green { background: linear-gradient(135deg, var(--thp-green), #22c55e); }
.step-icon-orange { background: linear-gradient(135deg, var(--thp-orange), #f97316); }

.step-label {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--thp-home-text-muted);
}

/* Workflow connector (vertical on mobile) */
.workflow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    height: 36px;
    justify-content: center;
    color: var(--thp-home-border);
}

.workflow-connector-line {
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--thp-blue), var(--thp-purple));
    border-radius: 2px;
}

.workflow-connector-chevron {
    display: none;
}

.workflow-connector-arrow {
    color: var(--thp-purple);
    font-size: 0.7rem;
    margin-top: 2px;
}

/* ==========================================
   Section 4: Platform Features
   ========================================== */
.thp-features-section {
    padding: var(--thp-section-padding);
    background: var(--thp-home-bg-subtle);
}

.thp-features-section .section-header,
.thp-features-section .thp-features-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.thp-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.thp-feature-card {
    background: white;
    border: 1px solid var(--thp-home-border);
    border-radius: var(--thp-radius-md);
    padding: 1.5rem;
    transition: transform var(--thp-transition), box-shadow var(--thp-transition);
}

.thp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--thp-shadow-md);
}

.thp-feature-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--thp-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 0.875rem;
}

.thp-feature-icon-blue { background: #e7f1ff; color: var(--thp-blue); }
.thp-feature-icon-purple { background: #f3e8ff; color: var(--thp-purple); }
.thp-feature-icon-green { background: #d1e7dd; color: var(--thp-green); }
.thp-feature-icon-orange { background: #ffe5d0; color: var(--thp-orange); }
.thp-feature-icon-teal { background: #cff4fc; color: #0aa2c0; }
.thp-feature-icon-amber { background: #fef3c7; color: #d97706; }
.thp-feature-icon-indigo { background: #e8e0f8; color: #4c3fbf; }
.thp-feature-icon-rose { background: #ffe4e6; color: #e11d48; }
.thp-feature-icon-cyan { background: #e0f2fe; color: #0284c7; }

.thp-feature-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--thp-home-text);
    margin-bottom: 0.375rem;
}

.thp-feature-card-desc {
    font-size: 0.85rem;
    color: var(--thp-home-text-muted);
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.thp-feature-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.thp-feature-card-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--thp-home-text-secondary);
}

.thp-feature-card-list li i {
    color: var(--thp-green);
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* ==========================================
   Section 4b: AI Showcase (Full-Bleed)
   ========================================== */
.ai-showcase-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 0;
    padding: 4rem 1.25rem;
    color: white;
    overflow: hidden;
    position: relative;
}

/* Subtle dot pattern overlay */
.ai-showcase-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.ai-showcase-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.ai-showcase-content {
    margin-bottom: 2.5rem;
}

/* AI Demo Tabs */
.thp-ai-demo-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.thp-ai-demo-tab {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #94a3b8;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--thp-transition);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.thp-ai-demo-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
}

.thp-ai-demo-tab.active {
    background: linear-gradient(135deg, var(--thp-blue), var(--thp-purple));
    color: white;
    border-color: transparent;
}

.thp-ai-demo-tab:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

.ai-demo-panel {
    display: none;
}

.ai-demo-panel.active {
    display: block;
}

/* AI Demo Card */
.ai-demo-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--thp-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
    width: 100%;
}

.ai-demo-header {
    background: linear-gradient(90deg, #1e293b 0%, #0f172a 100%);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-demo-header-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ai-demo-header-dot.red { background: #ef4444; }
.ai-demo-header-dot.yellow { background: #f59e0b; }
.ai-demo-header-dot.green { background: #22c55e; }

.ai-demo-header-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: #94a3b8;
}

.ai-demo-body {
    padding: 1.25rem;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.8rem;
}

.ai-demo-input {
    color: #60a5fa;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.ai-demo-input::before {
    content: '> ';
    color: #64748b;
}

.ai-demo-processing {
    height: 4px;
    background: linear-gradient(90deg, var(--thp-blue), var(--thp-purple), var(--thp-blue));
    background-size: 200% 100%;
    border-radius: 2px;
    margin: 0.75rem 0;
    opacity: 0;
}

.ai-demo-processing.animating {
    opacity: 1;
    animation: processing-bar 1.5s ease-in-out;
}

@keyframes processing-bar {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.ai-demo-output {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.ai-output-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #22c55e;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.ai-output-row.visible {
    opacity: 1;
    transform: translateX(0);
}

.ai-label {
    color: #64748b;
    min-width: 80px;
    font-size: 0.8rem;
}

.ai-value {
    color: #22c55e;
    font-weight: 600;
    font-size: 0.8rem;
}

.ai-confidence {
    color: #60a5fa !important;
    font-weight: 700;
}

/* AI Demo Replay Button */
.ai-demo-replay-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #94a3b8;
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all var(--thp-transition);
    margin-top: 0.75rem;
    min-height: 44px;
}

.ai-demo-replay-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
}

/* AI Capabilities */
.ai-capabilities {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.ai-capability-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ai-capability-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--thp-radius-md);
    background: rgba(13, 110, 253, 0.2);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ai-capability-text strong {
    display: block;
    font-size: 0.95rem;
    color: #f1f5f9;
    margin-bottom: 0.25rem;
}

.ai-capability-text span {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* ==========================================
   Section 4b: Operations Suite
   ========================================== */
.thp-operations-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #faf5ff 50%, #f0fdf4 100%);
}

.thp-operations-section .section-header {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.thp-operations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.thp-operations-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.thp-operations-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.thp-operations-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.thp-operations-icon-blue {
    background: rgba(13, 110, 253, 0.1);
    color: var(--thp-blue);
}

.thp-operations-icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.thp-operations-icon-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.thp-operations-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.thp-operations-card-desc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.thp-operations-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.thp-operations-card-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #475569;
}

.thp-operations-card-features li i {
    color: #10b981;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Card visuals */
.thp-operations-card-visual {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

/* Voucher mini visual */
.thp-voucher-mini {
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
}

.thp-voucher-mini-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.thp-voucher-mini-header i {
    color: var(--thp-blue);
}

.thp-voucher-mini-status {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
}

.thp-voucher-badge {
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.thp-voucher-badge-sent {
    background: #dbeafe;
    color: #1d4ed8;
}

.thp-voucher-badge-confirmed {
    background: #d1fae5;
    color: #065f46;
}

.thp-voucher-badge-used {
    background: #ede9fe;
    color: #5b21b6;
}

/* Feedback mini visual */
.thp-feedback-mini {
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.thp-feedback-mini-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #f59e0b;
    font-size: 0.85rem;
}

.thp-feedback-mini-stars span {
    color: #1e293b;
    font-weight: 700;
    margin-left: 0.25rem;
}

.thp-feedback-mini-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #64748b;
}

.thp-feedback-mini-bar span:first-child {
    font-weight: 600;
    min-width: 28px;
}

.thp-feedback-mini-bar span:last-child {
    font-weight: 700;
    color: #10b981;
    min-width: 24px;
}

.thp-feedback-mini-bar-track {
    flex: 1;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.thp-feedback-mini-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 3px;
}

.thp-feedback-mini-sentiment {
    display: flex;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.thp-sentiment-positive {
    color: #10b981;
}

.thp-sentiment-neutral {
    color: #94a3b8;
}

/* Partner mini visual */
.thp-partner-mini {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.thp-partner-mini-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #f8fafc;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #475569;
}

.thp-partner-mini-item i {
    color: #8b5cf6;
    width: 16px;
    text-align: center;
}

/* ==========================================
   Section 5: Testimonials
   ========================================== */
.thp-testimonial-section {
    padding: var(--thp-section-padding);
}

.thp-testimonial-section .section-header {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.thp-testimonial-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.thp-testimonial-viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    touch-action: pan-y; /* allow vertical scroll, JS handles horizontal swipe */
    -webkit-overflow-scrolling: touch;
}

.thp-testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Mobile: 1 slide per view */
.thp-testimonial-slide {
    min-width: 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.thp-testimonial-card {
    background: white;
    border: 1px solid var(--thp-home-border);
    border-radius: var(--thp-radius-lg);
    padding: 1.75rem;
    text-align: center;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform var(--thp-transition), box-shadow var(--thp-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.thp-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Navigation arrows */
.thp-testimonial-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--thp-home-border);
    background: white;
    color: var(--thp-home-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--thp-transition);
    flex-shrink: 0;
    font-size: 0.85rem;
    box-shadow: var(--thp-shadow-sm);
}

.thp-testimonial-arrow:hover {
    background: var(--thp-blue);
    color: white;
    border-color: var(--thp-blue);
    box-shadow: var(--thp-shadow-md);
}

.thp-testimonial-arrow:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* Star ratings */
.thp-testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.15rem;
    margin-bottom: 1rem;
}

.thp-testimonial-stars i {
    color: var(--thp-gold);
    font-size: 0.9rem;
}

.thp-testimonial-quote {
    font-size: 0.95rem;
    color: var(--thp-home-text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
    position: relative;
    padding: 0 0.5rem;
    flex: 1;
}

.thp-testimonial-quote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--thp-blue);
    opacity: 0.5;
    position: absolute;
    top: -1.25rem;
    left: -0.5rem;
    line-height: 1;
}

.thp-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.thp-testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--thp-blue), var(--thp-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.thp-testimonial-info {
    text-align: left;
}

.thp-testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--thp-home-text);
}

.thp-testimonial-role {
    font-size: 0.8rem;
    color: var(--thp-home-text-muted);
}

.thp-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.375rem;
    margin-top: 1.5rem;
    width: 100%;
}

.thp-testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--thp-transition), transform var(--thp-transition);
    border: 2px solid var(--thp-home-border);
    padding: 0;
    background: transparent;
}

.thp-testimonial-dot.active {
    border-color: var(--thp-blue);
    background: var(--thp-blue);
    transform: scale(1.15);
}

.thp-testimonial-dot:focus-visible {
    outline: 2px solid var(--thp-blue);
    outline-offset: 2px;
}

/* ==========================================
   Section 6: Pricing
   ========================================== */
.thp-pricing-section {
    padding: var(--thp-section-padding);
}

.thp-pricing-section .section-header,
.thp-pricing-section .thp-pricing-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile: featured tier first, stacked vertically */
.thp-pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.thp-pricing-card {
    background: white;
    border: 1px solid var(--thp-home-border);
    border-radius: var(--thp-radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform var(--thp-transition), box-shadow var(--thp-transition);
}

.thp-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--thp-shadow-lg);
}

.thp-pricing-card.featured {
    border: 2px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, var(--thp-blue), var(--thp-purple)) border-box;
    box-shadow: var(--thp-shadow-md), 0 0 0 1px rgba(13, 110, 253, 0.1);
    order: -1;
}

.thp-pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--thp-radius-lg);
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.03), rgba(102, 16, 242, 0.03));
    pointer-events: none;
}

.thp-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--thp-blue), var(--thp-purple));
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.thp-pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--thp-home-text);
    margin-bottom: 0.25rem;
}

.thp-pricing-desc {
    font-size: 0.85rem;
    color: var(--thp-home-text-muted);
    margin-bottom: 1.25rem;
}

.thp-pricing-price {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--thp-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.thp-pricing-card.featured .thp-pricing-price {
    font-size: 3rem;
}

.thp-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.thp-pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--thp-home-text-secondary);
    border-bottom: 1px solid var(--thp-home-bg-subtle);
}

.thp-pricing-features li:last-child {
    border-bottom: none;
}

.thp-pricing-features li i {
    color: var(--thp-green);
    font-size: 0.7rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.thp-pricing-card.featured .thp-pricing-features li i {
    color: var(--thp-blue);
}

.thp-pricing-cta {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--thp-radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--thp-transition);
    text-align: center;
    font-size: 0.95rem;
    min-height: 44px;
}

.thp-pricing-cta-primary {
    background: linear-gradient(135deg, var(--thp-blue), var(--thp-purple));
    color: white;
    border: none;
}

.thp-pricing-cta-primary:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.thp-pricing-cta-secondary {
    background: white;
    color: var(--thp-blue);
    border: 1px solid var(--thp-home-border);
}

.thp-pricing-cta-secondary:hover {
    border-color: var(--thp-blue);
    color: var(--thp-blue);
    background: var(--thp-blue-bg);
}

/* ==========================================
   Section 7: Final CTA (Full-Bleed)
   ========================================== */
.cta-section {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(214, 51, 132, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0d6efd 0%, #6610f2 50%, #d63384 100%);
    border-radius: 0;
    padding: 4rem 1.25rem;
    color: white;
    text-align: center;
    box-shadow: none;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.btn-cta-primary {
    background: white;
    color: var(--thp-blue);
    border: none;
    padding: 0.85rem 2rem;
    font-weight: 600;
    border-radius: var(--thp-radius-sm);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: all var(--thp-transition);
    min-height: 48px;
    font-size: 1rem;
}

.btn-cta-primary:hover {
    background: #f0f4ff;
    color: var(--thp-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 0.85rem 2rem;
    font-weight: 500;
    border-radius: var(--thp-radius-sm);
    transition: all var(--thp-transition);
    min-height: 48px;
    font-size: 1rem;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
}

/* ==========================================
   Footer Strip
   ========================================== */
.thp-footer-strip {
    text-align: center;
    padding: 1.5rem;
    color: var(--thp-home-text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--thp-home-border);
}

.thp-footer-strip i {
    color: var(--thp-blue);
    margin: 0 0.25rem;
}

/* ==========================================
   Reduced Motion
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    .home-section {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .ai-demo-processing.animating {
        animation: none;
        opacity: 1;
    }

    .ai-output-row {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .thp-testimonial-track {
        transition: none;
    }

    .hero-actions .btn-hero-primary:hover,
    .hero-actions .btn-hero-secondary:hover,
    .problem-card:hover,
    .thp-feature-card:hover,
    .thp-operations-card:hover,
    .thp-pricing-card:hover,
    .thp-testimonial-card:hover,
    .workflow-step:hover,
    .btn-cta-primary:hover,
    .btn-cta-secondary:hover {
        transform: none;
    }

    .thp-landing-nav {
        transition: none;
    }
}

/* ==========================================
   Tablet (768px+)
   ========================================== */
@media (min-width: 768px) {
    :root {
        --thp-section-padding: 3.5rem 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: 8rem 2rem 4rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .thp-landing-nav {
        padding: 0.75rem 2rem;
    }

    .thp-landing-nav__links {
        display: flex;
    }

    /* Highlights: 3 columns */
    .thp-highlights-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 1.5rem;
    }

    .thp-highlights-section {
        padding: 3.5rem 2rem;
    }

    /* Problem cards: two-column layout */
    .problem-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .problem-card {
        margin-bottom: 0;
    }

    .problem-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
    }

    /* Features: 2 columns on tablet */
    .thp-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Operations: 2 columns on tablet */
    .thp-operations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .thp-operations-grid .thp-operations-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
    }

    /* Testimonials: 2 per view on tablet */
    .thp-testimonial-slide {
        min-width: 50%;
    }

    .thp-testimonial-card {
        padding: 1.75rem;
    }

    .thp-testimonial-quote {
        font-size: 0.95rem;
    }

    .ai-showcase-section {
        padding: 4.5rem 2rem;
    }

    .cta-section {
        padding: 4.5rem 2rem;
    }

    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* ==========================================
   Desktop (1024px+)
   ========================================== */
@media (min-width: 1024px) {
    :root {
        --thp-section-padding: 4.5rem 2.5rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    /* Hero: two-column layout */
    .hero-section {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 8rem 2.5rem 4rem;
        min-height: 90vh;
        gap: 3rem;
    }

    .hero-content {
        flex: 1;
        max-width: 55%;
    }

    .hero-demo-card {
        flex: 0 0 42%;
        margin-top: 0;
    }

    .hero-title {
        font-size: 3.25rem;
    }

    .hero-subtitle {
        max-width: 500px;
        font-size: 1.1rem;
    }

    .hero-social-proof {
        text-align: left;
    }

    .thp-landing-nav {
        padding: 0.875rem 2.5rem;
    }

    /* Highlights: 6 columns */
    .thp-highlights-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    /* Problem: 3 cards in a row */
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }

    .problem-card:last-child {
        grid-column: auto;
        max-width: none;
        justify-self: auto;
    }

    /* Workflow: horizontal */
    .workflow-steps {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .workflow-step {
        min-width: 160px;
        flex: 1;
    }

    .workflow-connector {
        flex-direction: row;
        height: auto;
        padding: 0 0.5rem;
    }

    .workflow-connector-line {
        width: 40px;
        height: 3px;
        background: linear-gradient(to right, var(--thp-blue), var(--thp-purple));
    }

    .workflow-connector-chevron {
        display: inline;
        color: var(--thp-purple);
        font-size: 0.75rem;
        margin-left: -2px;
    }

    .workflow-connector-arrow {
        display: none;
    }

    /* Features: 3 columns on desktop */
    .thp-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .thp-features-section {
        padding: 4.5rem 2.5rem;
    }

    /* Operations: 3 columns on desktop */
    .thp-operations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .thp-operations-grid .thp-operations-card:last-child {
        grid-column: auto;
        max-width: none;
        justify-self: auto;
    }

    .thp-operations-section {
        padding: 5rem 2.5rem;
    }

    /* AI Showcase: two-column */
    .ai-showcase-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .ai-showcase-content {
        margin-bottom: 0;
    }

    .ai-demo-card {
        max-width: 400px;
    }

    .ai-showcase-section {
        padding: 5rem 2.5rem;
    }

    /* Testimonials: 3 per view on desktop */
    .thp-testimonial-slide {
        min-width: calc(100% / 3);
    }

    .thp-testimonial-arrow {
        width: 44px;
        height: 44px;
    }

    /* Pricing: 3 columns with featured centered */
    .thp-pricing-grid {
        flex-direction: row;
        align-items: start;
    }

    .thp-pricing-card {
        flex: 1;
    }

    .thp-pricing-card.featured {
        order: 0;
        transform: scale(1.06);
    }

    .thp-pricing-card.featured:hover {
        transform: scale(1.06) translateY(-4px);
    }

    /* CTA */
    .cta-title {
        font-size: 2.25rem;
    }

    .cta-section {
        padding: 5rem 2.5rem;
    }
}

/* ==========================================
   Large Desktop (1280px+)
   ========================================== */
@media (min-width: 1280px) {
    .hero-title {
        font-size: 3.75rem;
    }

    .workflow-step {
        min-width: 180px;
    }
}
