/* Using Figtree from Google Fonts - loaded in HTML */

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

/* Better touch handling for mobile */
@media (hover: none) and (pointer: coarse) {
    * {
        -webkit-tap-highlight-color: rgba(30, 64, 175, 0.1);
    }
    
    a, button, .btn-primary, .btn-secondary, .btn-hero {
        touch-action: manipulation;
    }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

.fade-in.animated {
    opacity: 1;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.slide-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.slide-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .fade-in-up,
    .fade-in,
    .slide-in-left,
    .slide-in-right,
    .scale-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

:root {
    --primary-color: #1F2937;
    --accent-purple: #1E40AF;
    --bg-white: #FFFFFF;
    --bg-light: #FAFAFA;
    --bg-lighter: #F9FAFB;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light-gray: #9CA3AF;
    --border-gray: #E5E7EB;
    --border-light: #F3F4F6;
    --accent-subtle: #F9FAFB;
}

body {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-dark);
}

.nav-link-login {
    border: 1px solid var(--text-dark);
    padding: 10px 20px;
    border-radius: 6px;
    color: var(--text-dark) !important;
}

.nav-link-login:hover {
    background: var(--text-dark);
    color: var(--bg-white) !important;
}

.btn-signup {
    background: var(--accent-purple) !important;
    color: var(--bg-white) !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    border: 1px solid var(--accent-purple);
}

.btn-signup:hover {
    background: #1E3A8A !important;
    border-color: #1E3A8A !important;
    color: var(--bg-white) !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 140px 0 140px;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: start;
    position: relative;
    z-index: 2;
    padding-bottom: 100px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.hero-tagline {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--accent-purple);
    text-transform: uppercase;
    margin: 0;
    text-align: left;
}

.hero-title {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #1F2937;
    text-align: left;
    margin: 0;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
}

.hero-description {
    font-size: 18px;
    color: #4B5563;
    line-height: 1.7;
    text-align: left;
    margin: 0;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-background {
    display: none;
}

.hero-people {
    display: none;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--accent-purple);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid var(--accent-purple);
    min-height: 44px;
    justify-content: center;
}

.btn-primary:hover {
    background: #1E3A8A;
    border-color: #1E3A8A;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--bg-white);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    min-height: 44px;
    justify-content: center;
}

.btn-secondary:hover {
    border-color: var(--text-dark);
    background: var(--bg-light);
}

.btn-hero {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent-purple);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid var(--accent-purple);
}

.btn-hero:hover {
    background: #1E3A8A;
    border-color: #1E3A8A;
}

/* Clients Section */
.clients {
    padding: 80px 0;
    background: var(--bg-white);
    text-align: center;
}

/* Demos Section */
.demos {
    padding: 120px 0;
    background: var(--bg-white);
}

.demos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.demo-card {
    padding: 40px;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s;
}

.demo-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.demo-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.demo-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.demo-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

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

/* Stats Section */
.stats-section {
    padding: 120px 0;
    background: white;
}

