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

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-bg: #0a0a0a;
    --light-bg: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--light-bg);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-tagline {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-left: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Professional Template Enhancements */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.data-recovery-animation {
    width: 400px;
    height: 400px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Enhanced Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

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

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

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-tagline {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Enhanced Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .data-recovery-animation {
        width: 300px;
        height: 300px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.gradient-text {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.data-recovery-animation {
    position: relative;
    width: 300px;
    height: 300px;
}

.hard-drive {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.drive-platter {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    animation: spin 3s linear infinite;
}

.drive-head {
    position: absolute;
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: seek 2s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes seek {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

.data-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particle-float 4s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 80%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { top: 10%; left: 90%; animation-delay: 2s; }
.particle:nth-child(4) { top: 90%; left: 10%; animation-delay: 3s; }
.particle:nth-child(5) { top: 50%; left: 50%; animation-delay: 1.5s; }

@keyframes particle-float {
    0%, 100% { transform: translate(0, 0); opacity: 0; }
    50% { transform: translate(50px, -50px); opacity: 1; }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Services Section */
.services {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

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

.service-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(102, 126, 234, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Modern Process Section */
.process-flowchart {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.flowchart-line {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    z-index: 1;
}

.process-step-modern {
    position: relative;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    background-clip: padding-box;
    z-index: 2;
}

.process-step-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(102, 126, 234, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    z-index: 3;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
    z-index: 2;
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.step-content-modern {
    position: relative;
}

.step-content-modern h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-content-modern p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.2);
}

/* Process Section */
.process {
    background: var(--light-bg);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.instagram-btn {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: white !important;
    padding: 1rem 2rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    display: inline-block !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(252, 176, 69, 0.3) !important;
}

.instagram-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(252, 176, 69, 0.4) !important;
    background: linear-gradient(135deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #f09433 100%) !important;
    color: white !important;
}

/* Instagram Section */
.instagram {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    padding: 5rem 0;
}

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

.instagram-post {
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.post-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.view-post {
    background: var(--primary-gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
}

.instagram-post:hover .view-post {
    transform: translateY(0);
}

.post-content {
    padding: 1.5rem;
}

.post-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

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

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--text-light);
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: var(--text-light);
}

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

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.testimonial-rating {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-text {
    font-size: 0.875rem;
    color: #667eea;
    font-weight: 600;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-details p {
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

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

/* Contact Form */
.contact-form {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

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

.btn-primary {
    background: var(--primary-gradient);
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white !important;
}

.full-width {
    width: 100%;
    background: var(--primary-gradient);
    color: white !important;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.full-width:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white !important;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer,
.footer p,
.footer li,
.footer ul {
    color: rgba(255, 255, 255, 0.85);
}

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

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

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer a {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer a:hover {
    color: #ffffff !important;
}

.footer-links a:hover {
    color: white;
}

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

.footer-section ul li {
    padding: 0.25rem 0;
}

.footer-subheading {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-sitemap {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-sitemap a {
    text-decoration: none;
}

 .social-section {
     padding: 40px 20px;
     background: #f8fafc;
     border-top: 1px solid #e2e8f0;
     text-align: center;
 }

 .social-section h3 {
     margin: 0 0 10px;
     color: #0f172a !important;
 }

 .social-section p {
     margin: 0 0 12px;
     color: #475569 !important;
 }

 .social-section .social-brand {
     margin-top: 14px;
     font-weight: 900;
     letter-spacing: 1px;
     color: #0f172a !important;
 }

 .social-link {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
     padding: 12px 18px;
     border-radius: 10px;
     color: #fff;
     text-decoration: none;
     font-weight: 800;
     margin: 10px auto 0;
     max-width: 360px;
 }

.social-section a.social-link,
.social-section a.social-link i {
    color: #fff !important;
}

.service-card {
    scroll-margin-top: 90px;
}

 .social-link i {
     font-size: 20px;
 }

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.solution-center {
    color: var(--text-light);
    font-weight: 700;
    font-size: 3.5rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}

body.theme-pro {
    background: #ffffff;
    color: #0f172a;
}

body.theme-pro .container {
    max-width: 1160px;
}

body.theme-pro section {
    padding: 88px 0;
}

body.theme-pro .section-header {
    margin-bottom: 48px;
}

body.theme-pro .section-title {
    -webkit-text-fill-color: unset;
    color: #0f172a;
    background: none;
    font-size: 2.25rem;
    letter-spacing: -0.02em;
}

body.theme-pro .section-subtitle {
    color: #475569;
    font-size: 1.05rem;
}

body.theme-pro .navbar {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

body.theme-pro .nav-link {
    color: #0f172a;
}

body.theme-pro .nav-link:hover {
    color: #2563eb;
}

body.theme-pro .nav-link::after {
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
}

body.theme-pro .hero {
    padding: 140px 0 92px;
    background: radial-gradient(1200px 600px at 15% 15%, rgba(37, 99, 235, 0.22) 0%, rgba(37, 99, 235, 0) 60%),
        radial-gradient(900px 500px at 85% 55%, rgba(124, 58, 237, 0.18) 0%, rgba(124, 58, 237, 0) 55%),
        linear-gradient(180deg, #0b1220 0%, #0b1220 35%, #0a1020 100%);
}

body.theme-pro .hero-title {
    font-size: 3.25rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

body.theme-pro .gradient-text {
    background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.theme-pro .hero-subtitle {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.125rem;
}

body.theme-pro .hero-stats {
    gap: 2.5rem;
}

body.theme-pro .stat-number {
    font-size: 2.25rem;
}

body.theme-pro .btn-primary {
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
}

body.theme-pro .btn-primary:hover {
    background: linear-gradient(90deg, #1d4ed8 0%, #6d28d9 100%);
    color: #ffffff !important;
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.28);
}

body.theme-pro .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.92);
}

body.theme-pro .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.98);
    border-color: rgba(255, 255, 255, 0.55);
}

body.theme-pro .services {
    background: #ffffff;
}

body.theme-pro .service-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

body.theme-pro .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 56px rgba(15, 23, 42, 0.12);
}

body.theme-pro .process {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

body.theme-pro .process-flowchart {
    margin-top: 52px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 18px;
    position: relative;
}

body.theme-pro .process-flowchart::before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 36px;
    height: 2px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.22) 0%, rgba(124, 58, 237, 0.22) 100%);
}

body.theme-pro .flowchart-line {
    display: none;
}

body.theme-pro .process-step-modern {
    flex: 1;
    text-align: left;
    border-radius: 18px;
    padding: 22px 22px 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    position: relative;
}

body.theme-pro .process-step-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.10);
    border-color: rgba(37, 99, 235, 0.22);
}

body.theme-pro .process-step-modern::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -12px;
    width: 24px;
    height: 24px;
    border-top: 2px solid rgba(37, 99, 235, 0.40);
    border-right: 2px solid rgba(37, 99, 235, 0.40);
    transform: translateY(-50%) rotate(45deg);
}

body.theme-pro .process-step-modern:last-child::after {
    display: none;
}

body.theme-pro .step-number {
    top: 16px;
    left: 16px;
    width: 34px;
    height: 34px;
    font-size: 1rem;
    box-shadow: 0 10px 18px rgba(37, 99, 235, 0.18);
}

body.theme-pro .step-icon {
    width: 54px;
    height: 54px;
    margin: 46px 0 14px;
    border-radius: 14px;
    box-shadow: none;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(124, 58, 237, 0.12) 100%);
}

body.theme-pro .step-icon svg {
    width: 26px;
    height: 26px;
    color: #2563eb;
}

body.theme-pro .step-content-modern h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #0f172a;
}

body.theme-pro .step-content-modern p {
    color: #475569;
    font-size: 0.96rem;
}

body.theme-pro .step-badge {
    background: rgba(37, 99, 235, 0.10);
    color: #1d4ed8;
    box-shadow: none;
}

body.theme-pro .instagram {
    background: #ffffff;
}

body.theme-pro .instagram-btn {
    box-shadow: 0 14px 26px rgba(220, 39, 67, 0.22) !important;
}

body.theme-pro .contact {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

body.theme-pro .contact-form {
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

body.theme-pro .full-width:hover {
    color: #ffffff !important;
}

@media (max-width: 900px) {
    body.theme-pro .process-flowchart {
        flex-direction: column;
        gap: 16px;
    }

    body.theme-pro .process-step-modern::after {
        top: auto;
        right: auto;
        left: 50%;
        bottom: -12px;
        transform: translateX(-50%) rotate(135deg);
    }
}

/* ==============================
   Windsurf-like SaaS Theme Layer
   ============================== */

body.theme-windsurf {
    --ws-bg: #061a33;
    --ws-hero: #071b35;
    --ws-cream: #f4eddc;
    --ws-ink: #0a0f1a;
    --ws-surface: rgba(255, 255, 255, 0.06);
    --ws-surface-2: rgba(255, 255, 255, 0.09);
    --ws-border: rgba(255, 255, 255, 0.12);
    --ws-text: rgba(255, 255, 255, 0.92);
    --ws-muted: rgba(255, 255, 255, 0.72);
    --ws-muted-2: rgba(255, 255, 255, 0.58);
    --ws-teal: #18e2b6;
    --ws-blue: #2d6cff;
    --ws-purple: #7b61ff;
    --ws-pink: #ff7bd5;
    --ws-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    background: radial-gradient(900px 520px at 70% 35%, rgba(45, 108, 255, 0.18) 0%, rgba(45, 108, 255, 0) 60%),
        radial-gradient(900px 520px at 35% 70%, rgba(123, 97, 255, 0.16) 0%, rgba(123, 97, 255, 0) 60%),
        linear-gradient(180deg, var(--ws-bg) 0%, #06172f 50%, #051227 100%);
    color: var(--ws-text);
}

body.theme-windsurf .container {
    max-width: 1180px;
    padding: 0 24px;
}

body.theme-windsurf section {
    padding: 96px 0;
}

body.theme-windsurf .navbar {
    background: rgba(244, 237, 220, 0.92);
    border-bottom: 1px solid rgba(10, 15, 26, 0.10);
    backdrop-filter: blur(16px);
}

body.theme-windsurf .navbar.is-scrolled {
    background: rgba(244, 237, 220, 0.96);
    box-shadow: 0 14px 40px rgba(10, 15, 26, 0.18);
}

body.theme-windsurf .nav-tagline {
    color: rgba(10, 15, 26, 0.55);
}

body.theme-windsurf .nav-link {
    color: rgba(10, 15, 26, 0.78);
}

body.theme-windsurf .nav-link:hover {
    color: rgba(10, 15, 26, 0.92);
}

body.theme-windsurf .nav-link::after {
    background: linear-gradient(90deg, var(--ws-blue) 0%, var(--ws-purple) 55%, var(--ws-teal) 100%);
}

body.theme-windsurf .nav-dropdown {
    position: relative;
}

body.theme-windsurf .nav-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

body.theme-windsurf .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 260px;
    padding: 8px;
    margin: 0;
    list-style: none;
    border-radius: 12px;
    background: rgba(244, 237, 220, 0.98);
    border: 1px solid rgba(10, 15, 26, 0.10);
    box-shadow: 0 18px 40px rgba(10, 15, 26, 0.18);
    display: none;
    z-index: 2000;
}

@media (max-width: 768px) {
    body.theme-windsurf .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        margin-top: 8px;
    }
}

body.theme-windsurf .nav-dropdown:hover .nav-dropdown-menu,
body.theme-windsurf .nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
}

body.theme-windsurf .nav-dropdown-item {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: rgba(10, 15, 26, 0.86);
    font-weight: 600;
    transition: var(--transition);
}

body.theme-windsurf .nav-dropdown-item:hover {
    background: rgba(10, 15, 26, 0.06);
    color: rgba(10, 15, 26, 0.96);
}

body.theme-windsurf .nav-dropdown-item::after {
    display: none;
}

body.theme-windsurf .tools-panel {
    display: none;
    padding: 90px 0 0;
}

body.theme-windsurf .tools-panel.is-open {
    display: block;
}

body.theme-windsurf .tools-panel-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px 24px;
}

body.theme-windsurf .tools-iframe {
    width: 100%;
    height: min(78vh, 900px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: var(--ws-shadow);
}

body.theme-windsurf .hero {
    padding: 150px 0 110px;
    background: radial-gradient(1200px 700px at 70% 40%, rgba(45, 108, 255, 0.26) 0%, rgba(45, 108, 255, 0) 55%),
        radial-gradient(900px 600px at 40% 75%, rgba(255, 123, 213, 0.10) 0%, rgba(255, 123, 213, 0) 60%),
        linear-gradient(180deg, var(--ws-hero) 0%, #06172f 100%);
}

body.theme-windsurf .hero-bg {
    opacity: 0.75;
}

body.theme-windsurf .hero-title {
    font-size: 3.4rem;
    line-height: 1.06;
    letter-spacing: -0.035em;
}

body.theme-windsurf .gradient-text {
    background: linear-gradient(90deg, var(--ws-blue) 0%, var(--ws-purple) 40%, var(--ws-pink) 70%, var(--ws-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.theme-windsurf .solution-center {
    font-size: 3.1rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.92);
    -webkit-text-fill-color: unset;
}

body.theme-windsurf .hero-subtitle {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

body.theme-windsurf .hero-stats {
    gap: 2.25rem;
}

body.theme-windsurf .stat-number {
    color: rgba(255, 255, 255, 0.95);
}

body.theme-windsurf .stat-label {
    color: rgba(255, 255, 255, 0.60);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
}

body.theme-windsurf .btn-primary,
body.theme-windsurf .full-width {
    background: linear-gradient(90deg, #1df0c6 0%, var(--ws-teal) 100%);
    color: rgba(10, 15, 26, 0.92) !important;
    box-shadow: 0 18px 40px rgba(24, 226, 182, 0.22);
    border: 1px solid rgba(10, 15, 26, 0.10);
}

body.theme-windsurf .btn-primary:hover,
body.theme-windsurf .full-width:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(24, 226, 182, 0.26);
    color: rgba(10, 15, 26, 0.92) !important;
}

body.theme-windsurf .btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

body.theme-windsurf .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.22);
}

body.theme-windsurf .section-title {
    background: none;
    -webkit-text-fill-color: unset;
    color: rgba(255, 255, 255, 0.92);
    font-size: 2.3rem;
    letter-spacing: -0.02em;
}

body.theme-windsurf .section-subtitle {
    color: rgba(255, 255, 255, 0.66);
}

body.theme-windsurf .services,
body.theme-windsurf .process,
body.theme-windsurf .instagram,
body.theme-windsurf .contact {
    background: transparent;
}

body.theme-windsurf h1,
body.theme-windsurf h2,
body.theme-windsurf h3,
body.theme-windsurf h4 {
    color: rgba(255, 255, 255, 0.92);
}

body.theme-windsurf p {
    color: rgba(255, 255, 255, 0.70);
}

body.theme-windsurf a {
    color: rgba(24, 226, 182, 0.95);
}

body.theme-windsurf a:hover {
    color: rgba(24, 226, 182, 1);
}

body.theme-windsurf .service-card,
body.theme-windsurf .testimonial-card,
body.theme-windsurf .contact-form,
body.theme-windsurf .process-step-modern {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    box-shadow: var(--ws-shadow);
}

body.theme-windsurf .service-card h3,
body.theme-windsurf .service-card p,
body.theme-windsurf .service-card li {
    color: rgba(255, 255, 255, 0.86);
}

body.theme-windsurf .service-card p {
    color: rgba(255, 255, 255, 0.68);
}

body.theme-windsurf .service-features li {
    color: rgba(255, 255, 255, 0.74);
}

body.theme-windsurf .service-features li::before {
    color: rgba(24, 226, 182, 0.95);
}

body.theme-windsurf .contact-details h3 {
    color: rgba(255, 255, 255, 0.90);
}

body.theme-windsurf .contact-details p,
body.theme-windsurf .contact-details span {
    color: rgba(255, 255, 255, 0.70);
}

body.theme-windsurf .contact-details a {
    color: rgba(24, 226, 182, 0.98);
}

body.theme-windsurf .service-card:hover,
body.theme-windsurf .testimonial-card:hover,
body.theme-windsurf .process-step-modern:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.18);
}

/* Flowchart */
body.theme-windsurf .process-flowchart {
    position: relative;
    display: flex;
    gap: 18px;
    align-items: stretch;
    margin-top: 52px;
}

body.theme-windsurf .process-flowchart::before {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    top: 34px;
    height: 2px;
    background: linear-gradient(90deg, rgba(96, 165, 250, 0.35) 0%, rgba(124, 58, 237, 0.30) 55%, rgba(34, 211, 238, 0.30) 100%);
}

body.theme-windsurf .process-step-modern {
    flex: 1;
    position: relative;
    padding: 22px 22px 18px;
    border-radius: 18px;
    text-align: left;
}

body.theme-windsurf .process-step-modern::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -12px;
    width: 22px;
    height: 22px;
    border-top: 2px solid rgba(96, 165, 250, 0.45);
    border-right: 2px solid rgba(96, 165, 250, 0.45);
    transform: translateY(-50%) rotate(45deg);
}

body.theme-windsurf .process-step-modern:last-child::after {
    display: none;
}

body.theme-windsurf .step-number {
    width: 34px;
    height: 34px;
    top: 16px;
    left: 16px;
    background: linear-gradient(90deg, rgba(96, 165, 250, 0.95) 0%, rgba(124, 58, 237, 0.95) 55%, rgba(34, 211, 238, 0.95) 100%);
    color: #06101f;
    box-shadow: 0 14px 30px rgba(124, 58, 237, 0.22);
}

body.theme-windsurf .step-icon {
    width: 54px;
    height: 54px;
    margin: 46px 0 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

body.theme-windsurf .step-icon svg {
    color: rgba(255, 255, 255, 0.92);
}

body.theme-windsurf .step-content-modern h3 {
    color: rgba(255, 255, 255, 0.92);
}

body.theme-windsurf .step-content-modern p {
    color: rgba(255, 255, 255, 0.66);
}

body.theme-windsurf .step-badge {
    background: rgba(34, 211, 238, 0.10);
    color: rgba(34, 211, 238, 0.92);
}

body.theme-windsurf .instagram-embed {
    display: flex;
    justify-content: center;
}

body.theme-windsurf .ig-placeholder {
    width: min(540px, 100%);
    min-height: 420px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    box-shadow: var(--ws-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 600;
}

@media (max-width: 900px) {
    body.theme-windsurf .hero-title {
        font-size: 2.6rem;
    }

    body.theme-windsurf .solution-center {
        font-size: 2.4rem;
    }

    body.theme-windsurf .process-flowchart {
        flex-direction: column;
        gap: 16px;
    }

    body.theme-windsurf .process-flowchart::before {
        display: none;
    }

    body.theme-windsurf .process-step-modern::after {
        top: auto;
        right: auto;
        left: 50%;
        bottom: -12px;
        transform: translateX(-50%) rotate(135deg);
    }
}
