@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Sora:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF3D00;
    --secondary: #0066FF;
    --accent: #FFB800;
    --dark: #0A0A0A;
    --light: #FFFFFF;
    --gray: #F8F9FA;
    --text: #2D3748;
}

html {
  font-size: 85%; /* Equivalent to zooming out to 75% */
}

body {
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
    background: var(--light);
    color: var(--text);
}

  /* Navigation */
        nav {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 800;
            color: #0A0A0A;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            z-index: 1001;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #FF3D00, #FFB800);
            border-radius: 12px;
        }

         .logo-text-link{
        text-decoration: none;
        color: black;
    }
    
         /* Desktop Menu */
        .nav-menu {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
        }

        .nav-menu a {
            color: #2D3748;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: #FF3D00;
        }

        .nav-cta {
            padding: 0.875rem 2rem;
            background: #0A0A0A;
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1002;
            background: none;
            border: none;
            padding: 10px;
            position: relative;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: #0A0A0A;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        /* When menu is active, hamburger turns white */
        body.menu-open .hamburger span {
            background: black; !important;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: #0A0A0A;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-size: 2rem;
            font-weight: 700;
            transition: all 0.3s;
            position: relative;
            opacity: 0;
            transform: translateX(50px);
        }

        .mobile-menu.active a {
            opacity: 1;
            transform: translateX(0);
        }

        .mobile-menu.active a:nth-child(1) {
            transition-delay: 0.1s;
        }

        .mobile-menu.active a:nth-child(2) {
            transition-delay: 0.2s;
        }

        .mobile-menu.active a:nth-child(3) {
            transition-delay: 0.3s;
        }

        .mobile-menu.active a:nth-child(4) {
            transition-delay: 0.4s;
        }

        .mobile-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #FF3D00, #FFB800);
            transition: width 0.3s;
        }

        .mobile-menu a:hover::after {
            width: 100%;
        }

        .mobile-menu a:hover {
            color: #FFB800;
        }

        .mobile-cta {
            margin-top: 2rem;
            padding: 1.25rem 3rem;
            background: linear-gradient(135deg, #FF3D00, #FFB800);
            color: white;
            text-decoration: none;
            font-size: 1.25rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(20px);
        }

        .mobile-menu.active .mobile-cta {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.5s;
        }

        .mobile-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(255, 61, 0, 0.4);
        }
.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border-radius: 26px;
}

.logo-icon img {
    width: 41px;
    height: 41px;
    margin: 2px;
    filter: brightness(0) saturate(100%);
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3));
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    /*background: linear-gradient(90deg, var(--primary), var(--accent));*/
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.875rem 2rem;
    background: var(--dark);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #ff7e00, #ff3618);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nav-cta:hover::before {
    width: 300px;
    height: 300px;
}

.nav-cta span {
    position: relative;
    z-index: 1;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 8rem;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(135deg, #FFB800 0%, #FF3D00 50%, #FF006E 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    top: 10%;
    right: 10%;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    bottom: 15%;
    right: 30%;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    padding-top: 140px;
    padding-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 61, 0, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge::before {
    content: '⚡';
    font-size: 1.25rem;
}

.hero-badge-text {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FF3D00;
}

.hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 1;
    color: var(--dark);
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease 0.2s backwards;
    text-shadow: 
        -1px -1px 0 white,
        1px -1px 0 white,
        -1px 1px 0 white,
        1px 1px 0 white,
        -1px 0 0 white,
        1px 0 0 white,
        0 -1px 0 white,
        0 1px 0 white
}

.hero h1 .highlight {
    color: #FF3D00;
    display: block;
    text-shadow: 
        -1px -1px 0 white,
        1px -1px 0 white,
        -1px 1px 0 white,
        1px 1px 0 white,
        -1px 0 0 white,
        1px 0 0 white,
        0 -1px 0 white,
        0 1px 0 white
}

.hero-description {
    font-size: 1.25rem;
    color: #1A1A1A;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 500;
    animation: slideInLeft 0.8s ease 0.4s backwards;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    animation: slideInLeft 0.8s ease 0.6s backwards;
}

.btn-primary {
    padding: 1.5rem 3rem;
    background: var(--dark);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    padding: 1.5rem 3rem;
    background: white;
    color: var(--dark);
    text-decoration: none;
    border: 2px solid var(--dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-secondary:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-visual {
    position: relative;
    height: 600px;
    animation: fadeIn 1s ease 0.8s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-illustration {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-circle {
    position: absolute;
    border-radius: 50%;
    animation: rotateCircle 20s linear infinite;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: rgba(10, 10, 10, 0.05);
    animation-delay: -5s;
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    animation-delay: -10s;
}

/* Stats Section */
.stats {
    position: relative;
    padding: 6rem 0;
    margin-top: 0;
    z-index: 10;
    background: white;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    background: var(--dark);
    padding: 5rem 4rem;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.stat-card {
    text-align: center;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.stat-card:last-child::after {
    display: none;
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Services Section */
.services {
    padding: 10rem 5%;
    background: var(--gray);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 61, 0, 0.05) 0%, transparent 70%);
    top: 0;
    left: 0;
    border-radius: 50%;
}

.section-header {
    max-width: 900px;
    margin: 0 auto 6rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 61, 0, 0.3);
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.25rem;
    color: #4A5568;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(255, 61, 0, 0.2);
    transition: all 0.5s;
}

.service-card:hover .service-icon {
    background: white;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.25rem;
    transition: color 0.5s;
}

.service-card:hover h3 {
    color: white;
}

.service-card p {
    color: #4A5568;
    line-height: 1.8;
    font-size: 1rem;
    transition: color 0.5s;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* Process Section */
.process {
    padding: 10rem 5%;
    background: white;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    bottom: -400px;
    right: -400px;
    border-radius: 50%;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1600px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -2rem;
    top: 80px;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 20px 60px rgba(255, 61, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .process-number {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 30px 80px rgba(255, 61, 0, 0.4);
}

.process-step h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.process-step p {
    color: #4A5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 0 5% 10rem;
    position: relative;
}

.cta-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    border-radius: 50px;
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 61, 0, 0.15) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.cta-wrapper::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.1) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

.cta-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.cta-text h2 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.cta-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3.5rem;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.cta-info h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.info-value {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--dark);
    padding: 5rem 5% 3rem;
    color: white;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.25rem;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translateY(-5px);
}

.footer-section h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}


.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1200px) {

    
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .cta-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger span{
        color: white !important;
    }
    .logo-text{
        /*display: none;*/
            font-size: 20px;
    }

   

    .hero-badge{
        background: white;
    }
    .nav-menu {
        display: none;
    }

    .hero {
        padding-bottom: 4rem;
    }

    .hero-text {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .hero-background {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .stats {
        padding: 4rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 3rem 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}