.underlined-text {
    text-decoration: none;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

.stat-card {
    text-align: center;
    padding: 56px 48px;
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.stat-card:hover {
    border-color: var(--text-gray);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stat-card .stat-number {
    font-size: 64px;
    font-weight: 400;
    background: linear-gradient(135deg, #1F2937 0%, #1E40AF 50%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 16px;
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 19px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.stat-card .stat-note {
    font-size: 15px;
    color: var(--text-gray);
    margin-top: 12px;
    line-height: 1.5;
}

/* Voice Systems Section */
.voice-systems {
    padding: 120px 0;
    background: var(--bg-white);
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 80px;
}

.system-card {
    padding: 56px 48px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.system-card::before {
    display: none;
}

.system-card:hover {
    border-color: var(--text-gray);
    transform: translateY(-2px);
}

.system-card-receptionist {
    border-left: 1px solid var(--border-gray);
}

.system-card-sales {
    border-left: 4px solid var(--primary-color);
}

.system-header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-gray);
}

.system-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.system-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.system-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.system-feature:hover {
    opacity: 0.8;
}

.system-feature-icon {
    width: 6px;
    height: 6px;
    background: var(--text-light-gray);
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 12px;
}

.system-feature-content {
    flex: 1;
}

.system-feature-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.system-feature-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Client Results Section */
.client-results {
    padding: 120px 0;
    background: var(--bg-white);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.result-card {
    padding: 40px;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-gray);
}

.result-company {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.result-period {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-metric {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.metric-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.5;
}

.result-note {
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 10px;
}

/* Custom Solution Section */
.custom-solution {
    padding: 120px 0;
    background: var(--bg-white);
}

.custom-solution-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.solution-feature-card {
    padding: 0;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.solution-feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 40px 32px;
    border-bottom: 1px solid var(--border-gray);
}

.feature-category {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.feature-card-badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin-left: 20px;
}

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

.feature-items {
    padding: 30px 40px 40px;
}

.feature-items li {
    font-size: 15px;
    color: var(--text-gray);
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.7;
}

.feature-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.solution-cta {
    text-align: center;
    margin-top: 50px;
}

/* Calculator Section */
.calculator-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.calculator {
    max-width: 900px;
    margin: 80px auto 0;
    padding: 72px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-gray);
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.calc-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.calc-input {
    padding: 15px 20px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.calc-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.calc-button {
    padding: 18px 40px;
    background: var(--accent-purple);
    color: var(--bg-white);
    border: 1px solid var(--accent-purple);
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.calc-button:hover {
    background: #1E3A8A;
    border-color: #1E3A8A;
}

.calculator-result {
    text-align: center;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 12px;
}

.calc-result-value {
    font-size: 56px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.calc-result-label {
    font-size: 16px;
    color: var(--text-gray);
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-location {
    color: var(--text-gray);
    font-size: 14px;
}

.clients-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.clients-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.clients-link:hover {
    color: var(--primary-color);
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.client-logo {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light-gray);
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

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

/* Why Stall Section */
.why-stall-section {
    margin-top: 80px;
    padding: 120px 0;
    background: var(--bg-white);
}

.why-stall-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-stall-graphic {
    position: relative;
    width: 100%;
    height: 600px;
}

.abstract-3d-graphic {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.abstract-3d-graphic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.abstract-3d-graphic::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(-45deg);
}

.why-stall-text {
    max-width: 600px;
}

.why-stall-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: var(--text-dark);
}

.why-stall-intro {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 50px;
}

.why-stall-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stall-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.stall-icon {
    font-size: 24px;
    color: var(--text-dark);
    font-weight: 400;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.stall-content {
    flex: 1;
}

.stall-heading {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.stall-heading strong {
    font-weight: 700;
}

.stall-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Section Styles */
.section-title {
    font-size: 44px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -1.2px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-gray);
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 80px;
}

.step {
    padding: 48px 40px;
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    transition: all 0.3s;
}

.step:hover {
    background: var(--bg-lighter);
    border-color: var(--text-light-gray);
}

.step-number {
    font-size: 48px;
    font-weight: 400;
    background: linear-gradient(135deg, #1F2937 0%, #1E40AF 50%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.step-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.step-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-list {
    list-style: none;
    padding: 0;
}

.step-list li {
    font-size: 14px;
    color: var(--text-gray);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.step-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Solutions Section */
.solutions {
    padding: 120px 0;
    background: var(--bg-white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.solution-card {
    padding: 40px;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s;
}

.solution-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.solution-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.solution-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.solution-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--bg-white);
}

.features-content {
    max-width: 900px;
    margin: 0 auto;
}

.features-text {
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
}

.feature-check {
    color: var(--text-light-gray);
    font-weight: 400;
    font-size: 14px;
    flex-shrink: 0;
    margin-right: 8px;
    font-size: 18px;
}

.feature-name {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Industries Section */
.industries {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.industries::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 80px;
}

/* Tutorials Section */
.tutorials {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.tutorials::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tutorial-card {
    padding: 40px;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.tutorial-card:hover {
    background: var(--bg-white);
    border-color: rgba(30, 64, 175, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.1);
}

.tutorial-meta {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light-gray);
    margin-bottom: 12px;
}

.tutorial-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.tutorial-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.tutorial-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-purple);
    text-decoration: none;
    transition: all 0.2s;
}

.tutorial-link:hover {
    color: #1E40AF;
    transform: translateX(4px);
}

.industry-card {
    padding: 50px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(30, 64, 175, 0.03) 0%, transparent 100%);
    transition: top 0.4s ease;
    pointer-events: none;
}

.industry-card:hover {
    background: var(--bg-white);
    border-color: rgba(51, 65, 85, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(51, 65, 85, 0.12);
}

.industry-card:hover::after {
    top: 0;
}

.industry-header {
    padding: 0;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-gray);
    background: transparent;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.industry-card:hover .industry-header {
    border-bottom-color: rgba(30, 64, 175, 0.2);
}

.industry-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--text-gray);
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.industry-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover .industry-icon {
    color: var(--accent-purple);
    transform: translateY(-2px);
}

.industry-card:hover .industry-icon::before {
    opacity: 1;
}

.industry-tag {
    font-family: 'Figtree', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    margin: 0;
}

.industry-content {
    padding: 0;
}

.industry-text {
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    color: var(--text-dark);
    font-weight: 400;
}

/* Case Studies Section */
.case-studies {
    padding: 120px 0;
    background: var(--bg-white);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.case-study-card {
    padding: 40px;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s;
}

.case-study-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.case-study-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-gray);
}

.stat {
    flex: 1;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
}

.case-study-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.case-study-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.case-study-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: var(--primary-color);
    text-align: center;
    color: var(--bg-white);
}

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

.cta-title {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--bg-white);
}

.cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-section .btn-hero {
    background: var(--bg-white);
    color: var(--primary-color);
}

.cta-section .btn-hero:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.cta-section .btn-secondary {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.cta-section .btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.cta-note {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 30px;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 60px auto 0;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    font-family: 'Figtree', sans-serif;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--bg-white);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--bg-white);
}

.form-checkbox-label {
    font-size: 14px;
    color: var(--bg-white);
    line-height: 1.6;
    cursor: pointer;
    user-select: none;
}

.form-submit {
    width: 100%;
    margin-top: 10px;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        margin-top: 40px;
    }
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-white);
    border-top: 1px solid var(--border-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    text-align: left;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-gray);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: var(--text-gray);
    max-width: 300px;
    z-index: 1000;
}

/* Footer */
.footer {
    padding: 60px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-gray);
    text-align: center;
}

.footer-content {
    color: var(--text-gray);
    font-size: 14px;
}

/* AI Agents Section - Multi-view Carousel */
.agents-section {
    padding: 0 0 80px;
    margin-top: -80px;
    background: transparent;
    overflow: hidden;
    position: relative;
}

.container-full {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.agents-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.agents-display {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
    padding: 0 40px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.agent-card-side,
.agent-card-center {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Slide animation for side cards */
.agent-card-side.slide-left {
    animation: slideLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.agent-card-side.slide-right {
    animation: slideRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.agent-card-center.scale-in {
    animation: scaleInCenter 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideLeft {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scaleInCenter {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.agent-card-side {
    width: 300px;
    flex-shrink: 0;
}

.agent-card-center {
    width: 380px;
    height: 500px;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.agent-card-side .agent-background {
    position: relative;
    width: 100%;
    height: 100%;
}

.agent-card-center .agent-background {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Overlay as real element for immediate rendering */
.agent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    transform: translateZ(0); /* Force GPU layer */
    will-change: auto;
}

.agent-overlay-side {
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.85) 100%);
}

.agent-overlay-center {
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.25) 100%);
}

/* Keep pseudo-elements as fallback for initial page load */
.agent-card-side .agent-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.85) 100%);
    z-index: 1;
    display: none; /* Hide since we use real element now */
}

.agent-card-center .agent-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.25) 100%);
    z-index: 1;
    display: none; /* Hide since we use real element now */
}

.agent-background {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.agent-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Ensure overlays are always visible and rendered immediately */
.agent-card-side .agent-background::before,
.agent-card-center .agent-background::before {
    will-change: auto;
    transform: translateZ(0); /* Force GPU layer for immediate rendering */
}

/* Smooth crossfade animation for image transitions */
.agent-background img.fade-out {
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.agent-background img.fade-in {
    opacity: 0;
    transform: scale(1.02);
    animation: smoothFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes smoothFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.agent-card-side .agent-background img {
    filter: brightness(1.1) blur(0.5px);
    opacity: 0.75;
}

.agent-card-center .agent-background img {
    filter: brightness(1.08);
    opacity: 1;
}

.agent-label {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 12px 32px;
    border-radius: 28px;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
    z-index: 3;
    white-space: nowrap;
}

.agent-name-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: -0.2px;
}

.carousel-controls {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.carousel-btn-new {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid #E5E7EB;
    color: #6B7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    touch-action: manipulation;
}

.carousel-btn-new:hover {
    background: var(--accent-purple);
    color: white;
    border-color: var(--accent-purple);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
    transform: translateY(-1px);
}

.carousel-btn-new svg {
    width: 20px;
    height: 20px;
}

/* Workflow Section */
.workflow-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 80px;
}

.workflow-card {
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 48px;
    transition: border-color 0.3s;
}

.workflow-card:hover {
    border-color: var(--text-gray);
}

.workflow-card-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.workflow-card-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

.workflow-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 32px 0;
    min-height: 100px;
}

/* Simple flow visualization - Badge Style */
.workflow-visual.simple {
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.simple-badge {
    padding: 6px 16px;
    background: white;
    border: 1.5px solid #E5E7EB;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-gray);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.simple-badge.accent {
    background: var(--accent-purple);
    color: white;
    border-color: var(--accent-purple);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    padding: 8px 20px;
    font-weight: 600;
}

.simple-arrow {
    font-size: 16px;
    color: var(--text-light-gray);
}

/* Routing visualization - Centered with branches */
.workflow-visual.routing-simple {
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.routing-source {
    display: flex;
    justify-content: center;
}

.routing-source-badge {
    padding: 10px 24px;
    background: var(--accent-purple);
    color: white;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.3);
}

.routing-branches {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 340px;
    width: 100%;
}

.routing-branch {
    padding: 10px 16px;
    background: white;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-gray);
    transition: all 0.3s ease;
    text-align: center;
}

.routing-branch:hover {
    border-color: rgba(30, 64, 175, 0.3);
    color: var(--accent-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
}

.branch-line {
    display: none;
}

.workflow-visual.integration {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.integration-badge {
    padding: 12px 18px;
    background: white;
    border: 1.5px solid rgba(30, 64, 175, 0.15);
    border-radius: 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.integration-badge:hover {
    border-color: rgba(30, 64, 175, 0.35);
    color: var(--accent-purple);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.2);
    background: linear-gradient(to bottom, #ffffff, #eff6ff);
}

.eye-container {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
}

.eye-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.purple-eye {
    width: 80px;
    height: 54px;
    animation: eye-pulse 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(30, 64, 175, 0.3));
    transition: transform 0.3s ease;
}

.purple-eye:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(30, 64, 175, 0.4));
}

@keyframes eye-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.95;
        transform: scale(1.02);
    }
}

/* Growth visualization - Stacked Style */
.workflow-visual.growth {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    max-width: 280px;
    margin: 0 auto;
}

.growth-badge {
    padding: 10px 20px;
    background: white;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-gray);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    position: relative;
}

.growth-badge::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #E5E7EB;
    border-radius: 50%;
}

.growth-badge:nth-child(2)::before {
    background: #C4B5FD;
}

.growth-badge:nth-child(3)::before {
    background: #A78BFA;
}

.growth-badge:last-child {
    background: var(--accent-purple);
    color: white;
    border-color: var(--accent-purple);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    font-weight: 600;
}

.growth-badge:last-child::before {
    background: white;
}

/* Comparison Section */
.comparison-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(30, 64, 175, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.comparison-title {
    font-size: 48px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.comparison-title .vs {
    font-size: 24px;
    color: var(--text-light-gray);
    margin: 0 12px;
}

.btn-comparison {
    padding: 12px 24px;
    background: var(--bg-white);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.comparison-container {
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: 24px;
    padding: 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.comparison-left {
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 48px;
    position: relative;
    box-shadow: 0 2px 12px rgba(30, 64, 175, 0.04);
}

.comparison-icon {
    display: none;
}

.comparison-intro {
    margin: 0 0 24px 0;
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 500;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comparison-list li {
    color: var(--text-dark);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 16px;
    line-height: 1.5;
}

.check-icon {
    color: var(--accent-purple);
    font-weight: 400;
    font-size: 16px;
    margin-right: 4px;
    filter: drop-shadow(0 0 8px rgba(30, 64, 175, 0.3));
}

.comparison-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 12px;
}

.comparison-tag {
    background: var(--bg-lighter);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 8px 16px;
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    width: fit-content;
}

.comparison-list-right {
    margin: 0;
}

.comparison-list-right li {
    color: var(--text-dark);
    font-size: 15px;
    gap: 16px;
}

.x-icon {
    color: #6B7280;
    font-weight: 700;
    font-size: 18px;
}

/* Custom Solutions Section */
.custom-solutions-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.custom-solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 80px;
}

.custom-solution-card {
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

.custom-solution-card:hover {
    border-color: var(--text-gray);
}

.solution-dots {
    display: none;
}

.solution-dots-purple {
    display: none;
}

.solution-dots-blue {
    display: none;
}

.solution-dots-gray {
    display: none;
}

.solution-card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.solution-title-purple {
    color: var(--text-dark);
}

.solution-title-blue {
    color: var(--text-dark);
}

.solution-title-gray {
    color: var(--text-dark);
}

.solution-card-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.solution-btn {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: var(--accent-purple);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    max-width: 180px;
    border: 1px solid var(--accent-purple);
    transition: all 0.3s;
}

.solution-btn:hover {
    background: #1E3A8A;
    border-color: #1E3A8A;
}

.solution-btn-outline {
    background: transparent;
    border: 1px solid var(--border-gray);
    color: var(--text-dark);
}

.solution-btn-outline:hover {
    border-color: var(--text-dark);
    background: transparent;
}

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

.solution-features li {
    font-size: 14px;
    color: var(--text-gray);
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.feature-check {
    color: #6B7280;
    font-weight: 700;
    flex-shrink: 0;
}

.contact-sales-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.faq-list {
    max-width: 900px;
    margin: 80px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-purple) 0%, #2563EB 100%);
    transition: height 0.3s ease;
    border-radius: 12px 0 0 12px;
}

.faq-item.open {
    background: var(--bg-white);
    border-color: rgba(30, 64, 175, 0.2);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
}

.faq-item.open::before {
    height: 100%;
}

.faq-question {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s;
    min-height: 60px;
    touch-action: manipulation;
}

.faq-question:hover {
    background: var(--bg-lighter);
}

.faq-item.open .faq-question {
    background: transparent;
}

.faq-icon {
    font-size: 24px;
    color: var(--text-light-gray);
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 20px;
    transition: all 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-purple);
}

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

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

/* Let's Talk Section */
.lets-talk-section {
    padding: 120px 0 200px;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.lets-talk-card {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--text-dark);
    border-radius: 24px;
    padding: 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.lets-talk-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lets-talk-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.lets-talk-title {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.lets-talk-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.lets-talk-dots {
    display: flex;
    gap: 8px;
    margin: 8px 0;
}

.lets-talk-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.lets-talk-dots span:nth-child(2) { background: rgba(255, 255, 255, 0.5); }
.lets-talk-dots span:nth-child(3) { background: rgba(255, 255, 255, 0.6); }
.lets-talk-dots span:nth-child(4) { background: rgba(255, 255, 255, 0.5); }
.lets-talk-dots span:nth-child(5) { background: rgba(255, 255, 255, 0.4); }

.lets-talk-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: white;
    color: #1F2937;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    width: fit-content;
    margin-top: 8px;
}

.lets-talk-right {
    /* Empty space for gradient effect */
}

.lets-talk-watermark {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200px;
    font-weight: 700;
    color: #F3F4F6;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
}

/* Philosophy Section Styles */
.philosophy-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.philosophy-intro {
    position: sticky;
    top: 120px;
}

.philosophy-title {
    font-size: 44px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -1.2px;
    line-height: 1.2;
}

.philosophy-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 0;
}

.philosophy-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.philosophy-value {
    text-align: center;
    padding: 48px 32px;
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.philosophy-value:hover {
    border-color: rgba(30, 64, 175, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(30, 64, 175, 0.12);
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.value-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Final CTA Wrapper */
.final-cta-wrapper {
    padding: 120px 0 80px;
    background: var(--bg-white);
    position: relative;
}

.final-cta-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #1e3a8a 100%);
    border-radius: 24px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.25);
}

.final-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.final-cta-dots span {
    width: 8px;
    height: 8px;
    background: rgba(30, 64, 175, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(30, 64, 175, 0.5);
}

.final-cta-dots span:nth-child(2),
.final-cta-dots span:nth-child(4),
.final-cta-dots span:nth-child(7) {
    background: rgba(30, 64, 175, 0.3);
    box-shadow: 0 0 6px rgba(30, 64, 175, 0.3);
}

.final-cta-title {
    font-size: 48px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.final-cta-subtitle {
    font-size: 36px;
    font-weight: 500;
    color: white;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.final-cta-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.3);
}

.footer-watermark {
    font-size: 180px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.02);
    text-align: center;
    margin-top: 60px;
    letter-spacing: -8px;
    user-select: none;
    pointer-events: none;
}

/* Footer */
.footer {
    background: var(--bg-white);
    padding: 24px 0;
    border-top: 1px solid var(--border-gray);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-gray);
}

.footer-link {
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-link:hover {
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 968px) {
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hide desktop navigation */
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 20px;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-links .btn-signup {
        margin-top: 10px;
        text-align: center;
        border-bottom: none;
    }
    
    .philosophy-section {
        padding: 80px 0;
    }
    
    .philosophy-title {
        font-size: 40px;
        text-align: center;
    }
    
    .philosophy-text {
        font-size: 16px;
        text-align: center;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .philosophy-intro {
        position: static;
        text-align: center;
    }
    
    .philosophy-values {
        gap: 24px;
        grid-template-columns: 1fr;
    }
    
    .agents-display {
        gap: 20px;
        padding: 0 20px;
    }
    
    .agent-card-side {
        width: 180px;
        height: 320px;
    }
    
    .agent-card-center {
        width: 280px;
        height: 380px;
    }
    
    .agent-label {
        bottom: 20px;
        padding: 10px 24px;
    }
    
    .agent-name-label {
        font-size: 13px;
    }
    
    .carousel-btn-new {
        width: 40px;
        height: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .final-cta-card {
        padding: 60px 40px;
    }
    
    .final-cta-title {
        font-size: 36px;
    }
    
    .final-cta-subtitle {
        font-size: 28px;
    }
    
    .footer-watermark {
        font-size: 80px;
        margin-top: 40px;
    }
}

@media (max-width: 968px) {
    .why-stall-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-stall-graphic {
        height: 400px;
        order: 2;
    }

    .why-stall-text {
        order: 1;
        max-width: 100%;
    }

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

    .demos-grid,
    .stats-grid,
    .systems-grid,
    .results-grid,
    .solution-features-grid,
    .tutorials-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid,
    .industries-grid,
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-bottom: 80px;
    }
    
    .hero-left,
    .hero-right {
        padding-top: 0;
    }
    
    .hero-left {
        align-items: center;
    }
    
    .hero-tagline {
        text-align: center;
    }
    
    .hero-title {
        font-size: 48px;
        text-align: center;
    }
    
    .hero-description {
        font-size: 18px;
        text-align: center;
    }

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

@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 20px;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-links .btn-signup {
        margin-top: 10px;
        text-align: center;
        border-bottom: none;
    }
    
    /* Improve touch targets */
    .nav-links a,
    .btn-primary,
    .btn-secondary,
    .btn-hero,
    .calc-button,
    .tutorial-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero {
        padding: 80px 0 100px;
    }
    
    .hero-tagline {
        font-size: 14px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
        line-height: 1.2;
        text-align: center;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.6;
        text-align: center;
    }
    
    .hero-description br {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
    
    /* Optimize agent carousel for mobile */
    .agents-section {
        padding: 0 0 60px;
        margin-top: -60px;
    }
    
    .agents-display {
        gap: 8px;
        padding: 0 10px;
    }
    
    .agent-card-side {
        width: 90px;
        height: 220px;
    }
    
    .agent-card-center {
        width: 200px;
        height: 280px;
    }
    
    .agent-label {
        padding: 6px 12px;
        bottom: 12px;
        font-size: 10px;
    }
    
    .agent-name-label {
        font-size: 10px;
    }
    
    .carousel-btn-new {
        width: 36px;
        height: 36px;
    }
    
    .carousel-btn-new svg {
        width: 18px;
        height: 18px;
    }
    
    /* Better mobile typography */
    .section-title {
        font-size: 32px;
        letter-spacing: -0.8px;
        line-height: 1.2;
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 15px;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    /* Improve spacing for mobile */
    .stats-section,
    .workflow-section,
    .how-it-works,
    .industries,
    .tutorials,
    .calculator-section,
    .faq-section,
    .comparison-section,
    .philosophy-section {
        padding: 60px 0;
    }
    
    .stats-grid,
    .workflow-grid,
    .steps,
    .industries-grid,
    .tutorials-grid {
        margin-top: 40px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-description {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .why-stall-title {
        font-size: 36px;
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .nav-links a {
        font-size: 12px;
    }

    .nav-link-login,
    .btn-signup {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .clients-logos {
        gap: 30px;
        flex-direction: column;
    }

    .stall-heading {
        font-size: 18px;
    }

    .steps {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .demos-grid,
    .stats-grid,
    .systems-grid,
    .results-grid,
    .solution-features-grid,
    .solutions-grid,
    .industries-grid,
    .case-studies-grid,
    .tutorials-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .industry-header {
        justify-content: center;
    }

    .industry-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .workflow-grid,
    .custom-solutions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .workflow-card {
        padding: 32px 24px;
        text-align: center;
    }

    .workflow-card-title,
    .workflow-card-desc {
        text-align: center;
    }
    
    .workflow-visual.integration {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        gap: 8px;
    }
    
    .eye-container {
        padding: 18px;
    }
    
    .purple-eye {
        width: 60px;
        height: 40px;
    }
    
    .integration-badge {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .routing-branches {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .workflow-visual.simple {
        flex-direction: column;
        gap: 12px;
    }
    
    .simple-arrow {
        transform: rotate(90deg);
    }
    
    .workflow-visual.growth {
        max-width: 100%;
    }

    .comparison-container {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .comparison-left,
    .comparison-right {
        padding: 30px 24px;
    }
    
    .calculator {
        padding: 40px 24px;
    }
    
    .calc-input-group {
        gap: 8px;
    }
    
    .calc-label {
        font-size: 14px;
    }
    
    .calc-input {
        padding: 12px 16px;
        font-size: 16px;
    }
    
    .calc-button {
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .stat-card {
        padding: 40px 32px;
    }
    
    .stat-card .stat-number {
        font-size: 48px;
    }
    
    .stat-card .stat-label {
        font-size: 17px;
    }
    
    .step {
        padding: 32px 24px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-description {
        font-size: 15px;
    }
    
    .industry-card {
        padding: 32px 24px;
    }
    
    .industry-tag {
        font-size: 20px;
    }
    
    .industry-text {
        font-size: 15px;
    }
    
    .tutorial-card {
        padding: 32px 24px;
    }
    
    .tutorial-title {
        font-size: 20px;
    }
    
    .tutorial-description {
        font-size: 14px;
    }
    
    .faq-question {
        padding: 20px 20px;
        font-size: 15px;
    }
    
    .faq-answer p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .faq-item.open .faq-answer {
        padding: 0 20px 16px;
    }

    .comparison-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .comparison-title {
        font-size: 36px;
        text-align: center;
    }

    .lets-talk-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .lets-talk-watermark {
        font-size: 120px;
    }
    
    /* Improve final CTA for mobile */
    .final-cta-card {
        padding: 48px 24px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta-dots {
        justify-content: center;
    }
    
    .final-cta-title {
        font-size: 28px;
    }
    
    .final-cta-subtitle {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .final-cta-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .footer-watermark {
        font-size: 60px;
        letter-spacing: -4px;
    }
    
    /* Better comparison layout for mobile */
    .comparison-title {
        font-size: 28px;
        text-align: left;
    }
    
    .comparison-title .vs {
        font-size: 20px;
    }
    
    /* Improve philosophy section for mobile */
    .philosophy-values {
        grid-template-columns: 1fr;
    }
    
    .philosophy-value {
        padding: 32px 24px;
    }
    
    .value-title {
        font-size: 18px;
    }
    
    .value-desc {
        font-size: 14px;
    }
}

/* Small mobile devices (below 480px) */
@media (max-width: 480px) {
    .hero-tagline {
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .agent-card-side {
        width: 75px;
        height: 200px;
    }
    
    .agent-card-center {
        width: 180px;
        height: 260px;
    }
    
    .stat-card .stat-number {
        font-size: 40px;
    }
    
    .stat-card .stat-label {
        font-size: 16px;
    }
    
    .workflow-card,
    .step,
    .industry-card,
    .tutorial-card {
        padding: 24px 20px;
    }
    
    .comparison-container {
        padding: 24px 16px;
    }
    
    .comparison-left,
    .comparison-right {
        padding: 24px 20px;
    }
    
    .calculator {
        padding: 32px 20px;
    }

    .agent-card-side {
        width: 60px;
        height: 180px;
    }
    
    .agent-card-center {
        width: 160px;
        height: 220px;
    }
}

/* Landscape mobile optimization */
@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 80px;
    }
    
    .agents-section {
        padding: 0 0 40px;
        margin-top: -40px;
    }
    
    .agent-card-side {
        height: 200px;
    }
    
    .agent-card-center {
        height: 240px;
    }
}

/* ===== BLOG STYLES ===== */

/* Blog Hero */
.blog-hero {
    margin-top: 80px;
    padding: 80px 0 40px;
    background: var(--bg-white);
    position: relative;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.blog-hero-title {
    font-size: 56px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.blog-hero-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

/* Featured Post Section */
.featured-post-section {
    padding: 40px 0 80px;
    background: var(--bg-white);
}

.featured-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg-lighter);
    color: var(--text-gray);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    margin-bottom: 24px;
    border: 1px solid var(--border-gray);
}

.featured-post {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    padding: 56px;
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    align-items: center;
    transition: all 0.3s;
}

.featured-post:hover {
    border-color: var(--text-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.featured-post-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Author in featured post */
.featured-post-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: -4px;
}

.featured-post-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-purple);
}

.featured-post-author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.featured-post-title {
    font-size: 32px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.8px;
}

.featured-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.featured-post-title a:hover {
    color: var(--accent-purple);
}

.featured-post-excerpt {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.75;
    margin: 0;
    font-weight: 400;
}

.featured-post-image {
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gray);
}

.featured-post-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light-gray);
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--accent-purple);
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s;
    width: fit-content;
    border: 1px solid var(--accent-purple);
}

.btn-read-more:hover {
    background: #1E3A8A;
    border-color: #1E3A8A;
    transform: translateX(4px);
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 80px 0 120px;
    background: var(--bg-white);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.blog-post-card {
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.blog-post-card:hover {
    border-color: var(--text-gray);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.post-card-header {
    height: 170px;
    background: var(--bg-lighter);
    border-bottom: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light-gray);
}

.post-card-content {
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--bg-white);
}

.post-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

/* Author in blog card */
.post-card-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: -4px;
}

.post-card-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-purple);
}

.post-card-author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.post-meta-top {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

/* Author at top of blog post */
.post-author-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px 0;
}

.post-author-avatar-top {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-purple);
}

.post-author-info-top {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.post-author-name-top {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.post-author-role-top {
    font-size: 13px;
    color: var(--text-gray);
}

.post-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-date {
    font-size: 13px;
    color: var(--text-light-gray);
}

.post-read-time {
    font-size: 13px;
    color: var(--text-light-gray);
}

.post-read-time::before {
    content: "•";
    margin-right: 8px;
}

.post-card-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
}

.post-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.post-card-title a:hover {
    color: var(--accent-purple);
}

.post-card-excerpt {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.post-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.post-card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-purple);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.post-card-link:hover {
    color: #1E40AF;
    transform: translateX(6px);
    gap: 8px;
}

/* Video Card Styles */
.video-card {
    position: relative;
}

.video-header {
    position: relative;
    overflow: hidden;
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail-container img {
    transition: transform 0.3s ease;
}

.video-thumbnail-container:hover img {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
    pointer-events: none;
}

.video-thumbnail-container:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.video-embed-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #000;
}

.video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Blog CTA Section */
.blog-cta-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.blog-cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 72px;
    background: var(--text-dark);
    border-radius: 20px;
    position: relative;
}

.blog-cta-title {
    font-size: 36px;
    font-weight: 500;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.8px;
}

.blog-cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 32px;
}

.blog-cta-card .btn-primary {
    background: white;
    color: var(--text-dark);
}

.blog-cta-card .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Blog Post Page */
.blog-post-page {
    margin-top: 80px;
    padding: 80px 0;
    background: var(--bg-white);
}

.post-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 32px;
    transition: color 0.2s;
}

.back-to-blog:hover {
    color: var(--text-dark);
}

.post-title {
    font-size: 52px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1.2px;
}

.post-featured-image {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.post-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.post-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Ensure inline media inside blog content scales on small screens */
.post-content img,
.post-content iframe {
    max-width: 100%;
    height: auto;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
}

.post-content table th,
.post-content table td {
    padding: 8px 12px;
}

.post-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 48px 0 24px;
    letter-spacing: -0.6px;
    line-height: 1.3;
}

.post-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 32px 0 16px;
    letter-spacing: -0.4px;
}

.post-content p {
    margin-bottom: 24px;
    color: var(--text-dark);
}

.post-content ul,
.post-content ol {
    margin: 24px 0;
    padding-left: 32px;
}

.post-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.post-content strong {
    font-weight: 600;
    color: var(--text-dark);
}

.post-highlight {
    padding: 32px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.03) 0%, rgba(37, 99, 235, 0.03) 100%);
    border-left: 4px solid var(--accent-purple);
    border-radius: 8px;
    margin: 40px 0;
}

.post-highlight h3 {
    margin-top: 0;
    color: var(--accent-purple);
}

.post-cta {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-lighter);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    text-align: center;
}

.post-cta h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 12px;
}

.post-cta p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.post-cta .btn-primary {
    margin: 0;
}

/* Author Section */
.author-section {
    padding: 60px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-gray);
}

.author-card {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background: var(--bg-lighter);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
}

.author-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-purple);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px;
    letter-spacing: -0.4px;
}

.author-bio {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .author-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .author-avatar {
        width: 64px;
        height: 64px;
    }
    
    .author-name {
        font-size: 20px;
    }
    
    .author-bio {
        font-size: 15px;
    }
}

/* Related Posts Section */
.related-posts-section {
    padding: 100px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-gray);
}

