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

:root {
    /* Orange color scheme */
    --primary-orange: #F97316;
    --primary-orange-dark: #EA580C;
    --primary-orange-light: #FB923C;
    --accent-orange: #FED7AA;
    --dark-bg: #1C1917;
    --text-primary: #1C1917;
    --text-secondary: #57534E;
    --text-light: #78716C;
    --bg-white: #FFFFFF;
    --bg-light: #FAFAF9;
    --bg-orange-light: #FFF7ED;
    --border-light: #E7E5E4;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header - Slack style */
.header {
    background: var(--bg-white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 80px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.8;
}

.logo i {
    font-size: 1.75rem;
    color: var(--primary-orange);
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-center a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 400;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-self: end;
}

/* Buttons - Slack style */
.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-orange);
    border: 1px solid var(--primary-orange);
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    border-radius: 4px;
}

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

.btn-primary {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    border-radius: 4px;
}

.btn-primary:hover {
    background: var(--primary-orange-dark);
}

/* Hero Section - Centered like Slack */
.hero-centered {
    padding: 7rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-light) 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.hero-title .accent {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

/* Logo strip inline */
.logo-strip-inline {
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    background: linear-gradient(to bottom, 
        rgba(249, 115, 22, 0.02) 0%, 
        transparent 50%, 
        rgba(249, 115, 22, 0.02) 100%);
    border-radius: 16px;
}

.client-intro {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Process Showcase Window */
.process-showcase {
    margin-top: 3rem;
    perspective: 1000px;
}

.process-window {
    background: white;
    border-radius: 16px;
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05),
        0 20px 40px -10px rgba(249, 115, 22, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-window:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        0 30px 50px -15px rgba(249, 115, 22, 0.15);
}

.process-window .window-header {
    background: linear-gradient(to bottom, #FAFAFA 0%, #F5F5F5 100%);
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.process-window .window-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(249, 115, 22, 0.2) 50%, 
        transparent 100%);
}

.process-window .window-title-bar {
    flex: 1;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.025em;
}

.window-dots {
    display: flex;
    gap: 0.375rem;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
    transition: all 0.2s ease;
    cursor: pointer;
}

.dot:hover {
    transform: scale(1.1);
}

.dot:first-child { 
    background: linear-gradient(135deg, #FF5F56 0%, #FF3B30 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.dot:nth-child(2) { 
    background: linear-gradient(135deg, #FFBD2E 0%, #FFA500 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.dot:nth-child(3) { 
    background: linear-gradient(135deg, #27C93F 0%, #00C851 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.process-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    height: 520px;
    position: relative;
}

.process-steps {
    background: linear-gradient(to right, #FAFAFA 0%, #F8F8F8 100%);
    padding: 1.75rem;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2.75rem;
    bottom: 2rem;
    width: 2px;
    background: linear-gradient(to bottom, 
        var(--border-light) 0%, 
        rgba(249, 115, 22, 0.2) 50%, 
        var(--border-light) 100%);
    z-index: 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    background: transparent;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, 
        rgba(249, 115, 22, 0) 0%, 
        rgba(249, 115, 22, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateX(4px);
}

.process-step.active {
    background: white;
    box-shadow: 
        0 0 0 1px rgba(249, 115, 22, 0.1),
        0 4px 12px rgba(249, 115, 22, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.05);
    transform: translateX(8px);
}

.step-number {
    width: 36px;
    height: 36px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.process-step:hover .step-number {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: scale(1.1);
}

.process-step.active .step-number {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    border-color: var(--primary-orange);
    color: white;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.process-step.active .step-number::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(249, 115, 22, 0.2);
    animation: pulseStep 2s infinite;
}

@keyframes pulseStep {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.step-content h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.process-step.active .step-content h4 {
    color: var(--primary-orange);
}

.step-content p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.process-step.active .step-content p {
    color: var(--text-primary);
}

.process-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(249, 115, 22, 0.02) 0%, 
        rgba(249, 115, 22, 0) 100%);
    overflow-y: auto;
}

.visual-content {
    width: 100%;
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-20px);
    }
}

/* Step 1: Form Preview */
.form-preview {
    background: linear-gradient(to bottom, #FAFAFA 0%, #F5F5F5 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1.75rem;
    max-width: 420px;
    margin: 0 auto;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 20px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.form-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-orange) 0%, 
        var(--primary-orange-light) 50%, 
        var(--primary-orange) 100%);
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.form-field {
    margin-bottom: 1.25rem;
    animation: fieldAppear 0.5s ease-out forwards;
    opacity: 0;
}

.form-field:last-child {
    margin-bottom: 0;
}

.form-field:nth-child(1) { animation-delay: 0.1s; }
.form-field:nth-child(2) { animation-delay: 0.2s; }
.form-field:nth-child(3) { animation-delay: 0.3s; }

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

.form-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.field-input {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    width: 100%;
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.field-input:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.field-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.field-input svg {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    color: var(--primary-orange);
    vertical-align: text-bottom;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.service-option {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 0.625rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    text-align: center;
    opacity: 0;
    animation: serviceAppear 0.5s ease-out forwards;
}

.service-option:nth-child(1) { animation-delay: 0.05s; }
.service-option:nth-child(2) { animation-delay: 0.1s; }
.service-option:nth-child(3) { animation-delay: 0.15s; }
.service-option:nth-child(4) { animation-delay: 0.2s; }

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

.service-option svg {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.service-option span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    line-height: 1.2;
}

.service-option:hover {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.02);
    transform: translateY(-2px);
}

.service-option:hover svg {
    color: var(--primary-orange);
    transform: scale(1.1);
}

.service-option:hover span {
    color: var(--text-primary);
}

.service-option.selected {
    border-color: var(--primary-orange);
    background: linear-gradient(to bottom right, 
        rgba(249, 115, 22, 0.08) 0%, 
        rgba(249, 115, 22, 0.02) 100%);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.service-option.selected svg {
    color: var(--primary-orange);
}

.service-option.selected span {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Step 2: Matching Animation */
.matching-animation {
    text-align: center;
    position: relative;
}

.pulse-center {
    margin: 0 auto 2.5rem;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pulse-center svg {
    color: var(--primary-orange);
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(249, 115, 22, 0.2));
    animation: locationBounce 2s ease-in-out infinite;
}

@keyframes locationBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.pulse-center::before,
.pulse-center::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(249, 115, 22, 0.1) 0%,
        rgba(249, 115, 22, 0.05) 40%,
        transparent 70%
    );
    opacity: 0;
    animation: pulseRing 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.pulse-center::before {
    width: 100%;
    height: 100%;
}

.pulse-center::after {
    width: 150%;
    height: 150%;
    animation-delay: 0.5s;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.matching-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    animation: fadeInUp 0.6s ease-out;
}

.experts-found {
    font-size: 0.9375rem;
    color: var(--primary-orange);
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 20px;
    display: inline-block;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Step 3: Offers List */
.offers-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 420px;
    margin: 0 auto;
}

.offer-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: offerSlide 0.5s ease-out forwards;
    opacity: 0;
}

.offer-card:nth-child(1) { animation-delay: 0.1s; }
.offer-card:nth-child(2) { animation-delay: 0.2s; }
.offer-card:nth-child(3) { animation-delay: 0.3s; }

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

.offer-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(249, 115, 22, 0.08);
}

.offer-card.highlighted {
    border: 2px solid var(--primary-orange);
    background: linear-gradient(to bottom right, 
        white 0%, 
        rgba(249, 115, 22, 0.02) 100%);
    transform: scale(1.02);
    box-shadow: 
        0 0 0 4px rgba(249, 115, 22, 0.1),
        0 8px 24px rgba(249, 115, 22, 0.15);
}

.offer-card.highlighted:hover {
    transform: scale(1.04) translateY(-2px);
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.offer-header strong {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, 
        var(--primary-orange) 0%, 
        var(--primary-orange-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating {
    font-size: 0.9375rem;
    color: #F59E0B;
    letter-spacing: 0.1em;
}

.badge {
    position: absolute;
    top: -10px;
    right: 1.25rem;
    background: linear-gradient(135deg, 
        var(--primary-orange) 0%, 
        var(--primary-orange-dark) 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    animation: badgeBounce 0.6s ease-out 0.5s both;
}

@keyframes badgeBounce {
    0% {
        transform: scale(0) rotate(-10deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Step 4: Success State */
.success-state {
    text-align: center;
    animation: successZoom 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successZoom {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.success-icon svg {
    color: #10B981;
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.2));
    animation: checkmarkDraw 0.8s ease-out 0.3s both;
}

@keyframes checkmarkDraw {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.success-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle at center,
        rgba(16, 185, 129, 0.1) 0%,
        rgba(16, 185, 129, 0.05) 40%,
        transparent 70%
    );
    border-radius: 50%;
    animation: successPulse 1s ease-out 0.8s;
}

@keyframes successPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.success-state h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.success-state p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
    animation: fadeInUp 0.6s ease-out 0.7s both;
}

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

/* Hero Showcase */
.hero-showcase {
    margin-top: 2rem;
}

.showcase-container {
    max-width: 1000px;
    margin: 0 auto;
}

.showcase-window {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.window-title-bar {
    flex: 1;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.showcase-content {
    display: grid;
    grid-template-columns: 240px 1fr;
    height: 500px;
}

.showcase-sidebar {
    background: #F8F8F8;
    border-right: 1px solid var(--border-light);
}

.sidebar-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-header h4 {
    font-size: 1rem;
    font-weight: 600;
}

.sidebar-menu {
    padding: 0.5rem;
}

.menu-item {
    padding: 0.5rem 1rem;
    margin-bottom: 0.25rem;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.menu-item.active {
    background: white;
    color: var(--text-primary);
    font-weight: 500;
}

.showcase-main {
    display: flex;
    flex-direction: column;
}

.chat-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    font-weight: 600;
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    flex-shrink: 0;
}

.message-content {
    flex: 1;
}

.message-header {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.message-header strong {
    font-size: 0.875rem;
}

.time {
    font-size: 0.75rem;
    color: var(--text-light);
}

.message-content p {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.message-attachment {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.attachment-icon {
    font-size: 1.5rem;
}

.attachment-details {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.attachment-details strong {
    font-size: 0.875rem;
}

.attachment-details span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid var(--border-light);
}

.chat-input input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 0.875rem;
}

.cta-button {
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.cta-button.primary {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.cta-button.primary:hover {
    background: var(--primary-orange-dark);
    border: 2px solid var(--primary-orange-dark);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 1px solid var(--primary-orange);
}

.cta-button.secondary:hover {
    border-color: var(--primary-orange-dark);
    color: var(--primary-orange-dark);
}

/* UI Windows */
.hero-illustration {
    position: relative;
    height: 600px;
}

.ui-window {
    position: absolute;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.ui-window:hover {
    transform: scale(1.02);
}

.ui-window.main {
    width: 480px;
    height: 360px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.ui-window.floating-1 {
    width: 220px;
    height: 160px;
    top: 20px;
    right: 0;
    z-index: 1;
}

.ui-window.floating-2 {
    width: 200px;
    height: 140px;
    bottom: 40px;
    left: 0;
    z-index: 1;
}

.window-header {
    background: #F5F5F5;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.window-dots {
    display: flex;
    gap: 0.375rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
}

.dot:first-child { background: #FF5F56; }
.dot:nth-child(2) { background: #FFBD2E; }
.dot:nth-child(3) { background: #27C93F; }

.window-content {
    padding: 1.5rem;
}

.window-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.window-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Logo Strip */
.logo-strip {
    padding: 3rem 2rem;
    background: var(--bg-light);
    text-align: center;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.logo-strip-container {
    max-width: 1400px;
    margin: 0 auto;
}

.logo-strip-text {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.client-logo {
    height: 50px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    color: var(--text-secondary);
    animation: logoFadeIn 0.6s ease-out forwards;
}

.client-logo:nth-child(1) { animation-delay: 0.1s; }
.client-logo:nth-child(2) { animation-delay: 0.2s; }
.client-logo:nth-child(3) { animation-delay: 0.3s; }
.client-logo:nth-child(4) { animation-delay: 0.4s; }
.client-logo:nth-child(5) { animation-delay: 0.5s; }
.client-logo:nth-child(6) { animation-delay: 0.6s; }

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

.client-logo svg {
    height: 100%;
    width: auto;
}

.client-logo:hover {
    opacity: 0.9;
    filter: grayscale(0%);
    transform: translateY(-2px);
    color: var(--primary-orange);
}

/* Services Section - Now using Tailwind classes */
/* Old service-card CSS has been replaced with Tailwind utility classes in the component */

/* Keep only the section headers that might be used elsewhere */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* Products Section */
.products {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.products .container {
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s;
    border: 1px solid var(--border-light);
}

.product-card:hover {
    border: 2px solid var(--primary-orange);
}

.product-image {
    height: 200px;
    background: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-light);
}

.product-content {
    padding: 1.5rem;
}

.product-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-cta {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
}

.product-cta:hover {
    gap: 0.75rem;
}

/* Locations */
.locations {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.location-content {
    margin-top: 3rem;
}

/* Nationwide Coverage */
.nationwide-coverage {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.coverage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: var(--bg-orange-light);
    border-radius: 50%;
    margin-bottom: 2rem;
    color: var(--primary-orange);
}

.coverage-icon i {
    font-size: 3.5rem;
}

.nationwide-coverage h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.nationwide-coverage p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.coverage-highlights {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.highlight-item {
    text-align: center;
}

.highlight-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
}

.highlight-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .coverage-highlights {
        gap: 2rem;
    }
    
    .highlight-number {
        font-size: 2.5rem;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Map Stats */
.map-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

/* Location Details */
.location-details h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.location-details p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.state-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.state-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.state-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9375rem;
}

.state-item:hover,
.state-item.active {
    background: var(--bg-orange-light);
    color: var(--primary-orange);
    transform: translateX(4px);
}

.state-dot {
    width: 8px;
    height: 8px;
    background: var(--border-light);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.state-item:hover .state-dot,
.state-item.active .state-dot {
    background: var(--primary-orange);
    transform: scale(1.5);
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: white;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.lead-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
    font-size: 1.125rem;
}

.radio-group {
    display: grid;
    gap: 1rem;
}

.radio-option {
    position: relative;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-label {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.2s;
}

.radio-option input[type="radio"]:checked + .radio-label {
    background: white;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.radio-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.radio-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.size-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.size-option {
    position: relative;
    cursor: pointer;
}

.size-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.size-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.2s;
    text-align: center;
}

.size-option input[type="radio"]:checked + .size-label {
    background: white;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

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

.size-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: var(--text-light);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    background: white;
    border-color: var(--primary-orange);
}

.lead-form textarea {
    resize: vertical;
}

.form-consent {
    margin: 2rem 0 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 6px;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.125rem;
    flex-shrink: 0;
    accent-color: var(--primary-orange);
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: white;
    color: var(--primary-orange);
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    background: var(--bg-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.submit-button:hover svg {
    transform: translateX(4px);
}

.submit-button svg {
    transition: transform 0.2s;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .size-options {
        grid-template-columns: 1fr;
    }
}

/* Multi-Step Form Progress */
.form-progress {
    margin-bottom: 3rem;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.progress-fill {
    height: 100%;
    background: white;
    transition: width 0.3s ease;
    width: 33.33%;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    max-width: 400px;
    margin: 0 auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.step-number {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: white;
    color: var(--primary-orange);
    border-color: white;
}

.progress-step span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.form-step.active {
    display: block;
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-align: center;
}

.step-title + p {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.step-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 2rem 0 1rem;
}

/* Project Options */
.project-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.project-option {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: inherit;
}

.project-option:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.project-option:hover .option-icon {
    transform: scale(1.05);
    background: var(--primary-orange);
    color: white;
}

.project-option.selected {
    background: white;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.option-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: var(--primary-orange);
}

.option-icon i {
    font-size: 1.75rem;
}

.project-option h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.project-option p {
    color: var(--text-secondary);
    font-size: 0.8125rem;
    line-height: 1.3;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    position: relative;
    cursor: pointer;
}

.service-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.service-content {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.service-card:hover .service-content {
    background: white;
    transform: translateY(-2px);
}

.service-card input[type="checkbox"]:checked + .service-content {
    background: white;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.service-card input[type="checkbox"]:checked + .service-content::before {
    content: '✓';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 24px;
    height: 24px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(249, 115, 22, 0.3);
    animation: checkIn 0.3s ease-out;
}

@keyframes checkIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.service-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.service-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Size Grid */
.size-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.size-card {
    position: relative;
    cursor: pointer;
    height: 100%;
}

.size-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.size-content {
    padding: 1.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90px;
}

.size-card:hover .size-content {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.size-card input[type="radio"]:checked ~ .size-content {
    background: white;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.size-card input[type="radio"]:checked ~ .size-content::before {
    content: '✓';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.size-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.125rem;
}

.size-content p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.2;
}

.custom-input {
    margin-top: 0.75rem;
    padding: 0.625rem 0.875rem;
    width: 100%;
    max-width: 150px;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    font-size: 0.875rem;
    background: white;
    color: var(--text-primary);
    transition: all 0.2s ease;
    text-align: center;
}

.custom-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.custom-input:disabled {
    background: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    opacity: 0.6;
}

.size-card input[type="radio"]:checked ~ .size-content .custom-input {
    border-color: var(--primary-orange);
    background: white;
}

/* Size section spacing */
.size-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive breakpoints for size grid */
@media (max-width: 1024px) {
    .size-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Timeline Options */
.timeline-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-option {
    position: relative;
    cursor: pointer;
}

.timeline-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.timeline-content {
    position: relative;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s ease;
}

.timeline-option:hover .timeline-content {
    background: white;
}

.timeline-option input[type="radio"]:checked + .timeline-content {
    background: white;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.timeline-option input[type="radio"]:checked + .timeline-content::before {
    content: '✓';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(249, 115, 22, 0.3);
    animation: checkIn 0.3s ease-out;
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.timeline-content p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.nav-button.next {
    margin-left: auto;
    background: white;
    color: var(--primary-orange);
    border-color: white;
}

.nav-button.next:hover {
    background: var(--bg-orange-light);
    transform: translateX(4px);
}

/* Additional Styles */
.additional-info {
    margin-bottom: 1.5rem;
}

.additional-info textarea {
    background: rgba(255, 255, 255, 0.9);
}

/* Form Success Message */
.form-success-message {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

.form-success-message h3 {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.form-success-message p {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.form-success-message ul {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.form-success-message li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.form-success-message li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

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

/* Responsive Design for Forms */
@media (max-width: 1024px) {
    .project-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .timeline-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .project-options {
        grid-template-columns: 1fr;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-options {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .step-navigation {
        flex-direction: column;
    }
    
    .nav-button.next {
        margin-left: 0;
    }
}

/* Footer */
.footer {
    background: var(--bg-light);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-centered {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-container {
        grid-template-columns: 1fr auto;
    }
    
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    /* Process Showcase Mobile */
    .process-content {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .process-steps {
        display: flex;
        overflow-x: auto;
        padding: 1rem;
        gap: 1rem;
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }
    
    .process-step {
        flex-shrink: 0;
        width: 200px;
        margin-bottom: 0;
    }
    
    .process-visual {
        min-height: 350px;
    }
    
    .form-preview,
    .offers-list {
        max-width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-button {
        width: 100%;
    }
    
    /* Service grid mobile */
    .service-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .service-option {
        padding: 0.75rem;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .service-option svg {
        width: 24px;
        height: 24px;
    }
    
    /* Location map mobile */
    .location-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .germany-map-container {
        order: 2;
    }
    
    .location-details {
        order: 1;
        text-align: center;
    }
    
    .state-list {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto 2rem;
    }
    
    .map-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Modern Service Pages */
.service-page {
    padding-top: 80px;
    background: #FAFAFA;
    min-height: 100vh;
}

/* Tailwind-style utility classes */
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.text-center { text-align: center; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-gray-600 { color: #4B5563; }
.text-gray-700 { color: #374151; }
.text-gray-900 { color: #111827; }
.text-white { color: #FFFFFF; }
.text-orange-600 { color: var(--primary-orange); }
.text-green-600 { color: #059669; }
.text-blue-600 { color: #2563EB; }
.text-purple-600 { color: #7C3AED; }
.text-red-600 { color: #DC2626; }

.bg-white { background-color: #FFFFFF; }
.bg-gray-50 { background-color: #F9FAFB; }
.bg-gray-100 { background-color: #F3F4F6; }
.bg-orange-50 { background-color: #FFF7ED; }
.bg-orange-100 { background-color: #FFEDD5; }
.bg-orange-500 { background-color: var(--primary-orange); }
.bg-green-100 { background-color: #D1FAE5; }
.bg-green-500 { background-color: #10B981; }
.bg-blue-50 { background-color: #EFF6FF; }
.bg-blue-100 { background-color: #DBEAFE; }
.bg-blue-500 { background-color: #3B82F6; }
.bg-purple-50 { background-color: #F5F3FF; }
.bg-purple-100 { background-color: #EDE9FE; }
.bg-purple-500 { background-color: #8B5CF6; }
.bg-purple-600 { background-color: #7C3AED; }
.bg-red-100 { background-color: #FEE2E2; }
.bg-red-500 { background-color: #EF4444; }

.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-b { border-bottom-width: 1px; }
.border-gray-200 { border-color: #E5E7EB; }
.border-orange-500 { border-color: var(--primary-orange); }
.border-green-500 { border-color: #10B981; }
.border-blue-500 { border-color: #3B82F6; }
.border-purple-500 { border-color: #8B5CF6; }
.border-red-500 { border-color: #EF4444; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

.grid { display: grid; }
.flex { display: flex; }
.inline-block { display: inline-block; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-shrink-0 { flex-shrink: 0; }

.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-full { width: 100%; }
.h-8 { height: 2rem; }
.h-12 { height: 3rem; }

.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (min-width: 768px) {
    .md\\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.hover\\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.hover\\:bg-purple-700:hover { background-color: #6D28D9; }

.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: background-color, border-color, color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

.transform { transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.scale-105 { --tw-scale-x: 1.05; --tw-scale-y: 1.05; }

.ring-2 { box-shadow: 0 0 0 2px var(--tw-ring-color); }
.ring-purple-500 { --tw-ring-color: #8B5CF6; }

/* Additional modern styles */
.mr-2 { margin-right: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }

/* Service hero sections */
.service-hero {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-orange-light) 0%, var(--bg-light) 100%);
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-hero .lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.service-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Modern card styles */
.card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* Clean sections */
section {
    position: relative;
    overflow: hidden;
}

/* Better typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    color: var(--text-primary);
}

p {
    line-height: 1.6;
}

/* Improved buttons */
button, .btn {
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}

/* Clean list styles */
ul {
    list-style: none;
    padding: 0;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile Process Section - Hidden by default */
.mobile-process-section {
    display: none;
}

/* =============================================
   MOBILE REDESIGN FOR HOME PAGE
   ============================================= */
@media (max-width: 768px) {
    /* Mobile Navigation handled in Navigation.astro component */
    
    /* Mobile Hero Section */
    .hero-centered {
        padding: 2rem 1rem 2rem; /* Normal padding since body has padding-top */
        min-height: auto;
    }
    
    /* Body padding handled by component styles */
    
    .hero-container {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .hero-title .accent {
        display: inline-block;
        transform: scale(1);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    /* Mobile CTA Buttons */
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        padding: 0;
    }
    
    .cta-button {
        width: 100%;
        padding: 1rem !important;
        font-size: 0.9375rem !important;
        border-radius: 8px;
    }
    
    .cta-button.secondary {
        background: var(--bg-light);
        color: var(--text-primary);
        border: 1px solid var(--border-light);
    }
    
    /* Mobile Logo Strip */
    .logo-strip-inline {
        margin-top: 2rem;
        padding: 1.5rem 0;
        background: var(--bg-light);
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .client-intro {
        font-size: 0.875rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .client-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-content: center;
    }
    
    .client-logo {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        background: white;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .client-logo i {
        font-size: 1.5rem;
        color: var(--primary-orange);
    }
    
    .client-logo span {
        font-size: 0.75rem;
        text-align: center;
    }
    
    /* Mobile Services Section */
    .services {
        padding: 3rem 1rem !important;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem !important;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    
    /* Mobile Services Section */
    .services {
        padding: 3rem 1rem !important;
    }
    
    .services-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        padding: 0 !important;
    }
    
    .service-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 1.25rem 0.75rem !important;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
    }
    
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--primary-orange);
        transform: scaleX(0);
        transition: transform 0.3s;
    }
    
    .service-card:active::before {
        transform: scaleX(1);
    }
    
    .service-icon {
        width: 80px !important;
        height: 80px !important;
        background: var(--bg-orange-light) !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 0.75rem !important;
        flex-shrink: 0;
        overflow: hidden !important;
    }
    
    .service-icon i {
        font-size: 1.5rem !important;
        color: var(--primary-orange) !important;
    }
    
    .service-card h3 {
        font-size: 1rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }
    
    .service-card p {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
        color: var(--text-secondary) !important;
        display: none !important; /* Hide descriptions on mobile */
    }
    
    /* Mobile Process Section - Complete Redesign */
    .process-showcase {
        padding: 2rem 0 !important;
        display: none !important; /* Hide desktop version */
    }
    
    /* Mobile-only process section */
    .mobile-process-section {
        display: block !important;
        padding: 3rem 1rem;
        background: var(--bg-light);
    }
    
    .mobile-process-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .mobile-process-header h2 {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }
    
    .mobile-process-header p {
        color: var(--text-secondary);
        font-size: 1rem;
    }
    
    .mobile-process-steps {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .mobile-process-step {
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        position: relative;
        transition: all 0.3s;
    }
    
    .mobile-process-step::before {
        content: '';
        position: absolute;
        left: 2rem;
        bottom: -1.5rem;
        width: 2px;
        height: 1.5rem;
        background: var(--primary-orange);
        opacity: 0.3;
    }
    
    .mobile-process-step:last-child::before {
        display: none;
    }
    
    .mobile-step-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .mobile-step-number {
        width: 40px;
        height: 40px;
        background: var(--primary-orange);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.125rem;
        flex-shrink: 0;
    }
    
    .mobile-step-content h3 {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.25rem;
    }
    
    .mobile-step-content p {
        color: var(--text-secondary);
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .mobile-process-cta {
        text-align: center;
        margin-top: 2rem;
    }
    
    .mobile-process-cta .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    /* Mobile Location Section */
    .location-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .location-details {
        order: 1 !important;
        text-align: center !important;
    }
    
    .germany-map-container {
        order: 2 !important;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .state-list {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        max-width: 100% !important;
    }
    
    .state-item {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        background: var(--bg-light);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .map-stats {
        flex-direction: column !important;
        gap: 1.5rem !important;
        margin-top: 2rem;
    }
    
    .stat-card {
        text-align: center;
        background: white;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    
    .stat-number {
        font-size: 2.5rem !important;
    }
    
    /* Mobile CTA Form Section */
    .cta-section {
        background: linear-gradient(135deg, var(--primary-orange) 0%, #E85D04 100%);
        padding: 3rem 1rem !important;
    }
    
    .cta-content {
        max-width: 100% !important;
    }
    
    .cta-content h2 {
        font-size: 1.75rem !important;
        margin-bottom: 0.5rem;
        color: white !important;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    /* Mobile Multi-Step Form */
    .form-progress {
        margin-bottom: 2rem;
    }
    
    .progress-steps {
        gap: 0 !important;
    }
    
    .progress-step {
        padding: 0.5rem !important;
    }
    
    .progress-step span {
        display: none !important; /* Hide labels on mobile */
    }
    
    .step-number {
        width: 36px !important;
        height: 36px !important;
        font-size: 1rem !important;
        background: white !important;
        color: var(--primary-orange) !important;
        border: 2px solid white !important;
    }
    
    .lead-form {
        background: white !important;
        padding: 1.5rem !important;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border: none !important;
    }
    
    .form-step {
        padding: 1rem !important;
    }
    
    .step-title {
        font-size: 1.25rem !important;
        margin-bottom: 1rem !important;
        color: var(--text-primary) !important;
    }
    
    /* Fix form label colors on mobile */
    .form-label {
        color: var(--text-primary) !important;
    }
    
    /* Fix checkbox label color */
    .checkbox-label {
        color: var(--text-secondary) !important;
    }
    
    /* Custom checkbox styling */
    .form-consent {
        background: var(--bg-light) !important;
        padding: 1.25rem !important;
        border-radius: 10px !important;
        margin: 1.5rem 0 !important;
    }
    
    .checkbox-label {
        display: flex !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
        cursor: pointer !important;
        line-height: 1.5 !important;
    }
    
    .checkbox-label input[type="checkbox"] {
        -webkit-appearance: none !important;
        appearance: none !important;
        width: 22px !important;
        height: 22px !important;
        border: 2px solid var(--border-light) !important;
        border-radius: 6px !important;
        background: white !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
        margin-top: 0.125rem !important;
        position: relative !important;
        transition: all 0.2s !important;
    }
    
    .checkbox-label input[type="checkbox"]:checked {
        background: var(--primary-orange) !important;
        border-color: var(--primary-orange) !important;
    }
    
    .checkbox-label input[type="checkbox"]:checked::after {
        content: '✓' !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        color: white !important;
        font-size: 14px !important;
        font-weight: bold !important;
    }
    
    .checkbox-label input[type="checkbox"]:focus {
        outline: none !important;
        box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2) !important;
    }
    
    .checkbox-label span {
        flex: 1 !important;
        font-size: 0.875rem !important;
        color: var(--text-secondary) !important;
    }
    
    /* Fix progress bar colors */
    .progress-bar {
        background: rgba(255, 255, 255, 0.3) !important;
    }
    
    .progress-fill {
        background: white !important;
    }
    
    /* Mobile Form Options - Consistent Styling */
    
    /* Base option styles for all types */
    .project-options,
    .service-grid,
    .size-grid,
    .timeline-options {
        gap: 0.75rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .project-options {
        grid-template-columns: 1fr !important;
    }
    
    /* Remove card styling from service-card to avoid double cards */
    .service-card {
        background: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .project-option,
    .service-content,
    .size-content,
    .timeline-content {
        background: white !important;
        border: 2px solid var(--border-light) !important;
        border-radius: 12px !important;
        transition: all 0.2s !important;
        cursor: pointer !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    /* Hover states */
    .project-option:hover,
    .service-content:hover,
    .size-content:hover,
    .timeline-content:hover {
        border-color: rgba(249, 115, 22, 0.5) !important;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Selected states */
    .project-option.selected,
    .service-card input[type="checkbox"]:checked ~ .service-content,
    .size-card input[type="radio"]:checked ~ .size-content,
    .timeline-option input[type="radio"]:checked ~ .timeline-content {
        border-color: var(--primary-orange) !important;
        background: linear-gradient(to right, rgba(249, 115, 22, 0.05) 0%, rgba(249, 115, 22, 0.02) 100%) !important;
        box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15) !important;
    }
    
    /* Left accent bar for all selected items */
    .project-option::before,
    .service-content::after,
    .size-content::before,
    .timeline-content::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--primary-orange);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.2s;
    }
    
    .project-option.selected::before,
    .service-card input[type="checkbox"]:checked ~ .service-content::after,
    .size-card input[type="radio"]:checked ~ .size-content::before,
    .timeline-option input[type="radio"]:checked ~ .timeline-content::before {
        transform: scaleX(1);
    }
    
    /* Project Options specific */
    .project-option {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 1.5rem !important;
        gap: 0.75rem;
        min-height: 140px !important;
    }
    
    .option-icon {
        width: 60px !important;
        height: 60px !important;
        background: var(--bg-light) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.2s !important;
        flex-shrink: 0;
    }
    
    .project-option.selected .option-icon {
        background: var(--primary-orange) !important;
        color: white !important;
        transform: scale(1.1) !important;
    }
    
    .option-icon i {
        font-size: 1.5rem !important;
    }
    
    .project-option h4 {
        font-size: 1.125rem !important;
        font-weight: 600 !important;
        color: var(--text-primary) !important;
        margin: 0 !important;
        line-height: 1.2 !important;
    }
    
    .project-option p {
        font-size: 0.875rem !important;
        color: var(--text-secondary) !important;
        margin: 0 !important;
        display: block !important;
    }
    
    /* Service Grid specific */
    .service-grid {
        grid-template-columns: 1fr !important;
    }
    
    .service-section {
        width: 100% !important;
    }
    
    .service-section .step-title {
        text-align: center !important;
        margin-bottom: 1.5rem !important;
    }
    
    .service-card {
        display: block !important;
    }
    
    .service-card label {
        position: relative !important;
        display: block !important;
        cursor: pointer !important;
    }
    
    .service-card input[type="checkbox"] {
        position: absolute !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .service-content {
        padding: 1.25rem !important;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    /* Checkbox styling */
    .service-content::before {
        content: '';
        width: 22px;
        height: 22px;
        border: 2px solid var(--border-light);
        border-radius: 6px;
        flex-shrink: 0;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        line-height: 1;
    }
    
    .service-card input[type="checkbox"]:checked ~ .service-content::before {
        background: var(--primary-orange);
        border-color: var(--primary-orange);
        content: '✓';
        color: white;
        font-weight: bold;
    }
    
    .service-content h4 {
        font-size: 1rem !important;
        margin: 0 !important;
        font-weight: 600 !important;
        color: var(--text-primary) !important;
    }
    
    .service-content p {
        display: none;
    }
    
    /* Size Grid specific */
    .size-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .size-card {
        position: relative !important;
    }
    
    .size-card input[type="radio"] {
        position: absolute !important;
        opacity: 0 !important;
    }
    
    .size-content {
        padding: 1.25rem 0.75rem !important;
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 80px;
        justify-content: center;
    }
    
    .size-content h4 {
        font-size: 0.9375rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.25rem !important;
        color: var(--text-primary) !important;
    }
    
    .size-content p {
        font-size: 0.75rem !important;
        color: var(--text-secondary) !important;
        margin: 0 !important;
    }
    
    /* Custom size input */
    .custom-input {
        margin-top: 0.5rem !important;
        padding: 0.5rem !important;
        font-size: 0.875rem !important;
        width: 100% !important;
        border: 1px solid var(--border-light) !important;
        border-radius: 6px !important;
        background: var(--bg-light) !important;
    }
    
    .custom-input:focus {
        border-color: var(--primary-orange) !important;
        outline: none !important;
        background: white !important;
    }
    
    /* Timeline Options specific */
    .timeline-options {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .timeline-option {
        position: relative !important;
    }
    
    .timeline-option input[type="radio"] {
        position: absolute !important;
        opacity: 0 !important;
    }
    
    .timeline-content {
        padding: 1.25rem 0.75rem !important;
        text-align: center !important;
        min-height: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .timeline-content h4 {
        font-size: 0.9375rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.25rem !important;
        color: var(--text-primary) !important;
    }
    
    .timeline-content p {
        font-size: 0.75rem !important;
        color: var(--text-secondary) !important;
        margin: 0 !important;
    }
    
    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .contact-grid input,
    .contact-grid select,
    .contact-grid textarea {
        padding: 1rem !important;
        font-size: 16px !important; /* Prevent zoom on iOS */
        border-radius: 10px !important;
        background: var(--bg-light) !important;
        border: 2px solid var(--border-light) !important;
        transition: all 0.2s !important;
    }
    
    .contact-grid input:focus,
    .contact-grid select:focus,
    .contact-grid textarea:focus {
        border-color: var(--primary-orange) !important;
        background: white !important;
        outline: none !important;
    }
    
    /* Additional info textarea */
    .additional-info textarea {
        min-height: 80px !important;
    }
    
    /* Mobile Step Navigation */
    .step-navigation {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem;
        margin-top: 2rem !important;
    }
    
    /* Two-button layout for steps 2 and 3 */
    .form-step[data-step="2"] .step-navigation,
    .form-step[data-step="3"] .step-navigation {
        flex-direction: row !important;
        gap: 1rem !important;
    }
    
    .nav-button {
        padding: 1rem 1.25rem !important;
        font-size: 0.9375rem !important;
        flex: 1;
        background: var(--primary-orange) !important;
        color: white !important;
        border: none !important;
        border-radius: 10px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: all 0.2s !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        min-width: 120px !important;
    }
    
    .nav-button:hover {
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3) !important;
    }
    
    .nav-button:active {
        transform: translateY(0) !important;
    }
    
    .nav-button.back {
        background: white !important;
        color: var(--text-primary) !important;
        border: 2px solid var(--border-light) !important;
    }
    
    .nav-button.back:hover {
        border-color: var(--primary-orange) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }
    
    .nav-button.next {
        background: var(--primary-orange) !important;
    }
    
    .nav-button i {
        font-size: 0.875rem !important;
    }
    
    /* Submit button (Step 3) */
    .submit-button {
        width: 100% !important;
        padding: 1.25rem !important;
        font-size: 1rem !important;
        background: var(--primary-orange) !important;
        color: white !important;
        font-weight: 700 !important;
        border: none !important;
        border-radius: 10px !important;
        cursor: pointer !important;
        transition: all 0.2s !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        margin-top: 0.5rem !important;
    }
    
    .submit-button:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4) !important;
        background: var(--primary-orange-dark) !important;
    }
    
    .submit-button:active {
        transform: translateY(0) !important;
    }
    
    /* Button text */
    .button-text {
        font-weight: 700 !important;
    }
    
    /* First step - no back button */
    .form-step[data-step="1"] .nav-button.back {
        display: none !important;
    }
    
    .form-step[data-step="1"] .nav-button.next {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    /* Fix step navigation container for first step */
    .form-step[data-step="1"] .step-navigation {
        justify-content: center !important;
    }
    
    /* Size section styling */
    .size-section {
        margin-top: 2rem !important;
        padding-top: 2rem !important;
        border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    }
    
    .size-section .step-subtitle {
        text-align: center !important;
        font-size: 1.125rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Fix form input styles for mobile */
    .lead-form input,
    .lead-form select,
    .lead-form textarea {
        background: var(--bg-light) !important;
        border: 2px solid var(--border-light) !important;
        color: var(--text-primary) !important;
    }
    
    .lead-form input:focus,
    .lead-form select:focus,
    .lead-form textarea:focus {
        background: white !important;
        border-color: var(--primary-orange) !important;
    }
    
    /* Fix radio and size options */
    .radio-label,
    .size-label {
        background: var(--bg-light) !important;
        border: 2px solid var(--border-light) !important;
    }
    
    .radio-option input[type="radio"]:checked + .radio-label,
    .size-option input[type="radio"]:checked + .size-label {
        background: white !important;
        border-color: var(--primary-orange) !important;
    }
    
    /* Timeline options mobile fix */
    .timeline-option .timeline-content {
        background: var(--bg-light) !important;
        padding: 1rem !important;
        border-radius: 8px !important;
        border: 2px solid transparent !important;
        transition: all 0.2s !important;
    }
    
    .timeline-option input[type="radio"]:checked + .timeline-content {
        background: white !important;
        border-color: var(--primary-orange) !important;
    }
    
    /* Mobile Footer */
    .footer {
        padding: 2rem 1rem 1.5rem !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .footer-section li {
        margin-bottom: 0 !important;
    }
    
    .footer-section a {
        font-size: 0.875rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem !important;
        font-size: 0.75rem;
    }
    
    /* Utility overrides for mobile */
    .hide-mobile {
        display: none !important;
    }
    
    /* Better touch targets */
    button, a, .clickable {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Improved spacing */
    section {
        padding: 3rem 1rem !important;
    }
    
    /* Better readability */
    p, li {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}

/* Small mobile devices */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .client-logos {
        grid-template-columns: 1fr !important;
    }
    
    .timeline-options,
    .size-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Landing Page Contact Form Styles */
.contact-form-simple {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 100%;
    margin: 0 auto;
}

.contact-form-simple .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-form-simple .form-field {
    position: relative;
}

.contact-form-simple .form-field.full-width {
    grid-column: 1 / -1;
}

.contact-form-simple .form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.contact-form-simple .form-field input,
.contact-form-simple .form-field select,
.contact-form-simple .form-field textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.2s ease;
    font-family: inherit;
}

.contact-form-simple .form-field input::placeholder,
.contact-form-simple .form-field textarea::placeholder {
    color: var(--text-light);
}

.contact-form-simple .form-field input:hover,
.contact-form-simple .form-field select:hover,
.contact-form-simple .form-field textarea:hover {
    border-color: rgba(249, 115, 22, 0.3);
    background: white;
}

.contact-form-simple .form-field input:focus,
.contact-form-simple .form-field select:focus,
.contact-form-simple .form-field textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: white;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.contact-form-simple .form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2357534E'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}

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

.contact-form-simple .cta-button.large {
    width: 100%;
    padding: 1.125rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 0.5rem;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-form-simple .cta-button.large:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
}

.contact-form-simple .cta-button.large:active {
    transform: translateY(0);
}

/* Add subtle animations */
.contact-form-simple .form-field {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.contact-form-simple .form-field:nth-child(1) { animation-delay: 0.1s; }
.contact-form-simple .form-field:nth-child(2) { animation-delay: 0.15s; }
.contact-form-simple .form-field:nth-child(3) { animation-delay: 0.2s; }
.contact-form-simple .form-field:nth-child(4) { animation-delay: 0.25s; }
.contact-form-simple .form-field:nth-child(5) { animation-delay: 0.3s; }
.contact-form-simple .form-field:nth-child(6) { animation-delay: 0.35s; }

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

/* Mobile styles for contact form */
@media (max-width: 768px) {
    .contact-form-simple {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-simple .form-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .contact-form-simple .form-field input,
    .contact-form-simple .form-field select,
    .contact-form-simple .form-field textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Dark mode support for CTA sections */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    bottom: 0;
    left: -50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Enhance the CTA section background */
.cta-section .cta-content {
    position: relative;
    z-index: 1;
}

/* Add focus styles for better accessibility */
.contact-form-simple input:focus-visible,
.contact-form-simple select:focus-visible,
.contact-form-simple textarea:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Success state for submitted forms */
.contact-form-simple.success {
    text-align: center;
    padding: 4rem 2rem;
}

.contact-form-simple.success h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-form-simple.success p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Landing Page FAQ Section Styles */
.faq-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(249, 115, 22, 0.2);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.4;
}

.faq-item h3 i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Expandable FAQ Accordion Style (optional enhancement) */
.faq-item.expandable {
    cursor: pointer;
    position: relative;
}

.faq-item.expandable h3::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 2rem;
    width: 28px;
    height: 28px;
    background: var(--bg-orange-light);
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.faq-item.expandable.expanded h3::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item.expandable p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.expandable.expanded p {
    max-height: 200px;
}

/* Mobile styles for FAQ section */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1rem;
    }
    
    .faq-section .section-title {
        font-size: 2rem;
    }
    
    .faq-section .section-subtitle {
        font-size: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.125rem;
    }
    
    .faq-item h3 i {
        font-size: 1.25rem;
    }
    
    .faq-item p {
        font-size: 0.9375rem;
    }
    
    .faq-item.expandable h3::after {
        right: 1.5rem;
        top: 1.5rem;
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }
}

/* Alternative FAQ layout - single column with larger items */
.faq-section.single-column .faq-grid {
    grid-template-columns: 1fr;
    max-width: 800px;
}

.faq-section.single-column .faq-item {
    padding: 2.5rem;
}

.faq-section.single-column .faq-item h3 {
    font-size: 1.375rem;
}

/* Add subtle animation */
.faq-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }