:root {
    --bg-color: #0a0a0a;
    --bg-secondary: #111111;
    --text-color: #f0f0f0;
    --text-muted: #a0a0a0;
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --accent-color: #10b981;
    --cta-color: #f97316;
    --cta-hover: #ea580c;
    --cta-glow: rgba(249, 115, 22, 0.35);
    --card-bg: rgba(17, 17, 17, 0.95);
    --card-border: rgba(255, 255, 255, 0.08);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Premium Header - Matching ai-website.html */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(3, 3, 5, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    color: white;
    text-decoration: none;
    display: inline-block;
}

.logo span {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
}

nav a:hover,
nav a.active {
    color: white;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Header Start Button - Subtle, understated design */
.header-start-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.header-start-btn:hover {
    border-color: var(--cta-color);
    color: var(--cta-color);
    transform: translateY(-1px);
}

.header-start-btn svg {
    width: 16px;
    height: 16px;
}

/* Modern Language Picker */
.lang-picker {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 8px;
    border: 1px solid var(--card-border);
}

.lang-option {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.lang-option:hover {
    color: white;
}

.lang-option.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero - Video background with two-column layout */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    background: var(--bg-color);
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.85) 100%
    );
    z-index: 1;
}

/* Floating trust badges - top left, certificate style */
.hero-floating-badges {
    position: absolute;
    top: 75px;
    left: 20px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    z-index: 3;
}

.floating-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 4px;
    font-size: 0.65rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.floating-badge svg {
    stroke: var(--accent-color);
    width: 12px;
    height: 12px;
}

/* Hero Container - Two column layout */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    width: 100%;
    z-index: 2;
    position: relative;
}

/* Hero Content - Left side */
.hero-content {
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--cta-color);
    margin-bottom: 24px;
}

.eyebrow-icon {
    font-size: 1rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 20px;
    background: none;
    -webkit-text-fill-color: var(--text-color);
}

.hero-content h1 .text-gradient {
    background: linear-gradient(135deg, var(--cta-color), #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.7;
}

.hero-trust-stats {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    padding: 24px 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 32px;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.trust-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cta-color);
}

.trust-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Client avatars section */
.hero-clients {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatars {
    display: flex;
}

.client-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cta-color), #fbbf24);
    border: 3px solid var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: white;
    margin-left: -12px;
}

.client-avatar:first-child {
    margin-left: 0;
}

.client-avatar:nth-child(2) {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.client-avatar:nth-child(3) {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.client-avatar:nth-child(4) {
    background: var(--card-bg);
    border-color: var(--card-border);
    color: var(--text-muted);
    font-size: 0.75rem;
}

.client-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.client-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.client-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Hero Form Wrapper - Right side */
.hero-form-wrapper {
    position: relative;
}

/* Hero ticker behind form */
.hero-ticker-wrapper {
    position: absolute;
    top: 50%;
    left: -40px;
    right: -40px;
    transform: translateY(-50%) rotate(-3deg);
    overflow: hidden;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.hero-ticker {
    display: flex;
    gap: 40px;
    animation: heroTickerScroll 30s linear infinite;
    width: max-content;
}

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

.hero-ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-ticker-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cta-color), #fbbf24);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.7rem;
    color: white;
}

.hero-ticker-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-ticker-stars {
    color: #fbbf24;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.hero-ticker-text {
    font-size: 0.8rem;
    color: var(--text-color);
}

.hero-ticker-name {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Hero Marquee Stripe - Bottom of hero */
.hero-marquee-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 0;
    overflow: hidden;
    z-index: 10;
}

.marquee-content {
    display: flex;
    gap: 50px;
    animation: marqueeScroll 80s linear infinite;
    width: max-content;
}

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-stars {
    color: #fbbf24;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.marquee-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
}

.marquee-name {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

.marquee-separator {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.5rem;
}

.form-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
    border-radius: 40px;
    z-index: -1;
    opacity: 0.7;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--cta-color);
    margin-bottom: 30px;
    font-weight: 500;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--cta-color) 0%, #f97316 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-speed);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px var(--cta-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--cta-hover) 0%, #ea580c 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--cta-glow);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid var(--card-border);
    transition: all var(--transition-speed);
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
}

/* Trust Logos */
.trust-section {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--card-border);
}

.trust-section p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0.6;
}

.trust-logos span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Sections */
section {
    padding: 100px 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px;
}

/* Services - Solid cards, no glass */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    padding: 35px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    transition: all var(--transition-speed);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--cta-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cta-color), #fbbf24);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

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

/* Stats Section */
.stats-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.stat-box h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cta-color);
    margin-bottom: 8px;
}

.stat-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.trust-badge,
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--accent-color);
}

.urgency-badge {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

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

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

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

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.review-card {
    padding: 30px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--card-border);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cta-color), #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.review-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.review-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.stars {
    color: #fbbf24;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.review-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--card-border);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    border: 2px solid var(--cta-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cta-color);
    margin: 0 auto 20px;
}