.related-posts-section .section-title {
    font-size: 36px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.related-posts-section .blog-post-card {
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-posts-section .blog-post-card:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.12);
    transform: translateY(-4px);
}

.related-posts-section .post-card-header {
    height: 200px;
    overflow: hidden;
    background: var(--bg-lighter);
}

.related-posts-section .post-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-posts-section .blog-post-card:hover .post-card-header img {
    transform: scale(1.05);
}

.related-posts-section .post-card-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-posts-section .post-card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin: 12px 0 16px;
}

.related-posts-section .post-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.related-posts-section .post-card-title a:hover {
    color: var(--accent-purple);
}

.related-posts-section .post-card-footer {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-gray);
}

/* Explore Guides Section */
.explore-guides-section {
    padding: 100px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-gray);
}

.explore-guides-title {
    font-size: 36px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.explore-guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-category {
    display: flex;
    flex-direction: column;
}

.guide-category-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-gray);
    letter-spacing: -0.3px;
}

.guide-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guide-links li {
    margin: 0;
    padding: 0;
}

.guide-links a {
    display: block;
    font-size: 15px;
    color: var(--text-gray);
    text-decoration: none;
    line-height: 1.6;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.2s ease;
    position: relative;
    padding-left: 0;
}

.guide-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--accent-purple);
    transition: all 0.2s ease;
    font-weight: 600;
}

