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

:root {
    /* Colors */
    --primary: #ea580c;
    --primary-hover: #dc2626;
    --secondary: #f97316;
    --background: #ffffff;
    --foreground: #111827;
    --muted: #6b7280;
    --muted-foreground: #9ca3af;
    --border: #e5e7eb;
    --card: #ffffff;
    --card-foreground: #111827;
    
    /* Dark mode colors */
    --dark-background: #111827;
    --dark-foreground: #f9fafb;
    --dark-muted: #9ca3af;
    --dark-border: #374151;
    --dark-card: #1f2937;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-padding: 1.5rem;
    --section-padding: 5rem 0;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Dark mode */
[data-theme="dark"] {
    --background: var(--dark-background);
    --foreground: var(--dark-foreground);
    --muted: var(--dark-muted);
    --border: var(--dark-border);
    --card: var(--dark-card);
    --card-foreground: var(--dark-foreground);
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    transition: var(--transition);
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Dynamic headline animation */
.hero-title .text-gradient {
    animation: fadeInOut 4s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 20% {
        opacity: 1;
        transform: translateY(0);
    }
    25%, 75% {
        opacity: 0;
        transform: translateY(-10px);
    }
    80%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-gradient.changing {
    animation: slideOut 0.5s ease-in-out forwards;
}

.text-gradient.entering {
    animation: slideIn 0.5s ease-in-out forwards;
}

@keyframes slideOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
}

.btn-secondary {
    background-color: white;
    color: var(--primary);
    border: 2px solid transparent;
}

.btn-secondary:hover {
    background-color: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

[data-theme="dark"] .header {
    background-color: rgba(17, 24, 39, 0.98);
    border-bottom: 1px solid rgba(55, 65, 81, 0.8);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--container-padding);
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand .logo {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

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

[data-theme="dark"] .nav-link {
    color: var(--dark-foreground);
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.theme-toggle:hover {
    background-color: var(--border);
}

.theme-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--foreground);
}

.theme-icon-dark {
    display: none;
}

[data-theme="dark"] .theme-icon-light {
    display: none;
}

[data-theme="dark"] .theme-icon-dark {
    display: block;
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--foreground);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 50;
    background-color: var(--background);
    padding: 1.5rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.logo-small {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.close-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--foreground);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

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

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 50%, #fff7ed 100%);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #1f2937 0%, #111827 50%, #1f2937 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 25px 25px, rgba(234, 88, 12, 0.1) 2px, transparent 0);
    background-size: 50px 50px;
}

[data-theme="dark"] .hero::before {
    background-image: radial-gradient(circle at 25px 25px, rgba(249, 115, 22, 0.15) 2px, transparent 0);
}

.hero-content {
    display: grid;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(234, 88, 12, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.hero-note {
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Demo Card */
.demo-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.demo-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.status-indicator {
    width: 1rem;
    height: 1rem;
    background-color: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.status-text {
    font-weight: 600;
    color: var(--foreground);
}

.demo-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demo-item {
    background-color: #f9fafb;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
}

[data-theme="dark"] .demo-item {
    background-color: #374151;
}

.demo-item-primary {
    background-color: rgba(234, 88, 12, 0.05);
    border-color: rgba(234, 88, 12, 0.2);
}

[data-theme="dark"] .demo-item-primary {
    background-color: rgba(234, 88, 12, 0.1);
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.demo-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.demo-title {
    font-weight: 600;
    color: var(--foreground);
}

.demo-text {
    color: var(--muted);
    line-height: 1.6;
}

/* Section Styles */
.section {
    padding: var(--section-padding);
}

.section-gray {
    background-color: #f9fafb;
}

[data-theme="dark"] .section-gray {
    background-color: #1f2937;
}

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

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 4xl;
    margin: 0 auto;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background-color: var(--card);
    border: 2px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(234, 88, 12, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(234, 88, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon .icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.feature-description {
    color: var(--muted);
    line-height: 1.6;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 5rem;
    height: 5rem;
    background-color: rgba(234, 88, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.step-description {
    color: var(--muted);
    line-height: 1.6;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2%;
}

.carousel-slide {
    flex: 0 0 96%;
    max-width: 96%;
}

.case-study-card {
    background-color: #f9fafb;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    height: 500px;
}

[data-theme="dark"] .case-study-card {
    background-color: #1f2937;
}

.case-study-content {
    display: grid;
    gap: 2rem;
    height: 100%;
    align-items: start;
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
    fill: #fbbf24;
}

.case-study-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
}

.case-study-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.case-study-description {
    color: var(--muted);
    line-height: 1.6;
    flex-grow: 1;
}

.case-study-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.company-info {
    text-align: center;
}

.company-avatar {
    width: 4rem;
    height: 4rem;
    background-color: rgba(234, 88, 12, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.company-name {
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.company-location {
    font-size: 0.875rem;
    color: var(--muted);
}

.case-study-stat {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    min-width: 120px;
}

[data-theme="dark"] .case-study-stat {
    background-color: #374151;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-btn {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .carousel-btn {
    background-color: #374151;
}

.carousel-btn:hover {
    background-color: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .carousel-btn:hover {
    background-color: #4b5563;
}

.carousel-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--muted);
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
}

.carousel-dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: none;
    background-color: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot-active {
    background-color: var(--primary);
}

/* Pricing Styles */
.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 4xl;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--card);
    border: 2px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
}

.pricing-card-popular {
    border-color: rgba(234, 88, 12, 0.5);
}

.pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

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

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-period {
    font-size: 0.875rem;
    color: var(--muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-check {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
}

.pricing-note p {
    color: var(--muted);
    max-width: 2xl;
    margin: 0 auto;
}

/* Contact Styles */
.contact-grid {
    display: grid;
    gap: 3rem;
    max-width: 6xl;
    margin: 0 auto;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.contact-description {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(234, 88, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.contact-method-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-method-info {
    color: var(--muted);
}

.contact-form-container {
    background-color: var(--card);
    border: 2px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    background-color: var(--background);
    color: var(--foreground);
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

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

.form-note {
    font-size: 0.875rem;
    color: var(--muted);
    text-align: center;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #c2410c 100%);
    color: white;
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.1);
}

.cta-content {
    text-align: center;
    max-width: 4xl;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cta-note {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Footer Styles */
.footer {
    background-color: #f9fafb;
    border-top: 1px solid var(--border);
    padding: var(--section-padding);
}

[data-theme="dark"] .footer {
    background-color: #1f2937;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 28px;
    width: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.footer-description {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    max-width: 20rem;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--muted);
}

.trust-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #10b981;
    border-radius: 50%;
}

.footer-links {
    display: grid;
    gap: 2rem;
}

.footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--muted);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-legal-link {
    font-size: 0.875rem;
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .carousel-slide {
        flex: 0 0 60%;
        max-width: 60%;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .nav-actions {
        display: flex;
    }
    
    .nav-mobile-toggle {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 3fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .case-study-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .carousel-slide {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 4rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.footer-link:focus,
.form-input:focus,
.form-textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