.process-step h3 {
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact - Solid form */
#contact {
    background: var(--bg-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-muted);
}

.contact-item strong {
    color: var(--text-color);
    display: block;
}

.contact-form {
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input,
textarea,
select {
    width: 100%;
    padding: 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a0a0a0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 44px;
}

select option {
    background: var(--bg-secondary);
    color: var(--text-color);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--cta-color);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--card-border);
}

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

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

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

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

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-speed);
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--card-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
}

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

/* Responsive */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr 440px;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: clamp(2rem, 3.5vw, 3rem);
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-trust-stats {
        justify-content: center;
    }
    
    .trust-stat {
        align-items: center;
    }
    
    .hero-clients {
        justify-content: center;
    }
    
    .hero-floating-badges {
        top: 65px;
        left: 15px;
        gap: 6px;
    }
    
    .floating-badge {
        padding: 4px 8px;
        font-size: 0.6rem;
    }
    
    .hero-form-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .process-step::after {
        display: none;
    }

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

@media (max-width: 768px) {
    header {
        padding: 12px 0;
    }

    nav a {
        display: none;
    }

    .header-start-btn {
        margin-left: auto;
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .header-start-btn svg {
        width: 14px;
        height: 14px;
    }
    
    #hero {
        padding: 80px 15px 40px;
        min-height: auto;
    }
    
    .hero-container {
        max-width: 100%;
    }
    
    .hero-eyebrow {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-trust-stats {
        gap: 24px;
        padding: 20px 0;
    }
    
    .trust-number {
        font-size: 1.5rem;
    }
    
    .trust-label {
        font-size: 0.7rem;
    }
    
    .hero-clients {
        flex-direction: column;
        gap: 10px;
    }
    
    .client-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }
    
    .hero-form-wrapper {
        max-width: 100%;
    }
    
    .form-glow {
        display: none;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .trust-logos {
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-box h3 {
        font-size: 2rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        text-align: center;
    }

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

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

    .footer-legal a {
        margin: 0 10px;
    }
    
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .type-options {
        grid-template-columns: 1fr;
    }

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

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

    .cta-benefits {
        flex-direction: column;
        align-items: center;
    }
}

/* NEW HOMEPAGE STYLES - AI Website Generator */

/* Hero Section - Redesigned */
.hero-trust-badges {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    z-index: 3;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 500;
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.hero-main {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-main h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-main h1 .highlight {
    background: linear-gradient(135deg, #f97316, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-main .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 48px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f97316;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
}

.cta-button-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.5);
}

.cta-button-hero svg {
    width: 20px;
    height: 20px;
}

.hero-trust-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-item svg {
    width: 16px;
    height: 16px;
}

.trust-separator {
    color: rgba(255, 255, 255, 0.2);
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

.feature-card {
    padding: 40px;
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
    stroke-width: 2;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Process Section */
#process {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
}

#process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(249, 115, 22, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.process-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.process-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(17, 17, 17, 0.95);
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    border-color: #f97316;
    transform: scale(1.05);
}

.step-icon svg {
    width: 40px;
    height: 40px;
    stroke: #f97316;
    stroke-width: 2;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.process-arrow {
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.process-arrow svg {
    width: 40px;
    height: 40px;
    stroke: rgba(249, 115, 22, 0.4);
    stroke-width: 2;
}

.process-cta {
    text-align: center;
}

/* Final CTA Section */
#final-cta {
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 1) 0%,
        rgba(26, 26, 26, 1) 50%,
        rgba(10, 10, 10, 1) 100%
    );
    border-top: 1px solid rgba(249, 115, 22, 0.2);
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    position: relative;
    overflow: hidden;
}

#final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(
        ellipse,
        rgba(249, 115, 22, 0.15) 0%,
        transparent 70%
    );
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 24px 56px;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(249, 115, 22, 0.5);
}

.cta-button-large svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
}

.cta-reassurance {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.reassurance-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reassurance-item svg {
    width: 18px;
    height: 18px;
    stroke: #10b981;
    stroke-width: 2;
}

.reassurance-separator {
    color: rgba(255, 255, 255, 0.2);
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {
    .hero-trust-badges {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 24px;
    }
    
    .hero-main h1 {
        font-size: 2rem;
    }
    
    .hero-main .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        padding: 24px 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-button-hero {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust-line {
        flex-direction: column;
        gap: 8px;
    }
    
    .trust-separator {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .process-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .process-step {
        max-width: 400px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button-large {
        padding: 20px 40px;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
    
    .cta-reassurance {
        flex-direction: column;
        gap: 12px;
    }
    
    .reassurance-separator {
        display: none;
    }
}

@media (max-width: 968px) {
    .process-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
}

/* Scroll Animation Classes - Optimized for performance */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

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