.guide-links a:hover {
    color: var(--accent-purple);
    padding-left: 24px;
    border-bottom-color: rgba(30, 64, 175, 0.2);
}

.guide-links a:hover::before {
    opacity: 1;
    left: 0;
}

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

/* Table of contents inside blog posts */
.table-of-contents {
    width: 100%;
    overflow-x: auto;
}

.table-of-contents a {
    color: var(--accent-purple);
    text-decoration: none;
}

.table-of-contents a:hover {
    text-decoration: underline;
}

/* Blog Related Section (React Component) */
.blog-related-section {
    padding: 100px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-gray);
}

.blog-related-title {
    font-size: 36px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.blog-related-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-related-column {
    display: flex;
    flex-direction: column;
}

.blog-related-column h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-gray);
    letter-spacing: -0.3px;
}

.blog-related-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-related-column ul li {
    margin: 0;
    padding: 0;
}

.blog-related-column ul li a {
    display: block;
    font-size: 15px;
    color: var(--text-gray);
    text-decoration: none;
    line-height: 1.6;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.2s ease;
    position: relative;
    padding-left: 0;
}

.blog-related-column ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--accent-purple);
    transition: all 0.2s ease;
    font-weight: 600;
}

.blog-related-column ul li a:hover {
    color: var(--accent-purple);
    padding-left: 24px;
    border-bottom-color: rgba(30, 64, 175, 0.2);
}

