/* ========================================
   SOME IT - Modern Tech Website
   ======================================== */

/* Variables */
:root {
    --color-primary: #6366f1;
    --color-primary-light: #818cf8;
    --color-primary-dark: #4f46e5;
    --color-secondary: #06b6d4;
    --color-accent: #f472b6;
    --color-text: #f8fafc;
    --color-text-secondary: #94a3b8;
    --color-bg-dark: #0f172a;
    --color-bg-darker: #020617;
    --color-bg-card: rgba(30, 41, 59, 0.5);
    --color-border: rgba(148, 163, 184, 0.1);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #06b6d4 50%, #f472b6 100%);
    --gradient-text: linear-gradient(135deg, #6366f1, #06b6d4, #f472b6);
    --gradient-glow: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

#particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-100px) translateX(50px); opacity: 0.6; }
    50% { transform: translateY(-200px) translateX(-30px); opacity: 0.3; }
    75% { transform: translateY(-100px) translateX(-50px); opacity: 0.6; }
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-body);
    text-decoration: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
}

.btn--outline:hover {
    border-color: var(--color-primary);
    background: rgba(99, 102, 241, 0.1);
}

.btn--white {
    background: white;
    color: var(--color-bg-dark);
    font-weight: 600;
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn--full {
    width: 100%;
}

.btn svg {
    transition: var(--transition);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

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

.nav__logo-img {
    height: 45px;
    width: auto;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav__link {
    text-decoration: none;
    color: var(--color-text-secondary);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav__link:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.05);
}

.nav__link--cta {
    background: var(--gradient-primary);
    color: white;
}

.nav__link--cta:hover {
    color: white;
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    transition: var(--transition);
    font-family: inherit;
}

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

.lang-btn.active {
    color: var(--color-primary);
    background: rgba(99, 102, 241, 0.1);
}

.lang-divider {
    color: var(--color-text-secondary);
    opacity: 0.3;
    font-size: 0.8rem;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: pulse 8s ease-in-out infinite;
}

.hero__glow--1 {
    top: -200px;
    right: -100px;
    background: var(--color-primary);
}

.hero__glow--2 {
    bottom: -200px;
    left: -100px;
    background: var(--color-secondary);
    animation-delay: -4s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--color-primary-light);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

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

.hero__title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero__title-line {
    display: block;
}

.hero__title-line--gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.hero__stat-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.hero__stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Sections */
.section {
    padding: 8rem 0;
    position: relative;
}

.section--dark {
    background: var(--color-bg-dark);
}

.section__header {
    margin-bottom: 4rem;
}

.section__header--center {
    text-align: center;
}

.section__tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--color-primary-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section__title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

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

/* About */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__text-wrapper {
    margin-bottom: 2rem;
}

.about__text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about__text--large {
    font-size: 1.3rem;
    color: var(--color-text);
}

.about__text strong {
    color: var(--color-text);
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: var(--transition);
}

.feature:hover {
    border-color: var(--color-primary);
    transform: translateX(10px);
}

.feature__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 10px;
    color: white;
}

.feature span {
    font-weight: 500;
}

.about__visual {
    position: relative;
    height: 400px;
}

.about__card {
    position: absolute;
    padding: 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    animation: float-card 6s ease-in-out infinite;
}

.about__card:hover {
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.about__card--1 {
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.about__card--2 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: -2s;
}

.about__card--3 {
    bottom: 0;
    right: 20%;
    animation-delay: -4s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

.about__card span {
    font-weight: 500;
    white-space: nowrap;
}

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

.service {
    position: relative;
    padding: 2.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    transition: var(--transition);
    overflow: hidden;
}

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

.service:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.service--featured {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.service__badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.service__number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(99, 102, 241, 0.1);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.service--featured .service__number {
    right: auto;
    left: 1.5rem;
}

.service__icon-wrapper {
    margin-bottom: 1.5rem;
}

.service__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 16px;
    color: white;
}

.service__icon svg {
    width: 28px;
    height: 28px;
}

.service__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service__description {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service__list {
    list-style: none;
}

.service__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.service__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* Clients */
.clients {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.client {
    padding: 1.75rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.client:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.client__logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    color: var(--color-primary);
}

.client__logo--img {
    width: 180px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1rem;
    border-radius: 12px;
}

.client__logo--img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.client__logo--redbull {
    background: linear-gradient(135deg, rgba(219, 39, 53, 0.15) 0%, rgba(255, 204, 0, 0.15) 100%);
    color: #db2735;
}

.client__name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.client__description {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.client__tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    position: relative;
}

.cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 4rem;
    background: var(--gradient-primary);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-box__content {
    position: relative;
}

.cta-box__title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.cta-box__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__info .section__title {
    text-align: left;
}

.contact__text {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

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

.contact__item-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    color: var(--color-primary);
}

.contact__item-icon svg {
    width: 24px;
    height: 24px;
}

.contact__item-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.contact__item-value {
    font-weight: 500;
    color: var(--color-text);
}

.contact__form {
    padding: 2.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text);
    transition: var(--transition);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--color-text-secondary);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form__textarea {
    min-height: 150px;
    resize: vertical;
}

.form__message {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.form__message--success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

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

/* Footer */
.footer {
    background: var(--color-bg-darker);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--color-border);
}

.footer__content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}

.footer__logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer__tagline {
    color: var(--color-text-secondary);
    max-width: 300px;
}

.footer__nav {
    display: flex;
    gap: 4rem;
}

.footer__col h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.footer__col a {
    display: block;
    color: var(--color-text-secondary);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer__col a:hover {
    color: var(--color-primary-light);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--color-text-secondary);
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--color-primary);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .about {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about__visual {
        display: none;
    }

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

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

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

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-bg-dark);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 0.5rem;
        transition: var(--transition);
        border-left: 1px solid var(--color-border);
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__toggle {
        display: flex;
        z-index: 1001;
    }

    .lang-switcher {
        margin-left: auto;
        margin-right: 1rem;
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero__stat-divider {
        display: none;
    }

    .section {
        padding: 4rem 0;
    }

    .section__title {
        font-size: 1.75rem;
    }

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

    .footer__content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer__nav {
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .clients {
        grid-template-columns: 1fr;
    }
}

/* Animations for scroll */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
