/* Variables */
:root {
    /* Primary Colors (from the pink logo color) */
--primary-color: #EC4899;        /* Bold pink from logo */
--primary-light: #F472B6;        /* Lighter pink */
--primary-dark: #C02675;         /* Darker pink */

/* Secondary Colors (optional complementary pink/purple tones) */
--secondary-color: #A855F7;      /* Vibrant magenta-purple */
--secondary-light: #D8B4FE;      /* Light lavender */
--secondary-dark: #7C3AED;       /* Deep purple */

    
    /* Neutrals */
    --dark: #1a1a2e;
    --dark-secondary: #232347;
    --gray-dark: #444460;
    --gray: #78788c;
    --gray-light: #a0a0b2;
    --light-gray: #eaeaef;
    --light: #f8f8fc;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, #a365f0 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #ff9a8b 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.05);
    --shadow-md: 0 5px 15px rgba(26, 26, 46, 0.08);
    --shadow-lg: 0 8px 30px rgba(26, 26, 46, 0.12);
    --shadow-xl: 0 15px 60px rgba(26, 26, 46, 0.15);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.35s ease;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-secondary: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Sizes */
    --header-height: 120px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    /* Content width */
    --content-width-xs: 600px;
    --content-width-sm: 800px;
    --content-width-md: 1100px;
    --content-width-lg: 1300px;
    --content-width-xl: 1500px;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Manrope:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--gray-dark);
    background-color: var(--light);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--content-width-lg);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--dark);
}

h1 {
    font-size: 5.6rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 4.2rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 2.8rem;
}

h4 {
    font-size: 2.2rem;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 2rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--primary-dark);
}

/* Section Spacing */
section {
    padding: 12rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 8rem;
    position: relative;
    z-index: 1;
}

.section-badge, .hero-badge {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    background-color: rgba(103, 82, 232, 0.1);
    padding: 0.8rem 1.6rem;
    border-radius: 5rem;
    margin-bottom: 2rem;
}

.tech-badge {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: var(--font-mono);
    color: var(--gray-dark);
    background-color: var(--light-gray);
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 1.2rem 2.8rem;
    border-radius: 5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    outline: none;
    text-align: center;
    text-decoration: none;
}

