/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --border-color: #27272a;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Improve text rendering on mobile */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-gradient-1,
.bg-gradient-2,
.bg-gradient-3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.bg-gradient-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.bg-gradient-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 7s;
}

.bg-gradient-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.45;
    filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.6)) drop-shadow(0 0 24px rgba(139, 92, 246, 0.5));
    animation: iconFloat 30s infinite ease-in-out;
    pointer-events: none;
}

.floating-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.25;
    }

    12.5% {
        transform: translate(150px, -100px) rotate(45deg) scale(1.1);
        opacity: 0.35;
    }

    25% {
        transform: translate(200px, 50px) rotate(90deg) scale(0.95);
        opacity: 0.3;
    }

    37.5% {
        transform: translate(100px, 200px) rotate(135deg) scale(1.05);
        opacity: 0.32;
    }

    50% {
        transform: translate(-150px, 150px) rotate(180deg) scale(0.9);
        opacity: 0.28;
    }

    62.5% {
        transform: translate(-200px, -50px) rotate(225deg) scale(1.1);
        opacity: 0.33;
    }

    75% {
        transform: translate(-100px, -150px) rotate(270deg) scale(1.05);
        opacity: 0.3;
    }

    87.5% {
        transform: translate(50px, -200px) rotate(315deg) scale(0.95);
        opacity: 0.32;
    }
}

/* Ensure content is above background */
.navbar,
section,
footer,
main {
    position: relative;
    z-index: 1;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
    /* Better touch targets for nav links */
    display: flex;
    align-items: center;
    padding: 8px 0;
    min-height: 44px;
}

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

.btn-nav {
    background: var(--gradient);
    color: var(--text-primary) !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 16px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.lang-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.15s ease;
    z-index: 1001;
    box-shadow: var(--shadow-lg);
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-btn:hover .lang-arrow {
    transform: rotate(180deg);
}

.language-selector.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
    font-family: inherit;
}

.lang-option:first-child {
    border-radius: 8px 8px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 8px 8px;
}

