/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Bold & Modern */
    --primary-color: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #3385FF;
    --secondary-color: #0A0E27;
    --accent-color: #00D4FF;
    --text-dark: #0A0E27;
    --text-light: #64748B;
    --bg-light: #FAFBFC;
    --bg-white: #FFFFFF;
    --bg-dark: #0A0E27;
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #3385FF 100%);
    --gradient-secondary: linear-gradient(135deg, #0A0E27 0%, #1E2749 100%);
    --gradient-accent: linear-gradient(135deg, #00D4FF 0%, #0099FF 100%);

    /* Typography - Aztech Style */
    --font-primary: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 8rem;

    /* Shadows - More dramatic */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.24);
    --shadow-glow: 0 0 40px rgba(0, 102, 255, 0.3);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
    overflow-x: hidden;
    font-size: 17px;
    font-weight: 400;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* ===================================
   NAVIGATION - Aztech Style
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    text-decoration: none;
    display: flex;
    gap: 0.2rem;
    letter-spacing: -0.5px;
}

.logo-ragin {
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.logo-media {
    color: var(--secondary-color);
    transition: var(--transition-normal);
}

.navbar:not(.scrolled) .logo-ragin,
.navbar:not(.scrolled) .logo-media {
    color: white;
}

.navbar:not(.scrolled) .nav-links a {
    color: white;
}

.navbar:not(.scrolled) .btn-contact {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar:not(.scrolled) .btn-contact:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
}

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

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

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

.btn-contact {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.btn-contact::after {
    display: none;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* ===================================
   HERO SECTION - Bold Aztech Style
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(30, 39, 73, 0.92) 100%),
                url('https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?w=1920&q=80') center/cover;
    background-attachment: fixed;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(0, 245, 255, 0.1) 0%, transparent 60%);
    animation: float 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: #FFFFFF;
    letter-spacing: -1px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.gradient-text {
    color: #3385FF;
    display: inline-block;
    position: relative;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.4),
                 0 2px 8px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 8px rgba(51, 133, 255, 0.3));
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-lg);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #0066FF 0%, #0080FF 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 48px rgba(0, 102, 255, 0.6);
    background: linear-gradient(135deg, #0073FF 0%, #3399FF 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.4rem 3.5rem;
    font-size: 1.15rem;
}

.btn-full {
    width: 100%;
}

.hero-stats {
    display: none;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -1px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.stat-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 500;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.services-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.services-header-side {
    flex: 0 0 300px;
    position: sticky;
    top: 120px;
}

.services-header-side .section-title {
    text-align: left;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-sm);
}

.services-header-side .section-subtitle {
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
}

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

.service-card {
    background: var(--bg-white);
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: var(--spacing-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    box-shadow: var(--shadow-xl);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
    color: white;
}

.service-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.service-features li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.2rem;
}

.service-card.featured .service-features li::before {
    color: var(--accent-color);
}

/* Responsive adjustments for services */
@media (max-width: 1200px) {
    .services-layout {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .services-header-side {
        flex: 1;
        position: static;
        text-align: center;
    }

    .services-header-side .section-title,
    .services-header-side .section-subtitle {
        text-align: center;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* ===================================
   LATEST WORK SECTION
   =================================== */
.latest-work {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.work-item {
    background: transparent;
    border-radius: 16px;
    overflow: visible;
    transition: var(--transition-normal);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 500px;
}

.work-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.work-item iframe {
    width: 100%;
    height: 280px;
    border: none;
    display: block;
}

.work-item .tiktok-embed {
    margin: 0 auto !important;
    max-width: 100% !important;
    min-width: 100% !important;
}

/* Instagram embed fix */
.instagram-media {
    max-width: 400px !important;
    min-width: 326px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

.work-item .instagram-media {
    max-width: 100% !important;
    width: calc(100% - 2px) !important;
}

@media (max-width: 1200px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .work-item iframe {
        height: 300px;
    }

    .work-item .tiktok-embed {
        transform: scale(1);
    }
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process {
    padding: var(--spacing-lg) 0;
    background: var(--bg-light);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 32px;
    top: 70px;
    width: 2px;
    height: calc(100% + 1.5rem);
    background: linear-gradient(to bottom, var(--primary-color), rgba(0, 102, 255, 0.3));
}

.step-number {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Continue in next message... */

/* ===================================
   RESULTS SECTION
   =================================== */
.results {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

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

.result-card {
    background: var(--bg-white);
    border: 2px solid #E5E7EB;
    border-radius: 24px;
    padding: var(--spacing-lg);
    transition: var(--transition-normal);
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.result-category {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.result-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.result-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
}

.result-metrics {
    display: flex;
    gap: 2.5rem;
    padding-top: var(--spacing-md);
    border-top: 2px solid #E5E7EB;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: var(--spacing-md);
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

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

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    letter-spacing: -1px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    font-size: 1.15rem;
}

.contact-methods {
    margin-bottom: var(--spacing-lg);
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: var(--spacing-md);
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    transition: var(--transition-normal);
}

.contact-method:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.method-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-details h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.method-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.method-details a:hover {
    color: var(--primary-dark);
}

.specializations {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    border: 2px solid #E5E7EB;
}

.specializations h4 {
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.specializations ul {
    list-style: none;
}

.specializations li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.specializations li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.2rem;
}

.contact-form-wrapper {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 2px solid #E5E7EB;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

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

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: var(--spacing-xl);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--spacing-sm);
    line-height: 1.8;
}

.footer-column h4 {
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-heading);
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--spacing-xl) + 80px) 0 var(--spacing-xl);
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .hero-stats {
        gap: 2.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .services-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .result-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }
}