.btn i {
    margin-left: 1rem;
    font-size: 1.4rem;
    transition: transform var(--transition-fast);
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-sm {
    font-size: 1.4rem;
    padding: 0.8rem 1.6rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(103, 82, 232, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(103, 82, 232, 0.35);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--light-gray);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background-color: rgba(103, 82, 232, 0.05);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-logo {
    width: 15rem;
    animation: pulse 1.5s infinite alternate;
}

.loader-logo img {
    width: 100%;
    height: auto;
}

.loader-progress {
    width: 20rem;
    height: 3px;
    background-color: var(--light-gray);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.loader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    animation: progressBar 2.5s ease-in-out forwards;
}

@keyframes pulse {
    from {
        opacity: 0.6;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes progressBar {
    0% {
        width: 0;
    }
    20% {
        width: 20%;
    }
    50% {
        width: 60%;
    }
    100% {
        width: 100%;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    transition: background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    width: 100px;
    display: block;
}

.logo img {
    width: 100%;
    height: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-list a {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--gray-dark);
    transition: color var(--transition-normal);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-list a:hover, .nav-list a.active {
    color: var(--primary-color);
}

.nav-list a:hover::after, .nav-list a.active::after {
    width: 100%;
}

.nav-list .none {
    display: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    position: relative;
    z-index: 101;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    margin: 6px 0;
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* Hero Section */
.hero {
    padding: calc(var(--header-height) + 8rem) 0 12rem;
    background-color: var(--light);
    overflow: hidden;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    grid-column: 1 / span 6;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    margin-bottom: 3rem;
}

.hero p {
    font-size: 1.8rem;
    max-width: 50rem;
    margin-bottom: 4rem;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    margin-bottom: 5rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 4.2rem;
    font-weight: 800;
    color: var(--dark);
    font-family: var(--font-secondary);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.stat-value span {
    font-size: 2.4rem;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1.4rem;
    color: var(--gray);
    font-weight: 500;
}

.hero-image {
    grid-column: 7 / span 6;
    position: relative;
}

.dashboard-mockup {
    width: 100%;
    position: relative;
}

.dashboard-mockup img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.floating-element {
    position: absolute;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    padding: 1.6rem;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    animation: float 3s ease-in-out infinite alternate;
}

.analytics-card {
    top: 15%;
    left: -10%;
    animation-delay: 0.5s;
}

.performance-card {
    bottom: 20%;
    right: -5%;
    animation-delay: 1s;
}

.card-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.8rem;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.card-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--light-gray) 1px, transparent 1px),
                      linear-gradient(90deg, var(--light-gray) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
    opacity: 0.2;
}

.tech-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--gray-light) 1px, transparent 1px);
    background-size: 25px 25px;
    opacity: 0.15;
}

/* Clients Section */
.clients {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.clients-title {
    text-align: center;
    margin-bottom: 4rem;
}

.clients-title span {
    font-size: 1.6rem;
    color: var(--gray);
    font-weight: 500;
}

.clients-logo-container {
    max-width: 100%;
    overflow: hidden;
}

.clients-logo-slider {
    display: flex;
    align-items: center;
    gap: 6rem;
    animation: scrollLogos 20s linear infinite;
}

.client-logo {
    flex: 0 0 auto;
    height: 5rem;
    opacity: 0.7;
    transition: opacity var(--transition-normal);
}

.client-logo:hover {
    opacity: 1;
}

.client-logo img {
    height: 100%;
    width: auto;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Services Section */
.services {
    background-color: var(--light);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-md);
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
}

.service-card h3 {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
}

.service-card p {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 2.4rem;
}

.service-feature {
    margin-bottom: 3rem;
}

.service-feature ul {
    list-style: none;
}

.service-feature li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-feature li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.service-link {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
}

.service-link i {
    margin-left: 0.8rem;
    transition: transform var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

.service-tech-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: rgba(103, 82, 232, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5rem;
}

.tech-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* About Section */
.about {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-experience {
    position: absolute;
    bottom: -3rem;
    right: -3rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-experience .years {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.about-experience .text {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
}

.about-text h2 {
    margin-bottom: 3rem;
}

.about-features {
    margin: 4rem 0;
}

.feature {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    min-width: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-md);
    background-color: rgba(103, 82, 232, 0.1);
    color: var(--primary-color);
    font-size: 2rem;
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.feature-text p {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 0;
}

/* Process Section */
.process {
    background-color: var(--light);
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 3.5rem;
    height: 100%;
    width: 2px;
    background-color: var(--light-gray);
}

.process-step {
    position: relative;
    padding-left: 10rem;
    margin-bottom: 6rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 7rem;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 2.4rem;
    font-weight: 700;
    border-radius: 50%;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.step-content p {
    font-size: 1.6rem;
    color: var(--gray);
    margin-bottom: 0;
}

.process-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Case Studies Section */
.case-studies {
    background-color: var(--white);
    position: relative;
}

.case-studies-grid {
    display: grid;
    gap: 4rem;
}

.case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background-color: var(--light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-study-image {
    height: 100%;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.case-study:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-content {
    padding: 4rem;
}

.case-study-tag {
    display: inline-block;
    background-color: rgba(103, 82, 232, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 5rem;
    margin-bottom: 2rem;
}

.case-study-content h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.case-study-content p {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.case-study-results {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.result-item {
    display: flex;
    flex-direction: column;
}

.result-value {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.result-label {
    font-size: 1.3rem;
    color: var(--gray);
    font-weight: 500;
}

.case-studies-cta {
    text-align: center;
    margin-top: 6rem;
}

.case-studies-cta p {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--gray-dark);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    max-width: 90rem;
    margin: 0 auto;
}

.testimonial-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: -3rem;
    right: -3rem;
    transform: translateY(-50%);
    z-index: 2;
}

.testimonial-prev,
.testimonial-next {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
    color: var(--dark);
    font-size: 1.6rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.testimonial-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 40rem;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all var(--transition-slow);
}

.testimonial-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-content {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 5rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 3rem;
    left: 3rem;
    font-size: 4rem;
    color: rgba(103, 82, 232, 0.1);
}

.testimonial-content p {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.author-image {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.author-info p {
    font-size: 1.4rem;
    color: var(--gray);
    margin-bottom: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
}

.dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* CTA Section */
.cta {
    background: var(--gradient-primary);
    padding: 12rem 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 70rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta .section-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.cta h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
    margin-bottom: 4rem;
}

.cta-form {
    max-width: 50rem;
    margin: 0 auto;
}

.quick-contact-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.quick-contact-form input {
    flex: 1;
    height: 5.2rem;
    border-radius: 5rem;
    border: none;
    padding: 0 2.5rem;
    font-size: 1.6rem;
    box-shadow: var(--shadow-md);
}

.form-note {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.form-note a {
    color: var(--white);
    font-weight: 600;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(255, 255, 255, 0.03);
    transform: skewY(-3deg);
    transform-origin: bottom right;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 10rem 0 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 6rem;
}

.footer-logo {
    max-width: 20rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 2rem;
}

.footer-logo p {
    font-size: 1.4rem;
    color: var(--gray-light);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-links a {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.6rem;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 1.5rem;
}

.footer-col a {
    color: var(--gray-light);
    font-size: 1.5rem;
    transition: color var(--transition-normal);
}

.footer-col a:hover {
    color: var(--primary-light);
}

.footer-contact h2 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.footer-contact h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 2.5rem;
}

.contact-info {
    list-style: none;
    margin-bottom: 3rem;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--gray-light);
}

.contact-info i {
    color: white;
    font-size: 1.8rem;
    margin-top: 0.3rem;
}

.contact-info a {
    color: var(--gray-light);
}

.contact-info a:hover {
    color: var(--primary-light);
}

.newsletter h4 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    height: 4.5rem;
    border-radius: 5rem;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0 2rem;
    font-size: 1.4rem;
}

.newsletter-form input::placeholder {
    color: var(--gray-light);
}

.footer-bottom {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 1.4rem;
    color: var(--gray-light);
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 1.4rem;
    color: var(--gray-light);
}

.footer-legal a:hover {
    color: var(--primary-light);
}

.footer-tech-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.footer-tech-elements .tech-grid,
.footer-tech-elements .tech-dots {
    opacity: 0.05;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    max-width: 40rem;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    z-index: 99;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.cookie-consent.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

/* Page Content (Privacy, Terms, etc.) */
.page-content {
    padding: calc(var(--header-height) + 8rem) 0 12rem;
    position: relative;
}

.page-header {
    text-align: center;
    margin-bottom: 6rem;
}

.page-header h1 {
    margin-bottom: 2rem;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.4rem;
    color: var(--gray);
}

.breadcrumbs a {
    color: var(--gray-dark);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs i {
    font-size: 1.2rem;
}

.content-wrapper {
    max-width: 80rem;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.content-wrapper h2 {
    font-size: 2.8rem;
    margin-top: 4rem;
    margin-bottom: 2.5rem;
}

.content-wrapper h3 {
    font-size: 2.2rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.content-wrapper p {
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.content-wrapper ul {
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.last-updated {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
    font-size: 1.4rem;
    color: var(--gray);
}

/* Contact Page */
.contact-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    padding: calc(var(--header-height) + 6rem) 0 8rem;
    position: relative;
    overflow: hidden;
}

.contact-hero-content {
    max-width: 70rem;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.contact-hero .section-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    margin-bottom: 3rem;
}

.contact-hero h1 {
    color: var(--white);
    margin-bottom: 2.5rem;
}

.contact-hero p {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 60rem;
    margin: 0 auto;
}

.contact-section {
    margin-top: -8rem;
    padding-bottom: 12rem;
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.contact-info {
    padding: 5rem;
}

.contact-info h2 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.6rem;
    color: var(--gray);
    margin-bottom: 4rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-method {
    display: flex;
    gap: 2rem;
}

.method-icon {
    width: 5rem;
    height: 5rem;
    min-width: 5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.method-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.method-details p {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.contact-form-wrapper {
    padding: 5rem;
}

.contact-form {
    width: 100%;
}

.form-header {
    margin-bottom: 4rem;
}

.form-header h2 {
    font-size: 3.2rem;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 2.5rem;
    width: calc(50% - 1rem);
    display: inline-block;
}

.form-group.full-width {
    width: 100%;
}

.form-group:nth-child(odd) {
    margin-right: 2rem;
}

.form-group label {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    transition: border-color var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    padding: 12rem 0;
    background-color: var(--light);
    position: relative;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: box-shadow var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    padding-right: 2rem;
}

.faq-icon {
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2.5rem;
    height: 0;
    overflow: hidden;
    transition: height var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 2.5rem 2.5rem;
    height: auto;
}

.faq-answer p {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 0;
}

/* Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.popup:target {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 5rem;
    max-width: 50rem;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transform: translateY(-20px);
    transition: transform var(--transition-normal);
}

.popup:target .popup-content {
    transform: translateY(0);
}

.popup-icon {
    font-size: 6rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.popup-content h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.popup-content p {
    font-size: 1.6rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    html {
        font-size: 58%;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
    
    .footer-contact {
        grid-column: span 2;
    }
}

@media screen and (max-width: 992px) {
    html {
        font-size: 56%;
    }
    
    h1 {
        font-size: 4.8rem;
    }
    
    h2 {
        font-size: 3.6rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
    
    .hero-image {
        grid-column: 1 / -1;
        margin-top: 5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .case-study {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 54%;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 5rem;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-normal);
        z-index: 100;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-list li {
        margin: 1.5rem 0;
    }
    
    .nav-list .none {
        display: block;
    }
    
    .mobile-toggle {
        display: block;
        z-index: 101;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .footer-contact {
        grid-column: auto;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .form-group {
        width: 100%;
        margin-right: 0 !important;
    }
    
    .content-wrapper {
        padding: 3rem;
    }
}

@media screen and (max-width: 576px) {
    html {
        font-size: 52%;
    }
    
    h1 {
        font-size: 3.8rem;
    }
    
    h2 {
        font-size: 3.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 3rem;
    }
    
    .testimonial-controls {
        display: none;
    }
    
    .cta-form form {
        flex-direction: column;
    }
}