/* ========================================
   App-ening Marketing Website Styles
   ======================================== */

/* CSS Variables */
:root {
    --primary: #25D366;
    --primary-dark: #128C7E;
    --primary-light: #DCF8C6;
    --secondary: #075E54;
    --accent: #34B7F1;

    --text-primary: #1a1a2e;
    --text-secondary: #4a4a68;
    --text-muted: #8888a0;

    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fc;
    --bg-tertiary: #eef1f8;

    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}

/* Mobile menu dropdown container - needed for absolute positioning */
.navbar .nav-container {
    position: relative;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-img {
    height: 100px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
}

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

.nav-buttons {
    display: flex;
    gap: 12px;
}

/* Region Selector */
.region-selector {
    position: relative;
    margin-right: 8px;
}

.region-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.region-current:hover {
    border-color: var(--primary);
    color: var(--text-primary);
}

.region-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}

.region-selector:hover .region-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.region-dropdown a {
    display: block;
    padding: 10px 14px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.region-dropdown a:hover {
    background: var(--bg-secondary);
    color: var(--primary);
}

.region-dropdown a.active {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    position: relative;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Mobile menu active state - hamburger to X animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 320px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
}

.phone-screen {
    background: #ECE5DD;
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--primary-dark);
    color: white;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.chat-info {
    display: flex;
    flex-direction: column;
}

.chat-name {
    font-weight: 600;
}

.chat-status {
    font-size: 0.75rem;
    opacity: 0.8;
}

.chat-messages {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 8px;
    position: relative;
}

.message p {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.message .time {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.message.received {
    background: white;
    align-self: flex-start;
    border-bottom-left-radius: 0;
}

.message.sent {
    background: var(--primary-light);
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

/* Logos Section */
.logos-section {
    padding: 60px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.logos-title {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.logo-item {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.6;
}

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

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-tertiary);
    color: var(--primary-dark);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.feature-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light), #e8f5e9);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-dark);
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.step {
    flex: 1;
    max-width: 280px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 12px;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--border-color);
    margin-top: 30px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

/* Pricing Info Box */
.pricing-info-box {
    background: linear-gradient(135deg, #e3f2fd, #e8f5e9);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    margin-bottom: 48px;
}

.info-box-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-box-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-box-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.info-box-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-box-text strong {
    color: var(--text-primary);
}

.info-link {
    display: inline-block;
    margin-left: 8px;
    color: var(--primary-dark);
    font-weight: 600;
}

.info-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .info-box-content {
        flex-direction: column;
        text-align: center;
    }

    .info-box-icon {
        margin: 0 auto;
    }

    .info-link {
        display: block;
        margin-left: 0;
        margin-top: 8px;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.pricing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pricing-grid-4 .pricing-card {
    padding: 32px 24px;
}

.pricing-grid-4 .pricing-card.popular {
    transform: scale(1.02);
}

.pricing-grid-4 .pricing-card.popular:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 2px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

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

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.pricing-header h3 {
    margin-bottom: 8px;
}

.pricing-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Local currency approximation (shown in brackets) */
.local-approx {
    display: block;
    font-size: 0.5em;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 4px;
}

.amount .local-approx {
    font-size: 0.35em;
}

/* For table headers */
[data-table-plan] .local-approx {
    display: inline;
    font-size: 0.85em;
}

/* Pricing region note */
.pricing-region-note {
    text-align: center;
    padding: 12px 20px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-region-note .region-flag {
    margin-right: 8px;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-tertiary);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 700;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.testimonial-card {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.faq-item {
    background: var(--bg-primary);
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.signup-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.signup-form input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.signup-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.signup-form .btn {
    margin-top: 8px;
}

.form-note {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Form Messages */
.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    text-align: center;
}

.form-message-success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-message-error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Button loading state */
button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 5% 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4%;
    margin-bottom: 4%;
    align-items: start;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 1.5% 0;
    max-width: 300px;
}

.footer-brand .logo-img {
    height: 180px;
    filter: brightness(0) invert(1);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

.footer-bottom {
    padding-top: 3%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

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

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

    .hero-visual {
        margin-top: 40px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5%;
    }
}

@media (max-width: 768px) {
    /* Reduce container padding on mobile to minimize white space */
    .container {
        padding: 0 16px;
    }

    .navbar {
        padding: 12px 16px;
    }

    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    /* Shrink logo on mobile to make room for hamburger */
    .logo-img {
        height: 50px;
    }

    /* Fix trigger/action text wrapping on mobile */
    .solution-example {
        padding: 16px;
        font-size: 0.8rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .solution-example pre {
        white-space: pre-wrap;
        word-break: break-word;
        overflow-wrap: break-word;
        margin: 0;
        font-size: 0.8rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--bg-primary);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        border-top: 1px solid var(--border-color);
        padding-bottom: 16px;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .nav-menu.active {
        display: flex;
    }

    /* Prevent body scroll when mobile menu is open */
    body.menu-open {
        overflow: hidden;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        text-align: center;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li a {
        display: block;
        padding: 16px 24px;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 16px 24px;
        width: 100%;
    }

    .nav-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex !important;
        z-index: 1001;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .features-grid,
    .pricing-grid,
    .pricing-grid-4,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular,
    .pricing-grid-4 .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover,
    .pricing-grid-4 .pricing-card.popular:hover {
        transform: translateY(-4px);
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 8%;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-brand p {
        margin: 3% auto;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .phone-mockup {
        width: 280px;
    }

    .phone-screen {
        height: 420px;
    }

    .signup-form {
        padding: 24px;
    }
}

/* ========================================
   Integration Logos Section
   ======================================== */
.integration-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.integration-logo:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.integration-logo svg {
    flex-shrink: 0;
}

.integration-logo span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* ========================================
   Product Demo Section
   ======================================== */
.demo-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.demo-card {
    text-align: center;
}

.demo-card h3 {
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.demo-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.demo-screen {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

.demo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f57;
}

.demo-dot:nth-child(2) {
    background: #febc2e;
}

.demo-dot:nth-child(3) {
    background: #28c840;
}

.demo-title {
    margin-left: auto;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.demo-content {
    padding: 16px;
    min-height: 200px;
}

/* Team Inbox Demo */
.demo-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-chat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    transition: var(--transition);
}

.demo-chat-item.active {
    background: var(--primary-light);
    border-left: 3px solid var(--primary);
}

.demo-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.demo-chat-preview {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    overflow: hidden;
}

.demo-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.demo-msg {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

/* Campaign Demo */
.demo-campaign {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-template-preview {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: left;
}

.demo-template-header {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.demo-template-body {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.demo-template-button {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
}

.demo-campaign-stats {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.demo-stat-item {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--bg-tertiary);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

/* Journey Demo */
.demo-journey {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.demo-node {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    width: 100%;
    max-width: 180px;
}

.demo-node.trigger {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #90caf9;
}

.demo-node.action {
    background: var(--primary-light);
    color: var(--primary-dark);
    border: 1px solid var(--primary);
}

.demo-node.delay {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffcc80;
}

.demo-arrow {
    width: 2px;
    height: 16px;
    background: var(--border-color);
    position: relative;
}

.demo-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--border-color);
}

.demo-cta {
    text-align: center;
    margin-top: 40px;
}

.demo-cta p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.demo-link {
    color: var(--primary);
    font-weight: 600;
}

.demo-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Demo Section Responsive */
@media (max-width: 900px) {
    .demo-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .demo-section {
        padding: 60px 0;
    }

    .integration-logo {
        padding: 12px 16px;
    }

    .integration-logo span {
        font-size: 0.75rem;
    }
}

/* Geo-Pricing Region Note */
.pricing-region-note {
    animation: fadeIn 0.3s ease;
}

.pricing-region-note .region-flag {
    margin-right: 6px;
}

.pricing-region-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    margin-left: 8px;
}

.pricing-region-note a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Price animation for updates */
.price .amount,
.price .currency {
    transition: opacity 0.2s ease;
}

.price-updating .amount,
.price-updating .currency {
    opacity: 0.5;
}

/* ========================================
   Industries Mega Menu
   ======================================== */

.nav-links > li {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-dropdown-trigger svg {
    width: 12px;
    height: 12px;
    transition: transform 0.2s ease;
}

.nav-links > li:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 24px;
    min-width: 800px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
    margin-top: 16px;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}

.nav-links > li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mega-menu-column h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.mega-menu-column ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-menu-column a {
    display: block;
    padding: 8px 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mega-menu-column a:hover {
    background: var(--bg-secondary);
    color: var(--primary);
}

/* Sub-dropdown for sub-industries */
.has-submenu {
    position: relative;
}

.has-submenu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.has-submenu > a::after {
    content: '›';
    font-size: 1.1rem;
    color: var(--text-muted);
}

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    margin-left: 4px;
    z-index: 1001;
}

.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    z-index: 1002;
}

.submenu a {
    white-space: nowrap;
}

/* Position submenu to the LEFT for rightmost column to prevent overflow */
.mega-menu-column:last-child .submenu {
    left: auto !important;
    right: 100% !important;
    margin-left: 0 !important;
    margin-right: 4px !important;
}

/* ========================================
   Industry Page Styles
   ======================================== */

.industry-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.industry-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--industry-primary-light, rgba(37, 211, 102, 0.08)) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.industry-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--industry-primary-light, rgba(37, 211, 102, 0.06)) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.industry-hero .container {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

/* ROI Metrics Section */
.metrics-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.metric-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.metric-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--industry-primary-light, #dcfce7);
    border-radius: 50%;
}

.metric-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--industry-primary, var(--primary));
}

.metric-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--industry-primary, var(--primary));
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.metric-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 900px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .metric-card {
        padding: 24px 16px;
    }

    .metric-value {
        font-size: 1.75rem;
    }
}

.industry-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.industry-breadcrumb a {
    color: var(--text-muted);
}

.industry-breadcrumb a:hover {
    color: var(--primary);
}

.industry-breadcrumb span {
    color: var(--text-secondary);
}

.industry-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.industry-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 700px;
}

.industry-hero-cta {
    display: flex;
    gap: 16px;
}

/* Class aliases for backwards compatibility */
.industry-hero .hero-subtitle,
.industry-hero .hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 700px;
}

.industry-hero .hero-cta,
.industry-hero .hero-ctas {
    display: flex;
    gap: 16px;
}

/* Challenges Section */
.challenges-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.challenge-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border-left: 4px solid #ef4444;
}

.challenge-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #ef4444;
}

/* Note: .challenges-cards and .challenge-card styles are defined in the
   "3-column challenge cards" section below (around line 3063) with
   responsive breakpoints for 2-column and 1-column layouts */

.challenge-item p,
.challenge-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Solutions Section */
.solutions-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.solution-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 32px;
    margin-bottom: 32px;
}

.solution-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 12px;
}

.solution-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    background: var(--primary);
    color: white;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.solution-header h3 {
    flex: 1;
    min-width: 200px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.solution-header .feature-badge,
.solution-header .solution-badge {
    margin-left: auto;
}

.solution-header .plan-badge {
    margin-left: 8px;
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
}

.solution-badge.feature-rule {
    background: #dbeafe;
    color: #1e40af;
}

.solution-badge.feature-sequence {
    background: #fef3c7;
    color: #92400e;
}

.solution-badge.feature-journey {
    background: #d1fae5;
    color: #065f46;
}

.solution-badge.feature-campaign {
    background: #ede9fe;
    color: #5b21b6;
}

.plan-badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    border-radius: 100px;
}

.solution-example {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-secondary);
    white-space: pre-wrap;
}

.solution-explanation {
    color: var(--text-muted);
    font-size: 0.875rem;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.solution-explanation strong {
    color: var(--text-secondary);
}

/* WhatsApp Message Preview */
.wa-message-preview {
    background: #ECE5DD;
    border-radius: var(--radius-md);
    padding: 20px;
    max-width: 400px;
}

.wa-message {
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    border-bottom-left-radius: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: pre-line;
}

.wa-message.sent {
    background: #DCF8C6;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 0;
    margin-left: auto;
    margin-bottom: 8px;
}

.wa-message.received {
    background: white;
    margin-bottom: 8px;
}

.wa-message p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.wa-message .wa-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: right;
}

/* WhatsApp Interactive Elements */
.wa-interactive {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wa-list-button {
    background: rgba(0, 128, 105, 0.1);
    border: 1px solid #00806980;
    color: #008069;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.wa-list-button:hover {
    background: rgba(0, 128, 105, 0.15);
}

.wa-list-preview {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 4px;
}

.wa-list-item {
    padding: 12px 16px;
    font-size: 0.85rem;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.wa-list-item:last-child {
    border-bottom: none;
}

.wa-list-item:hover {
    background: #f5f5f5;
}

.wa-interactive button.wa-button {
    background: white;
    border: 1px solid #008069;
    color: #008069;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.wa-interactive button.wa-button:hover {
    background: #008069;
    color: white;
}

/* CRM Pipeline Preview */
.pipeline-preview {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 20px 0;
}

.pipeline-stage {
    flex: 0 0 auto;
    padding: 12px 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    position: relative;
}

.pipeline-stage::after {
    content: '→';
    position: absolute;
    right: -16px;
    color: var(--text-muted);
}

.pipeline-stage:last-child::after {
    display: none;
}

/* Achievement Table */
.achievement-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.achievement-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.achievement-table th,
.achievement-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.achievement-table th {
    background: var(--bg-tertiary);
    font-weight: 600;
    font-size: 0.875rem;
}

.achievement-table td {
    font-size: 0.9rem;
}

.achievement-table tr:last-child td {
    border-bottom: none;
}

.check-icon {
    color: var(--primary);
    font-weight: bold;
}

/* Recommendation Box */
.recommendation-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.recommendation-box {
    background: linear-gradient(135deg, var(--primary-light) 0%, #d1fae5 100%);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.recommendation-box h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.recommended-plan {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-primary);
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    margin: 24px 0;
    box-shadow: var(--shadow-md);
}

.recommended-plan .plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.recommended-plan .plan-price {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.recommendation-features {
    text-align: left;
    max-width: 400px;
    margin: 24px auto;
}

.recommendation-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--text-secondary);
}

.recommendation-features li::before {
    content: '✓';
    color: var(--primary-dark);
    font-weight: bold;
}

.recommendation-box .btn-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

/* Industry Page Responsive */
@media (max-width: 768px) {
    /* Mobile Industries Mega Menu - Accordion Style */
    .mega-menu {
        position: static;
        transform: none;
        min-width: 100%;
        padding: 0;
        margin: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: var(--bg-secondary);
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.3s ease;
    }

    .mega-menu.mobile-open {
        max-height: 2000px;
        border-top: 1px solid var(--border-color);
    }

    .mega-menu::before {
        display: none;
    }

    .mega-menu-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
    }

    .mega-menu-column {
        border-bottom: 1px solid var(--border-color);
    }

    .mega-menu-column:last-child {
        border-bottom: none;
    }

    .mega-menu-column h4 {
        padding: 12px 24px;
        margin: 0;
        border-bottom: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mega-menu-column h4::after {
        content: '+';
        font-size: 1.2rem;
        font-weight: 400;
        color: var(--text-muted);
        transition: transform 0.2s ease;
    }

    .mega-menu-column.column-open h4::after {
        content: '−';
    }

    .mega-menu-column > ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0 24px;
    }

    .mega-menu-column.column-open > ul {
        max-height: 1000px;
        padding-bottom: 12px;
    }

    .mega-menu-column a {
        padding: 10px 12px;
    }

    /* Mobile submenu (sub-industries) */
    .has-submenu > a::after {
        content: '+';
        font-size: 1rem;
    }

    .has-submenu.submenu-open > a::after {
        content: '−';
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin: 0;
        padding: 0;
        border: none;
        box-shadow: none;
        background: transparent;
        min-width: 100%;
    }

    .has-submenu.submenu-open > .submenu {
        max-height: 500px;
        padding: 4px 0 4px 16px;
    }

    .submenu a {
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    /* Industries dropdown trigger on mobile */
    .nav-dropdown-trigger {
        width: 100%;
        justify-content: center;
    }

    .nav-links > li:hover .mega-menu {
        opacity: 1;
        visibility: visible;
    }

    .industry-hero {
        padding: 120px 20px 60px;
        text-align: center;
    }

    .industry-hero h1 {
        font-size: 1.75rem;
    }

    .industry-hero-subtitle,
    .industry-hero .hero-subtitle,
    .industry-hero .hero-description {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .industry-hero-cta,
    .industry-hero .hero-cta,
    .industry-hero .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .industry-hero-cta .btn,
    .industry-hero .hero-cta .btn,
    .industry-hero .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Hide decorative elements on mobile */
    .industry-hero::before,
    .industry-hero::after {
        display: none;
    }

    .challenges-section {
        padding: 60px 20px;
    }

    .challenges-grid,
    .challenges-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .challenge-item,
    .challenge-card {
        padding: 16px;
    }

    .solutions-section {
        padding: 60px 20px;
    }

    .solution-card {
        padding: 20px;
    }

    .solution-header {
        flex-direction: column;
        gap: 12px;
    }

    .solution-badges {
        flex-wrap: wrap;
    }

    .wa-message-preview {
        padding: 16px;
    }

    .pipeline-section {
        padding: 60px 20px;
    }

    .pipeline-preview {
        flex-direction: column;
        align-items: stretch;
    }

    .pipeline-stage {
        text-align: center;
    }

    .pipeline-arrow {
        transform: rotate(90deg);
        margin: 8px auto;
    }

    .achievements-section {
        padding: 60px 20px;
        overflow-x: auto;
    }

    .achievement-table {
        font-size: 0.875rem;
        min-width: 500px;
    }

    .recommendation-section {
        padding: 60px 20px;
    }

    .recommendation-box {
        padding: 24px 16px;
    }

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

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .industry-hero {
        padding: 100px 16px 40px;
    }

    .industry-hero h1 {
        font-size: 1.5rem;
    }

    .challenges-section,
    .solutions-section,
    .pipeline-section,
    .achievements-section,
    .recommendation-section {
        padding: 40px 16px;
    }

    .solution-card {
        padding: 16px;
    }

    .wa-message {
        max-width: 95%;
        font-size: 0.875rem;
    }
}

/* ========================================
   Industry Color Themes
   ======================================== */

/* Health & Wellness - Teal/Medical */
.industry-health {
    --industry-primary: #0d9488;
    --industry-primary-light: #ccfbf1;
    --industry-primary-dark: #115e59;
    --industry-gradient: linear-gradient(135deg, #ccfbf1 0%, #d1fae5 100%);
}

/* Fitness - Orange/Energetic */
.industry-fitness {
    --industry-primary: #ea580c;
    --industry-primary-light: #ffedd5;
    --industry-primary-dark: #9a3412;
    --industry-gradient: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
}

/* Food & Beverage - Warm Red */
.industry-food {
    --industry-primary: #dc2626;
    --industry-primary-light: #fee2e2;
    --industry-primary-dark: #991b1b;
    --industry-gradient: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

/* Beauty & Personal Care - Pink/Purple */
.industry-beauty {
    --industry-primary: #c026d3;
    --industry-primary-light: #fae8ff;
    --industry-primary-dark: #86198f;
    --industry-gradient: linear-gradient(135deg, #fae8ff 0%, #f5d0fe 100%);
}

/* Automotive - Steel Blue */
.industry-automotive {
    --industry-primary: #2563eb;
    --industry-primary-light: #dbeafe;
    --industry-primary-dark: #1e40af;
    --industry-gradient: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

/* Education - Blue/Academic */
.industry-education {
    --industry-primary: #3b82f6;
    --industry-primary-light: #dbeafe;
    --industry-primary-dark: #1e40af;
    --industry-gradient: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

/* Events & Entertainment - Purple/Festive */
.industry-events {
    --industry-primary: #8b5cf6;
    --industry-primary-light: #ede9fe;
    --industry-primary-dark: #5b21b6;
    --industry-gradient: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

/* Travel & Hospitality - Cyan/Refreshing */
.industry-travel {
    --industry-primary: #06b6d4;
    --industry-primary-light: #cffafe;
    --industry-primary-dark: #0e7490;
    --industry-gradient: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%);
}

/* Professional Services - Slate/Corporate */
.industry-professional {
    --industry-primary: #475569;
    --industry-primary-light: #f1f5f9;
    --industry-primary-dark: #1e293b;
    --industry-gradient: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

/* Real Estate - Amber/Property */
.industry-realestate {
    --industry-primary: #f59e0b;
    --industry-primary-light: #fef3c7;
    --industry-primary-dark: #b45309;
    --industry-gradient: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

/* Manufacturing & B2B - Gray/Industrial */
.industry-manufacturing {
    --industry-primary: #6b7280;
    --industry-primary-light: #f3f4f6;
    --industry-primary-dark: #374151;
    --industry-gradient: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

/* Nonprofit & Community - Green/Community */
.industry-nonprofit {
    --industry-primary: #10b981;
    --industry-primary-light: #d1fae5;
    --industry-primary-dark: #047857;
    --industry-gradient: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

/* Home Services - Yellow/Helpful */
.industry-homeservices {
    --industry-primary: #eab308;
    --industry-primary-light: #fef9c3;
    --industry-primary-dark: #a16207;
    --industry-gradient: linear-gradient(135deg, #fef9c3 0%, #fef08a 100%);
}

/* Apply industry colors */
[class*="industry-"] .industry-hero {
    background: var(--industry-gradient, linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%));
}

[class*="industry-"] .hero-badge {
    background: var(--industry-primary-light);
    color: var(--industry-primary-dark);
}

[class*="industry-"] .solution-number {
    background: var(--industry-primary);
}

[class*="industry-"] .recommendation-box {
    background: var(--industry-gradient);
}

[class*="industry-"] .pipeline-stage.active {
    background: var(--industry-primary-light);
    color: var(--industry-primary-dark);
    border-left: 3px solid var(--industry-primary);
}

/* ========================================
   Layout Variant: Two-Column Grid (Dental)
   ======================================== */

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

.solutions-grid-layout .solution-card {
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solutions-grid-layout .solution-card .solution-content {
    flex: 1;
}

.solutions-grid-layout .solution-header {
    flex-direction: column;
    align-items: flex-start;
}

.solutions-grid-layout .solution-number {
    width: 36px;
    height: 36px;
    background: var(--industry-primary, var(--primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
}

.solutions-grid-layout .solution-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

@media (max-width: 900px) {
    .solutions-grid-layout {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Layout Variant: Accordion (Gym)
   ======================================== */

.solutions-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--bg-secondary);
}

.accordion-number {
    width: 40px;
    height: 40px;
    background: var(--industry-primary, var(--primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.accordion-title {
    flex: 1;
}

.accordion-title h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.accordion-title .solution-badges {
    display: flex;
    gap: 8px;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-body {
    padding: 0 24px 24px 80px;
}

.accordion-body p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.accordion-body .solution-example {
    font-family: inherit;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
}

.accordion-body .solution-example ul {
    list-style: none;
    padding: 0;
}

.accordion-body .solution-example li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
}

.accordion-body .solution-example li:last-child {
    border-bottom: none;
}

.accordion-body .solution-result {
    background: var(--industry-primary-light, var(--primary-light));
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--industry-primary-dark, var(--primary-dark));
    font-weight: 500;
}

/* ========================================
   Layout Variant: Tabbed Categories (Restaurant)
   ======================================== */

.solutions-tabbed {
    max-width: 900px;
    margin: 0 auto;
}

.tab-navigation {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0;
    overflow-x: auto;
}

.tab-button {
    padding: 16px 24px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: var(--transition);
}

.tab-button:hover {
    color: var(--text-secondary);
}

.tab-button.active {
    color: var(--industry-primary, var(--primary));
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--industry-primary, var(--primary));
    border-radius: 3px 3px 0 0;
}

.tab-icon {
    margin-right: 8px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeInTab 0.3s ease;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-solutions {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tab-solution-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 24px;
    transition: var(--transition);
}

.tab-solution-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--industry-primary, var(--primary));
}

.tab-solution-number {
    width: 48px;
    height: 48px;
    background: var(--industry-primary, var(--primary));
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.tab-solution-content {
    flex: 1;
}

.tab-solution-content h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tab-solution-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.tab-solution-example {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tab-solution-example strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
}

@media (max-width: 600px) {
    .tab-button {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .tab-solution-card {
        flex-direction: column;
        gap: 16px;
    }
}

/* ========================================
   Layout Variant: Timeline (Salon)
   ======================================== */

.solutions-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 60px;
}

.solutions-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--industry-primary, var(--primary)) 0%, var(--industry-primary-light, var(--primary-light)) 100%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding: 24px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    transition: var(--transition);
}

.timeline-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

.timeline-item::before {
    content: attr(data-number);
    position: absolute;
    left: -60px;
    top: 24px;
    width: 48px;
    height: 48px;
    background: var(--industry-primary, var(--primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 0 4px var(--bg-secondary);
    z-index: 1;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.timeline-header h3 {
    font-size: 1.15rem;
    flex: 1;
}

.timeline-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.timeline-example {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
}

.timeline-example strong {
    display: block;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.timeline-example ul {
    list-style: none;
}

.timeline-example li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.timeline-example li:last-child {
    border-bottom: none;
}

.timeline-result {
    background: var(--industry-primary-light, var(--primary-light));
    padding: 14px 18px;
    border-radius: var(--radius-md);
    color: var(--industry-primary-dark, var(--primary-dark));
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .solutions-timeline {
        padding-left: 40px;
    }

    .solutions-timeline::before {
        left: 16px;
    }

    .timeline-item::before {
        left: -40px;
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .timeline-header {
        flex-direction: column;
    }
}

/* ========================================
   Split Hero Variant (for variety)
   ======================================== */

.industry-hero-split {
    padding: 140px 0 80px;
    background: var(--industry-gradient, linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%));
}

.industry-hero-split .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
}

.hero-content {
    max-width: 540px;
}

.hero-visual-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    background: var(--bg-primary);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-card-icon {
    width: 56px;
    height: 56px;
    background: var(--industry-primary-light, var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-card-content {
    flex: 1;
}

.stat-card-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--industry-primary, var(--primary-dark));
}

.stat-card-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .industry-hero-split .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: none;
    }

    .hero-visual-stats {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ========================================
   Challenges Section Variants
   ======================================== */

/* Alternating blocks (for variety) */
.challenges-alternating {
    max-width: 800px;
    margin: 0 auto;
}

.challenge-block {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px;
    margin-bottom: 16px;
    background: var(--industry-gradient, linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%));
    border: 2px solid var(--industry-primary-light, #e2e8f0);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.challenge-block:hover {
    border-color: var(--industry-primary, var(--primary));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.challenge-block:nth-child(even) {
    flex-direction: row-reverse;
}

.challenge-block-icon {
    width: 72px;
    height: 72px;
    background: var(--industry-primary-light, #fee2e2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.challenge-block-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--industry-primary, var(--primary));
    stroke-width: 1.75;
    fill: none;
}

.challenge-block-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--industry-primary-dark, #991b1b);
}

.challenge-block-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 600px) {
    .challenge-block,
    .challenge-block:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
}

/* Horizontal scroll challenges */
.challenges-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.challenge-scroll-card {
    flex: 0 0 280px;
    padding: 24px;
    background: var(--industry-gradient, linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%));
    border: 2px solid var(--industry-primary-light, #e2e8f0);
    border-radius: var(--radius-lg);
    scroll-snap-align: start;
    transition: var(--transition);
}

.challenge-scroll-card:hover {
    border-color: var(--industry-primary, var(--primary));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.challenge-scroll-card .challenge-icon {
    width: 52px;
    height: 52px;
    background: var(--industry-primary-light, #fee2e2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.challenge-scroll-card .challenge-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--industry-primary, var(--primary));
    stroke-width: 1.75;
    fill: none;
}

.challenge-scroll-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.challenge-scroll-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* 3-column challenge cards */
.challenges-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.challenge-card {
    padding: 28px;
    background: var(--industry-gradient, linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%));
    border: 2px solid var(--industry-primary-light, #e2e8f0);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.challenge-card:hover {
    transform: translateY(-4px);
    border-color: var(--industry-primary, var(--primary));
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.challenge-card .challenge-icon {
    width: 64px;
    height: 64px;
    background: var(--industry-primary-light, #fee2e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.challenge-card .challenge-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--industry-primary, var(--primary));
    stroke-width: 1.75;
    fill: none;
}

.challenge-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.challenge-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .challenges-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .challenges-cards {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Pipeline Section Variants
   ======================================== */

.pipeline-section {
    padding: 60px 0;
    background: var(--bg-tertiary);
}

.pipeline-section h2 {
    text-align: center;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.pipeline-stages {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.pipeline-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 12px;
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.stage-dot {
    width: 28px;
    height: 28px;
    background: var(--industry-primary, var(--primary));
    border-radius: 50%;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.stage-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

.stage-content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stage-content h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    line-height: 1.3;
    color: var(--text-primary);
}

.stage-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pipeline-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    flex-shrink: 0;
    color: var(--text-muted);
    font-size: 1.25rem;
}

@media (max-width: 900px) {
    .pipeline-stages {
        flex-wrap: wrap;
        gap: 16px;
    }

    .pipeline-stage {
        min-width: calc(50% - 40px);
        max-width: calc(50% - 40px);
    }

    .pipeline-connector {
        display: none;
    }
}

@media (max-width: 600px) {
    .pipeline-stage {
        min-width: 100%;
        max-width: 100%;
    }
}

/* Pipeline Visual - Enhanced with icons and arrows */
.pipeline-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pipeline-stage-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    min-width: 120px;
    max-width: 140px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--stage-color, var(--border-color));
    transition: var(--transition);
}

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

.pipeline-stage-card .stage-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--stage-color) 15%, white);
    border-radius: 50%;
}

.pipeline-stage-card .stage-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--stage-color);
}

.pipeline-stage-card .stage-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    text-align: center;
}

.pipeline-stage-card .stage-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

.pipeline-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    flex-shrink: 0;
}

.pipeline-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
}

@media (max-width: 900px) {
    .pipeline-visual {
        gap: 12px;
    }

    .pipeline-stage-card {
        min-width: calc(33% - 16px);
        max-width: calc(33% - 16px);
    }

    .pipeline-arrow {
        display: none;
    }
}

@media (max-width: 600px) {
    .pipeline-stage-card {
        min-width: calc(50% - 8px);
        max-width: calc(50% - 8px);
        padding: 16px 12px;
    }

    .pipeline-stage-card .stage-icon {
        width: 40px;
        height: 40px;
    }

    .pipeline-stage-card .stage-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   Achievements Table Variants
   ======================================== */

.achievements-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.achievements-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.achievements-table {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.achievements-table table {
    width: 100%;
    border-collapse: collapse;
}

.achievements-table th,
.achievements-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.achievements-table th {
    background: var(--bg-tertiary);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.achievements-table td {
    background: var(--bg-primary);
    font-size: 0.95rem;
}

.achievements-table tr:last-child td {
    border-bottom: none;
}

.achievements-table tr:hover td {
    background: var(--bg-secondary);
}

@media (max-width: 600px) {
    .achievements-table th,
    .achievements-table td {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}

/* ========================================
   Recommendation Box Variants
   ======================================== */

.recommendation-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.recommendation-header {
    margin-bottom: 24px;
}

.recommendation-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--industry-primary, var(--primary));
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 12px;
}

.recommendation-header h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.recommendation-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--industry-primary-dark, var(--primary-dark));
}

.recommendation-price span {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-muted);
}

.recommendation-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.recommendation-features {
    text-align: left;
    margin-bottom: 24px;
}

.recommendation-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.recommendation-features li strong {
    color: var(--text-primary);
}

.recommendation-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ========================================
   Bottom CTA Section
   ======================================== */

.bottom-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    text-align: center;
}

.bottom-cta-section h2 {
    color: white;
    margin-bottom: 16px;
}

.bottom-cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.bottom-cta-section .btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* ========================================
   Workflow Tips
   ======================================== */

.workflow-tip {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    padding: 16px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 16px 0;
}

.workflow-tip strong {
    color: #1e40af;
}

.solution-result {
    background: var(--primary-light);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--primary-dark);
    font-weight: 500;
    margin-top: 16px;
}

/* Additional utility classes */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