.blog-related-column ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.blog-related-column ul li:last-child a {
    border-bottom: none;
}

/* Blog Responsive Styles */
@media (max-width: 968px) {
    .blog-hero {
        padding: 60px 0 30px;
    }
    
    .blog-hero-title {
        font-size: 48px;
        letter-spacing: -1.5px;
    }
    
    .blog-hero-description {
        font-size: 18px;
    }
    
    .featured-post {
        grid-template-columns: 1fr;
        padding: 48px 40px;
        gap: 36px;
        text-align: center;
    }
    
    .featured-post-content {
        align-items: center;
    }
    
    .featured-post-image {
        height: 280px;
        order: -1;
    }
    
    .featured-post-title {
        font-size: 30px;
        letter-spacing: -0.6px;
    }
    
    .featured-post-excerpt {
        font-size: 16px;
    }
    
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .blog-cta-card {
        padding: 56px 40px;
    }
    
    .blog-cta-title {
        font-size: 32px;
    }
    
    .blog-cta-description {
        font-size: 17px;
    }
    
    .post-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .post-meta-top {
        justify-content: center;
    }

    .post-title {
        font-size: 38px;
        text-align: center;
    }
    
    .post-subtitle {
        text-align: center;
    }
    
    .post-content {
        font-size: 17px;
    }
    
    .post-content h2 {
        font-size: 28px;
    }
    
    .related-posts-section {
        padding: 60px 0;
    }
    
    .related-posts-section .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .related-posts-section .post-card-header {
        height: 180px;
    }
    
    .related-posts-section .post-card-content {
        padding: 24px;
    }
    
    .related-posts-section .post-card-title {
        font-size: 18px;
    }
    
    .explore-guides-section {
        padding: 80px 0;
    }
    
    .explore-guides-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .explore-guides-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .guide-category-title {
        font-size: 19px;
    }
    
    .blog-related-section {
        padding: 80px 0;
    }
    
    .blog-related-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .blog-related-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    /* Make in-article table of contents single-column on mobile */
    .table-of-contents ul {
        columns: 1 !important;
        -webkit-columns: 1 !important;
    }
    
    .blog-related-column h3 {
        font-size: 19px;
    }
}