.lang-option:hover {
    background: rgba(99, 102, 241, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: heroGradient 15s ease infinite;
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

@keyframes heroGradient {

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

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

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

.hero-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--primary-color);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 500;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.hero-email-group {
    display: flex;
    gap: 12px;
    max-width: 600px;
    flex-wrap: wrap;
}

.hero-email-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 16px;
    /* Prevents zoom on iOS Safari */
    font-family: inherit;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.hero-email-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.hero-email-input::placeholder {
    color: var(--text-secondary);
}

.hero-form-error {
    color: #ef4444;
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 0;
}

/* Message Toggle */
.form-message-toggle {
    margin-top: 16px;
    text-align: center;
}

.message-toggle-btn {
    background: rgba(99, 102, 241, 0.1) !important;
    border: 1px solid rgba(99, 102, 241, 0.3) !important;
    border-radius: 8px !important;
    color: #6366f1 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    cursor: pointer;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
    font-family: inherit;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    text-decoration: none !important;
    min-height: 44px;
    /* Better touch target */
    -webkit-tap-highlight-color: rgba(99, 102, 241, 0.2);
    touch-action: manipulation;
}

.message-toggle-btn:hover {
    background: rgba(99, 102, 241, 0.2) !important;
    border-color: #6366f1 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.message-toggle-btn::before {
    content: "💬";
    font-size: 16px;
    display: inline-block;
}

.form-message-wrapper {
    margin-top: 16px;
    animation: slideDown 0.15s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message-input {
    width: 100%;
    max-width: 600px;
    padding: 16px 24px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 16px;
    /* Prevents zoom on iOS Safari */
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-message-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-message-input::placeholder {
    color: var(--text-secondary);
}

.hero-cta-secondary {
    margin-bottom: 48px;
}

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

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 16px;
    border: none;
    cursor: pointer;
    /* Ensure minimum touch target size for mobile */
    min-height: 44px;
    min-width: 44px;
    /* Better touch interaction */
    -webkit-tap-highlight-color: rgba(99, 102, 241, 0.2);
    touch-action: manipulation;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

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

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

.btn-outline:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.btn-success {
    background: #10b981 !important;
    border-color: #10b981 !important;
    color: white !important;
    cursor: default !important;
    box-shadow: none !important;
    transform: none !important;
}

.form-success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
    text-align: center;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.hero-proof {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.proof-item {
    display: flex;
    flex-direction: column;
}

.proof-number {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-capabilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 500px;
}

.capability-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: pulseGlow 3s ease-in-out infinite;
}

.capability-card:nth-child(1) {
    animation-delay: 0s;
}

.capability-card:nth-child(2) {
    animation-delay: 0.5s;
}

.capability-card:nth-child(3) {
    animation-delay: 1s;
}

.capability-card:nth-child(4) {
    animation-delay: 1.5s;
}

.capability-card:nth-child(5) {
    animation-delay: 2s;
}

.capability-card:nth-child(6) {
    animation-delay: 2.5s;
}

@keyframes pulseGlow {

    0%,
    100% {
        border-color: var(--border-color);
        box-shadow: 0 0 0 rgba(99, 102, 241, 0);
    }

    50% {
        border-color: rgba(99, 102, 241, 0.8);
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.4), 0 0 40px rgba(139, 92, 246, 0.2);
    }
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

.capability-card:hover::before {
    left: 100%;
}

.capability-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4), 0 0 30px rgba(99, 102, 241, 0.3);
    animation: none;
    /* Stop pulsing on hover for better UX */
}

.capability-card.highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.capability-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

.capability-card:nth-child(even) .capability-icon {
    animation-delay: 0.5s;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.capability-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.capability-card p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

/* Partners Section */
.partners {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-label {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.partner-logo {
    color: var(--text-secondary);
    font-size: 18px;
    font-weight: 600;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits {
    padding: 60px 0;
}

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

.benefit-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Hot Topics Section */
.hot-topics {
    padding: 100px 0 60px 0;
    background: var(--bg-secondary);
}

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

.topic-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
}

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

.topic-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.topic-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.topic-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Pain Points Specific Styles */
.pain-points-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.pain-point-card {
    padding: 32px;
}

.pain-point-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pain-point-content {
    margin-top: 20px;
}

.pain-section,
.solution-section {
    margin-bottom: 20px;
}

.pain-label,
.solution-label {
    display: block;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pain-label {
    color: #ef4444;
}

.solution-label {
    color: #10b981;
}

.pain-text,
.solution-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.keywords-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.keywords-text {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    display: block;
}

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

@media (max-width: 768px) {
    .pain-points-grid {
        grid-template-columns: 1fr;
    }

    .pain-point-card {
        padding: 24px;
    }
}

/* Secondary CTA Sections */
.section-cta {
    margin-top: 40px;
    margin-bottom: 0;
    text-align: center;
    padding: 40px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    /* Make CTA more prominent on mobile */
    position: relative;
    z-index: 10;
}

.section-cta-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.section-cta .btn {
    font-size: 16px;
    padding: 14px 32px;
}

/* Technologies Section */
.technologies {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.tech-category {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.tech-category-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
}

.tech-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-tool {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tech-tool:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
}

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

.step {
    text-align: center;
}

.step-number {
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    display: block;
}

.step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Human Touch Section */
.human-touch {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.human-touch-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.human-touch-icon {
    font-size: 80px;
    margin-bottom: 32px;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

.human-touch-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.human-touch-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.human-touch-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.human-touch-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.human-touch-feature .feature-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.human-touch-feature .feature-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Success Stories Section */
.success-stories {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.sector-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.sector-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.sector-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.sector-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

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

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

.portfolio-category {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.portfolio-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.3;
}

.portfolio-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.portfolio-tech-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 500;
}

.portfolio-results {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.portfolio-result-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 100px;
}

.portfolio-result-value {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.portfolio-result-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

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

.testimonial-rating {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.author-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: var(--text-secondary);
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    padding: 24px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.15s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
}

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

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form .hero-email-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-form input[type="email"] {
    width: 100%;
    margin-bottom: 0;
}

.cta-form .btn {
    width: 100%;
    justify-content: center;
}

.cta-form input[type="hidden"] {
    display: none;
}

.cta-email-input {
    flex: 1;
    padding: 18px 24px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 16px;
    /* Prevents zoom on iOS Safari */
    font-family: inherit;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.cta-email-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.cta-email-input::placeholder {
    color: var(--text-secondary);
}

.cta-error {
    color: #ef4444;
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 0;
}

.cta-note {
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 14px;
}

@media (max-width: 768px) {
    .cta-form {
        flex-direction: column;
    }

    .cta-form .hero-email-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-email-input,
    .cta-form .btn {
        width: 100%;
    }

    .form-message-input {
        max-width: 100%;
    }

    /* Improve CTA section visibility */
    .cta {
        padding: 80px 0;
    }

    .cta-content {
        padding: 0 20px;
    }
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-icon {
    transform: scale(1.1) rotate(-5deg);
}

.footer-logo .logo-text {
    font-size: 28px;
    margin-bottom: 0;
    display: inline-block;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.footer-contact {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.footer-contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer-links {
    display: flex;
    gap: 24px;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-email-group {
        flex-direction: column;
    }

    .hero-email-input {
        min-width: 100%;
    }

    .hero-email-group .btn {
        width: 100%;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .human-touch-title {
        font-size: 28px;
    }

    .human-touch-description {
        font-size: 16px;
    }

    .human-touch-features {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 32px;
        gap: 24px;
        transform: translateX(-100%);
        transition: transform 0.15s ease;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu a {
        padding: 12px 0;
        min-height: 48px;
    }

    .mobile-menu-toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        padding: 8px;
        -webkit-tap-highlight-color: rgba(99, 102, 241, 0.2);
        touch-action: manipulation;
    }

    .language-selector {
        margin-left: 0;
        margin-right: 16px;
    }

    .lang-dropdown {
        right: auto;
        left: 0;
    }

    .lang-btn {
        min-height: 44px;
        padding: 10px 16px;
    }

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

    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-proof {
        flex-direction: column;
        gap: 24px;
    }

    /* Improve form on tablet */
    .hero-email-group {
        gap: 12px;
    }

    .hero-email-input {
        font-size: 16px;
        /* Prevents zoom on iOS */
        padding: 15px 20px;
        min-height: 48px;
    }

    .section-cta {
        margin-top: 40px;
        padding: 32px 24px;
    }

    .section-cta-text {
        font-size: 18px;
    }

    .section-cta .btn {
        min-height: 48px;
        padding: 15px 28px;
    }

    /* Horizontal Scrolling for Grids on Mobile */
    .benefits-grid,
    .topics-grid,
    .technologies-grid,
    .steps {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 20px; /* Space for scrollbar */
        margin-right: -24px; /* Bleed into padding */
        padding-right: 24px; /* Space at end */
        -webkit-overflow-scrolling: touch;
    }

    .benefits-grid::-webkit-scrollbar,
    .topics-grid::-webkit-scrollbar,
    .technologies-grid::-webkit-scrollbar,
    .steps::-webkit-scrollbar {
        height: 6px;
    }
    
    .benefits-grid::-webkit-scrollbar-track,
    .topics-grid::-webkit-scrollbar-track,
    .technologies-grid::-webkit-scrollbar-track,
    .steps::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }

    .benefits-grid::-webkit-scrollbar-thumb,
    .topics-grid::-webkit-scrollbar-thumb,
    .technologies-grid::-webkit-scrollbar-thumb,
    .steps::-webkit-scrollbar-thumb {
        background: var(--border-color);
        border-radius: 4px;
    }

    .benefit-card,
    .topic-card,
    .pain-point-card,
    .tech-category,
    .step {
        min-width: 85%; /* Show most of one card, hint at next */
        scroll-snap-align: center;
        margin-bottom: 0; /* Remove bottom margin if any */
    }
    
    .step {
        min-width: 85%;
        padding: 24px;
        background: var(--bg-tertiary);
        border-radius: 16px;
        border: 1px solid var(--border-color);
    }

    .pain-points-grid {
        /* Keep pain points stacked or also scroll? 
           Let's scroll them too for consistency and compactness */
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    
    .pain-point-card {
        min-width: 85%;
        scroll-snap-align: center;
    }

    .technologies-grid {
        grid-template-columns: unset; /* Override grid */
    }

    .section-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .sectors-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card {
        padding: 24px;
    }

    .portfolio-card h3 {
        font-size: 20px;
    }

    .cta-title {
        font-size: 32px;
        line-height: 1.3;
    }

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

    .cta-form {
        gap: 12px;
    }

    .cta-email-input {
        font-size: 16px;
        /* Prevents zoom on iOS */
        padding: 15px 20px;
        min-height: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .human-touch-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .human-touch-description {
        font-size: 16px;
    }

    .human-touch-features {
        flex-direction: column;
        gap: 24px;
    }
}

/* Hide sections on mobile - REMOVED/MODIFIED */
/* Was: .hide-mobile { display: none !important; } */
/* Now we keep them visible but optimized */

@media (max-width: 480px) {

    /* Improve card readability */
    .benefit-card,
    .topic-card,
    .pain-point-card,
    .testimonial-card,
    .sector-card {
        padding: 28px 24px;
    }

    /* Better spacing between sections */
    .benefits,
    .hot-topics,
    .how-it-works,
    .technologies,
    .testimonials,
    .faq {
        padding: 60px 0;
    }

    .human-touch,
    .success-stories {
        padding: 60px 0;
    }

    .cta {
        padding: 80px 0;
    }
}

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

    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 16px;
        min-height: 48px;
        /* Larger touch target on small screens */
    }

    .btn-large {
        padding: 18px 24px;
        font-size: 18px;
        min-height: 52px;
    }

    .partners-logos {
        gap: 24px;
    }

    /* Improve form inputs on mobile */
    .hero-email-input,
    .cta-email-input {
        padding: 16px 20px;
        font-size: 16px;
        /* Prevents zoom on iOS */
        min-height: 48px;
    }

    .form-message-input {
        padding: 16px 20px;
        font-size: 16px;
        min-height: 120px;
    }

    /* Better spacing for mobile */
    .hero {
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    /* Improve CTA visibility on mobile */
    .section-cta {
        padding: 32px 20px;
        margin-top: 32px;
    }

    .section-cta-text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .cta-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .cta-subtitle {
        font-size: 17px;
    }

    /* Better proof items spacing */
    .hero-proof {
        gap: 20px;
        padding-top: 24px;
    }

    .proof-number {
        font-size: 28px;
    }

    .proof-label {
        font-size: 13px;
    }

    /* Improve card padding on mobile */
    .benefit-card,
    .topic-card,
    .pain-point-card {
        padding: 24px 20px;
    }

    /* Better section spacing */
    .section-header {
        margin-bottom: 48px;
    }

    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 16px;
    }
}

/* Services Page Styles */
.services-hero {
    padding: 160px 0 80px;
}

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

.service-category {
    margin-bottom: 80px;
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category-header {
    text-align: center;
    margin-bottom: 48px;
}

.service-category-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: block;
}

.service-category-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.service-category-objective {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.service-table-wrapper {
    overflow-x: auto;
    margin-top: 32px;
}

.service-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-table thead {
    background: var(--bg-tertiary);
}

.service-table th {
    padding: 20px 24px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
}

.service-table th:first-child {
    border-right: 1px solid var(--border-color);
}

.service-table td {
    padding: 24px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

.service-table td:first-child {
    border-right: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--text-primary);
    width: 45%;
}

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

.service-table tbody tr:hover {
    background: rgba(99, 102, 241, 0.05);
}

.services-cta {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
}

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

.services-cta-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.services-cta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.services-cta .cta-form {
    max-width: 600px;
    margin: 0 auto 16px;
}

/* Services hero form layout */
.services-hero-form {
    flex-direction: column;
    gap: 16px;
}

.services-hero-form .hero-email-input {
    width: 100%;
    min-width: 100%;
}

.services-hero-form .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .service-category-title {
        font-size: 28px;
    }

    .service-category-objective {
        font-size: 16px;
    }

    .service-table {
        font-size: 14px;
    }

    .service-table th,
    .service-table td {
        padding: 16px;
    }

    .service-table th {
        font-size: 14px;
    }

    .services-cta-title {
        font-size: 32px;
    }

    .services-cta-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .service-table {
        display: block;
    }

    .service-table thead {
        display: none;
    }

    .service-table tbody,
    .service-table tr,
    .service-table td {
        display: block;
        width: 100%;
    }

    .service-table tr {
        margin-bottom: 24px;
        background: var(--bg-secondary);
        border-radius: 12px;
        border: 1px solid var(--border-color);
        padding: 20px;
    }

    .service-table td {
        border: none;
        padding: 12px 0;
    }

    .service-table td:first-child {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 16px;
        margin-bottom: 12px;
        font-size: 16px;
        font-weight: 700;
    }

    .service-table td:last-child {
        padding-top: 12px;
    }
}

/* Social Proof Banner */
.social-proof-banner {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.social-proof-content {
    text-align: center;
}

.social-proof-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.social-proof-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.social-proof-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.social-proof-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    min-width: 150px;
    transition: all 0.3s ease;
}

.social-proof-badge:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.badge-number {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

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

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

.pricing-step {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.pricing-step:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.pricing-step-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    display: block;
}

.pricing-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.pricing-step p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* Urgency Badges */
.urgency-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.urgency-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

/* Mobile Optimizations */
@media (max-width: 1024px) {
    .pricing-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-proof-badges {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .urgency-badges {
        flex-direction: column;
        align-items: center;
    }

    .urgency-badge {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .pricing-compact {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .pricing-compact>div {
        padding: 20px 16px !important;
    }
}

@media (max-width: 480px) {
    .social-proof-title {
        font-size: 22px;
    }

    .badge-number {
        font-size: 28px;
        font-weight: 800;
    }

    .pricing-step-number {
        font-size: 40px;
    }

    .pricing-step h3 {
        font-size: 18px;
    }

    .pricing-step p {
        font-size: 14px;
    }
}