/* Modern Premium SaaS Dark Theme */

:root {
    --primary: #06b6d4;
    --primary-dark: #0891b2;
    --primary-light: #13d8f5;
    --dark-bg: #0a0e14;
    --dark-bg-secondary: #141a24;
    --dark-card: #1a222f;
    --text-primary: #f0f4f8;
    --text-secondary: #a8b5c4;
    --text-tertiary: #7a8a9a;
    --border: #232f42;
    --accent: #06b6d4;
    --accent-warm: #f59e0b;
    --success: #10b981;
    --error: #ef4444;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(6, 182, 212, 0.4);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    animation: fadeIn 0.8s ease-in;
}

/* Container & Layout */
.max-w-6xl {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.max-w-4xl {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.max-w-3xl {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.max-w-2xl {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    width: 100%;
}

/* Navigation */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 20, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.15);
    z-index: 1000;
    padding: 14px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-fixed .max-w-6xl {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #13d8f5;
    text-shadow: 0 0 16px rgba(6, 182, 212, 0.5);
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-actions a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-actions a:hover {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0e14 0%, #1a2a3a 50%, #152230 100%);
    position: relative;
    overflow: hidden;
    margin-top: 56px;
    padding: 140px 24px;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 10s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 950;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #13d8f5 0%, #06b6d4 50%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideUpFade 0.8s ease-out;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    animation: slideUpFade 0.8s ease-out 0.1s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: #06b6d4;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sections */
section {
    padding: 100px 24px;
}

section.bg-dark {
    background: linear-gradient(180deg, #0a0e14 0%, #0f1519 50%, #0a0e14 100%);
}

section.bg-secondary {
    background: linear-gradient(180deg, #141a24 0%, #1a2a3a 50%, #141a24 100%);
}

/* Section Title */
.section-title {
    font-size: 3.2rem;
    font-weight: 950;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #13d8f5 0%, #06b6d4 50%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid */
.grid {
    display: grid;
    gap: 32px;
}

.grid-services {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-stats {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid-pricing {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards */
.feature-card {
    background: rgba(26, 34, 47, 0.6);
    padding: 48px 40px;
    border-radius: 16px;
    border: 1px solid rgba(6, 182, 212, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    background: rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.4);
    transform: translateY(-12px);
    box-shadow: 0 24px 64px rgba(6, 182, 212, 0.25);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card i {
    font-size: 3.5rem;
    color: #06b6d4;
    margin-bottom: 24px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(6, 182, 212, 0.3));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover i {
    transform: scale(1.15) translateY(-4px);
    filter: drop-shadow(0 8px 20px rgba(6, 182, 212, 0.4));
    color: #13d8f5;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stat Card */
.stat-box {
    background: rgba(26, 34, 47, 0.5);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid rgba(6, 182, 212, 0.15);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
}

.stat-box:hover {
    transform: translateY(-8px);
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 24px 64px rgba(6, 182, 212, 0.2);
}

.stat-box .number {
    font-size: 2.8rem;
    font-weight: 950;
    background: linear-gradient(135deg, #13d8f5 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.stat-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(26, 34, 47, 0.5);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 16px;
    padding: 44px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
    transform: translateY(-16px);
    box-shadow: 0 32px 80px rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.1);
}

.pricing-card.featured {
    border-color: rgba(6, 182, 212, 0.4);
    background: rgba(6, 182, 212, 0.12);
    position: relative;
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.2);
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #06b6d4;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 950;
    background: linear-gradient(135deg, #13d8f5 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.pricing-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓ ';
    color: #06b6d4;
    font-weight: 700;
    margin-right: 8px;
}

/* Pricing Badges & Best For */
.pricing-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.pricing-best-for {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 500;
}

.pricing-guarantee {
    padding: 40px;
    background: rgba(6, 182, 212, 0.1);
    border: 2px solid var(--accent);
    border-radius: 12px;
    text-align: center;
}

.pricing-guarantee h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.pricing-guarantee p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(26, 34, 47, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    border-color: rgba(6, 182, 212, 0.4);
    transform: translateY(-12px);
    box-shadow: 0 24px 64px rgba(6, 182, 212, 0.2);
    background: rgba(6, 182, 212, 0.08);
}

.testimonial-stars {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--accent);
    font-weight: 700;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Real Results Section */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.result-card {
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.1) 0%, rgba(8, 145, 178, 0.04) 100%);
    border: 1px solid rgba(6, 182, 212, 0.25);
    border-radius: 20px;
    padding: 54px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #06b6d4, #0891b2, transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.result-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    transition: all 0.6s ease;
    pointer-events: none;
}

.result-card:hover {
    border-color: rgba(6, 182, 212, 0.6);
    transform: translateY(-16px) scale(1.03);
    box-shadow: 0 32px 80px rgba(6, 182, 212, 0.3), inset 0 1px 0 rgba(6, 182, 212, 0.15);
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.15) 0%, rgba(8, 145, 178, 0.08) 100%);
}

.result-card:hover::before {
    opacity: 1;
}

.result-card:hover::after {
    top: -30%;
    right: -30%;
}

.result-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 24px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(6, 182, 212, 0.4));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.result-card:hover .result-icon {
    transform: scale(1.3) translateY(-6px);
    filter: drop-shadow(0 8px 24px rgba(6, 182, 212, 0.5));
}

.result-metric {
    font-size: 3.2rem;
    font-weight: 950;
    background: linear-gradient(135deg, #13d8f5 0%, #06b6d4 50%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
    font-family: 'Courier New', monospace;
}

.result-label {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.result-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(6, 182, 212, 0.15);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(6, 182, 212, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.15);
    backdrop-filter: blur(10px);
    animation: slideUpFade 0.8s ease-out 0.2s both;
}

/* Section Subtitle */
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    text-align: center;
    margin-top: -20px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    position: relative;
    font-weight: 750;
}

.btn-primary {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.35);
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary:hover:before {
    width: 350px;
    height: 350px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0891b2 0%, #0369a1 100%);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.35);
}

.btn-secondary {
    background: transparent;
    color: #13d8f5;
    border: 2px solid rgba(6, 182, 212, 0.5);
}

.btn-secondary:hover {
    background: rgba(6, 182, 212, 0.15);
    color: #ffffff;
    border-color: rgba(6, 182, 212, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.4);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-block {
    width: 100%;
}

.btn-large {
    padding: 18px 56px;
    font-size: 1.1rem;
    min-width: 240px;
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.3);
}

/* Portfolio Section */
.portfolio-item {
    background: rgba(26, 34, 47, 0.6);
    padding: 48px;
    border-radius: 20px;
    border: 1px solid rgba(6, 182, 212, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 100% 0%, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.portfolio-item:hover {
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 32px 80px rgba(6, 182, 212, 0.25);
    transform: translateY(-8px);
    background: rgba(6, 182, 212, 0.08);
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.portfolio-item p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 32px 0;
}

.before-after-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.before-after-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.before-after-item ul {
    list-style: none;
}

.before-after-item li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Quote Form */
.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #06b6d4;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(10, 14, 20, 0.8);
    color: var(--text-primary);
    border: 2px solid rgba(6, 182, 212, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(6, 182, 212, 0.8);
    background: rgba(10, 14, 20, 0.95);
    box-shadow: 0 0 0 8px rgba(6, 182, 212, 0.2), 0 8px 32px rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

.quote-form {
    background: linear-gradient(135deg, rgba(26, 34, 47, 0.7) 0%, rgba(37, 45, 61, 0.7) 100%);
    padding: 56px 48px;
    border-radius: 20px;
    border: 1px solid rgba(6, 182, 212, 0.25);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-message {
    padding: 18px 24px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
    animation: slideIn 0.3s ease-out;
    font-weight: 500;
    border-left: 4px solid transparent;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.display-block {
    display: block !important;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.15);
    color: #ff9999;
    border-left-color: #ef4444;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.15);
    color: #99ff99;
    border-left-color: #22c55e;
}

.form-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 20px;
    font-style: italic;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.process-step {
    background: rgba(26, 34, 47, 0.5);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid rgba(6, 182, 212, 0.15);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(6, 182, 212, 0.1);
    transition: right 0.6s ease;
    pointer-events: none;
}

.process-step:hover {
    transform: translateY(-12px);
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 24px 64px rgba(6, 182, 212, 0.2);
}

.process-step:hover::before {
    right: 0;
}

.step-number {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 950;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.process-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.contact-card {
    background: rgba(26, 34, 47, 0.5);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-top: 3px solid rgba(6, 182, 212, 0.5);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-12px);
    box-shadow: 0 24px 64px rgba(6, 182, 212, 0.2);
    border-top-color: rgba(6, 182, 212, 0.8);
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.contact-card a {
    color: #06b6d4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #0891b2;
}

/* Benefit Card */
.benefit-card {
    background: rgba(26, 34, 47, 0.6);
    padding: 48px 40px;
    border-radius: 20px;
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-left: 4px solid rgba(6, 182, 212, 0.5);
    backdrop-filter: blur(10px);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.benefits-column {
    display: flex;
    flex-direction: column;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefits-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.benefits-list li:before {
    content: "✓";
    color: #06b6d4;
    font-weight: 700;
    margin-right: 12px;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 24px;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Footer Content */
.footer-bg {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--border);
    padding: 60px 24px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3,
.footer-section h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #06b6d4;
}

.footer-divider {
    border-top: 1px solid var(--border);
    margin: 40px 0;
}

/* FAQ */
.faq-item {
    background: rgba(26, 34, 47, 0.5);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.15);
}

.faq-question {
    padding: 24px;
    background: rgba(6, 182, 212, 0.05);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.faq-question:hover {
    background: rgba(6, 182, 212, 0.1);
    padding-left: 28px;
}

.faq-question.active {
    background: rgba(6, 182, 212, 0.15);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.8) 0%, rgba(20, 26, 36, 0.8) 100%);
    border-top: 1px solid rgba(6, 182, 212, 0.15);
    padding: 80px 24px 20px;
    backdrop-filter: blur(10px);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

footer h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

footer a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 12px;
}

footer a:hover {
    color: #06b6d4;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--text-secondary);
    text-decoration: none;
    display: inline;
    margin: 0 4px;
    transition: color 0.3s ease;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-12 {
    margin-bottom: 48px;
}

.mb-8 {
    margin-bottom: 32px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 16px;
}

.gap-4 {
    gap: 16px;
}

.gap-6 {
    gap: 24px;
}

.gap-8 {
    gap: 32px;
}

.transition {
    transition: all 0.3s ease;
}

.text-right {
    text-align: right;
}

.text-orange {
    color: #06b6d4;
}

.text-muted {
    color: #666;
}

.text-small {
    font-size: 0.9rem;
}

.text-large {
    font-size: 2rem;
}

.text-bold {
    font-weight: bold;
}

.display-none {
    display: none !important;
}

.display-flex {
    display: flex;
}

.display-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.display-block {
    display: block;
}

.display-grid {
    display: grid;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.margin-0 {
    margin: 0 20px 0 0;
}

.padding-10 {
    padding: 10px;
}

.padding-12 {
    padding: 12px;
}

.padding-20 {
    padding: 20px;
}

.padding-30 {
    padding: 30px;
}

.padding-40 {
    padding: 40px;
}

.padding-top-0 {
    padding-top: 0;
}

.border-radius-6 {
    border-radius: 6px;
}

.border-radius-8 {
    border-radius: 8px;
}

.border-radius-12 {
    border-radius: 12px;
}

.border-none {
    border: none;
}

.bg-white {
    background: white;
}

.bg-dark {
    background: #0f1419;
}

.bg-light {
    background: #f9f9f9;
}

.bg-muted {
    background: #f3f4f6;
}

.bg-border {
    background: #e5e7eb;
}

/* Typography Utility */
.font-weight-bold {
    font-weight: bold;
}

.font-weight-600 {
    font-weight: 600;
}

.font-size-1rem {
    font-size: 1rem;
}

.font-size-1-5rem {
    font-size: 1.5rem;
}

/* Input & Form Styles */
.input-field {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary);
}

.input-disabled {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #f9f9f9;
}

.label-field {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #1a1a2e;
}

/* Content Sections */
.content-section {
    margin-bottom: 48px;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.content-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 60px 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        margin-top: 56px;
        padding: 80px 20px 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .grid-services,
    .grid-pricing,
    .grid-stats,
    .testimonials-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .before-after {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    footer {
        padding: 40px 20px 20px;
    }

    .footer-grid {
        gap: 32px;
    }
}