@media (max-width: 768px) {
    .explore-guides-section {
        padding: 60px 0;
    }
    
    .explore-guides-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .explore-guides-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .guide-category-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .guide-links a {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .blog-related-section {
        padding: 60px 0;
    }
    
    .blog-related-title {
        font-size: 32px;
        margin-bottom: 48px;
    }
    
    .blog-related-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-related-column h3 {
        font-size: 19px;
        margin-bottom: 20px;
    }
    
    .blog-related-column ul li a {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 50px 0 30px;
    }
    
    .blog-hero-title {
        font-size: 40px;
        letter-spacing: -1.2px;
    }
    
    .blog-hero-description {
        font-size: 17px;
        line-height: 1.6;
    }
    
    .featured-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .featured-post {
        padding: 36px 28px;
        border-radius: 20px;
    }
    
    .featured-post-image {
        height: 240px;
        border-radius: 12px;
    }
    
    .featured-post-title {
        font-size: 26px;
        letter-spacing: -0.5px;
    }
    
    .featured-post-excerpt {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .btn-read-more {
        padding: 14px 26px;
        font-size: 14px;
    }
    
    .blog-posts-section {
        padding: 60px 0 100px;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
        text-align: center;
    }
    
    .post-card-content {
        padding: 28px;
        align-items: center;
    }
    
    .post-meta {
        justify-content: center;
    }
    
    .post-card-title {
        font-size: 19px;
    }
    
    .post-card-excerpt {
        font-size: 14px;
    }
    
    .blog-cta-section {
        padding: 80px 0;
    }
    
    .blog-cta-card {
        padding: 48px 32px;
        border-radius: 24px;
    }
    
    .blog-cta-title {
        font-size: 28px;
        letter-spacing: -0.6px;
    }
    
    .blog-cta-description {
        font-size: 16px;
    }
    
    .blog-cta-card .btn-primary {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .post-title {
        font-size: 32px;
        letter-spacing: -0.8px;
        text-align: center;
    }
    
    .post-subtitle {
        font-size: 17px;
    }
    
    .post-content {
        font-size: 16px;
    }
    
    .post-content h2 {
        font-size: 24px;
        margin: 32px 0 16px;
    }
    
    .post-content h3 {
        font-size: 20px;
    }
    
    .post-highlight {
        padding: 24px;
        margin: 32px 0;
    }
    
    .post-cta {
        padding: 32px 24px;
    }
    
    .post-cta h3 {
        font-size: 22px;
    }

    /* Blog post comparison box fix */
    .post-content .comparison-container {
        flex-direction: column !important;
    }
    
    .post-content .scenario-box {
        width: 100% !important;
    }
    
    .explore-guides-section {
        padding: 60px 0;
    }
    
    .explore-guides-title {
        font-size: 32px;
        margin-bottom: 48px;
    }
    
    .explore-guides-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .guide-category-title {
        font-size: 19px;
    }
    
    .guide-links a {
        font-size: 15px;
    }
}