/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all var(--transition);
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
}

.logo__img {
    height: 90px;
    width: auto;
    transition: all var(--transition);
}

.logo:hover .logo__img {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.nav__item {
    position: relative;
}

.nav__item--dropdown {
    position: relative;
}

.nav__link {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform var(--transition);
}

.nav__item--dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav__item--dropdown:hover > .nav__link {
    color: white;
}

.nav__item--dropdown:hover > .nav__link::before {
    width: 100%;
}

.nav__dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background: white;
    border: none;
    border-radius: 0;
    padding: 1.5rem 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown-link {
    display: block;
    padding: 0.9rem 2rem;
    color: #2a2a2a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition);
    border-left: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav__dropdown-link:hover {
    color: var(--color-accent);
    background: rgba(196, 30, 58, 0.05);
    padding-left: 2.5rem;
}

.nav__link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition);
}

.nav__link:hover {
    color: white;
}

.nav__link:hover::before {
    width: 100%;
}

.nav__link--cta {
    background: linear-gradient(135deg, var(--color-accent), #d42a45);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.nav__link--cta::before {
    display: none;
}

.nav__link--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all var(--transition);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(196, 30, 58, 0.15), transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse at bottom left, rgba(244, 196, 48, 0.08), transparent 60%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 900px;
    padding: var(--space-2xl) 0;
}

.hero__title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__desc {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.hero .btn--primary {
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
    background: linear-gradient(135deg, var(--color-accent), #d42a45);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
    border-radius: 50px;
}

.hero .btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(196, 30, 58, 0.4);
}

/* Services */
.services {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse at bottom left, rgba(244, 196, 48, 0.08), transparent 60%);
    pointer-events: none;
}

.services .section__title {
    color: white;
    text-align: center;
}

.services__carousel {
    position: relative;
    margin-top: var(--space-xl);
}

.services__track-container {
    overflow: hidden;
    padding: var(--space-md) 0;
}

.services__track {
    display: flex;
    gap: var(--space-md);
    animation: scroll 30s linear infinite;
}

.services__track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-33.333% * 3 - var(--space-md) * 3));
    }
}

.service {
    min-width: calc(33.333% - var(--space-md));
    flex-shrink: 0;
    padding: var(--space-xl) var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-highlight));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(196, 30, 58, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service:hover::before {
    transform: scaleX(1);
}

.service__number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(244, 196, 48, 0.2);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.service__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: white;
}

.service__text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* Approach */
.approach {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    position: relative;
}

.approach .section__title {
    color: white;
}

.approach__content {
    max-width: 800px;
}

.approach__text {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.approach__text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    padding-left: var(--space-md);
    border-left: 3px solid var(--color-accent);
}

/* References */
.references {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.references::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse at top right, rgba(196, 30, 58, 0.1), transparent 60%);
    pointer-events: none;
}

.references .section__title {
    text-align: center;
    color: white;
}

.references__desc {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.references__carousel {
    position: relative;
    margin-top: var(--space-xl);
}

.references__track-container {
    overflow: hidden;
    padding: var(--space-md) 0;
}

.references__track {
    display: flex;
    gap: var(--space-lg);
    animation: scrollLogos 25s linear infinite;
}

.references__track:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-25% * 4 - var(--space-lg) * 4));
    }
}

.reference-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: calc(25% - var(--space-lg));
    flex-shrink: 0;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 140px;
}

.reference-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 30, 58, 0.1), transparent);
    transition: left 0.6s;
}

.reference-logo:hover::before {
    left: 100%;
}

.reference-logo:hover {
    border-color: rgba(196, 30, 58, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.reference-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(2);
    opacity: 0.5;
    transition: all var(--transition);
}

.reference-logo:hover img {
    filter: grayscale(0%) brightness(1.2);
    opacity: 1;
}

.reference-placeholder {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.reference-logo img + .reference-placeholder {
    display: none;
}

.reference-logo img[style*="display: none"] + .reference-placeholder {
    display: block;
}

/* Contact */
.contact {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(196, 30, 58, 0.15), transparent 60%);
    pointer-events: none;
}

.contact .section__title {
    color: white;
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact__left {
    position: sticky;
    top: calc(var(--header-height) + var(--space-md));
}

.contact__desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact__info-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all var(--transition);
}

.contact__info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-accent);
    transform: translateX(5px);
}

.contact__icon {
    font-size: 2rem;
    line-height: 1;
}

.contact__info-item > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact__label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact__info-item a {
    color: white;
    text-decoration: none;
    font-size: 1.0625rem;
    transition: color var(--transition);
}

.contact__info-item:hover a {
    color: var(--color-highlight);
}

.contact__right {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--space-lg);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact__form input,
.contact__form textarea {
    padding: 1.125rem 1.25rem;
    font-size: var(--font-size-base);
    font-family: var(--font-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: white;
    transition: all var(--transition);
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact__form input:focus,
.contact__form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.contact__form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact__form .btn--primary {
    background: linear-gradient(135deg, var(--color-accent), #d42a45);
    padding: 1.125rem 3rem;
    font-size: 1.0625rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
    width: 100%;
}

.contact__form .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(196, 30, 58, 0.4);
}

/* Footer */
.footer {
    padding: var(--space-xl) 0 var(--space-md);
    background-color: #0f0f0f;
}

.footer__main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-md);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity var(--transition);
}

.footer__logo:hover {
    opacity: 1;
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer__title {
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.footer__col a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition);
    padding: 0.25rem 0;
}

.footer__col a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer__copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer__legal {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color var(--transition);
}

.footer__legal a:hover {
    color: var(--color-accent);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        padding: var(--space-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav__item {
        width: 100%;
    }
    
    .nav__item--dropdown {
        width: 100%;
    }
    
    .nav__link {
        padding: var(--space-sm) 0;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .nav__link::before {
        display: none;
    }
    
    .nav__dropdown {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        border: none;
        border-radius: 0;
        background: rgba(196, 30, 58, 0.05);
        margin-top: 0.5rem;
        transition: all 0.3s ease;
    }
    
    .nav__item--dropdown.active .nav__dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 0.5rem 0;
    }
    
    .nav__dropdown-link {
        text-align: center;
        padding: 0.6rem 1rem;
        font-size: 13px;
    }
    
    .nav__link--cta {
        margin-top: var(--space-sm);
    }
    
    .burger {
        display: flex;
    }
    
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .services__track {
        animation: scrollMobile 25s linear infinite;
    }
    
    @keyframes scrollMobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100% * 3 - var(--space-md) * 3));
        }
    }
    
    .service {
        min-width: calc(100% - var(--space-md));
    }
    
    .carousel__btn {
        display: none;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .references__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact__wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .contact__left {
        position: static;
    }
    
    .contact__info {
        gap: var(--space-md);
    }
    
    .form__row {
        grid-template-columns: 1fr;
    }
    
    .contact__info {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .approach__text p {
        font-size: 1.0625rem;
    }
    
    .footer__content {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .footer__main {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .footer__links {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    :root {
        --header-height: 70px;
    }
    
    .logo__img {
        height: 70px;
    }
    
    .hero__title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .service {
        min-width: calc(50% - var(--space-md));
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% * 3 - var(--space-md) * 3));
        }
    }
}

/* Mobile Enhancements */
@media (max-width: 768px) {
    :root {
        --header-height: 65px;
        --space-xl: 4rem;
        --space-2xl: 5rem;
    }
    
    .logo__img {
        height: 60px;
    }
    
    .hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero__desc {
        font-size: 1.125rem;
    }
    
    .hero .btn--primary {
        width: 100%;
        max-width: 400px;
    }
    
    .service__number {
        font-size: 2.5rem;
    }
    
    .service__title {
        font-size: 1.5rem;
    }
    
    .service__text {
        font-size: 1rem;
    }
    
    .approach__text p {
        font-size: 1.0625rem;
        padding-left: var(--space-sm);
    }
    
    .references__track {
        animation: scrollLogosMobile 20s linear infinite;
    }
    
    @keyframes scrollLogosMobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% * 4 - var(--space-lg) * 4));
        }
    }
    
    .reference-logo {
        min-width: calc(50% - var(--space-lg));
        min-height: 120px;
        padding: var(--space-md);
    }
    
    .reference-logo img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .references__track {
        animation: scrollLogosTiny 18s linear infinite;
    }
    
    @keyframes scrollLogosTiny {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100% * 4 - var(--space-lg) * 4));
        }
    }
    
    .reference-logo {
        min-width: calc(100% - var(--space-lg));
        min-height: 100px;
    }
    
    .contact__info-item {
        padding: var(--space-sm) var(--space-md);
    }
    
    .contact__icon {
        font-size: 1.5rem;
    }
    
    .footer__logo {
        height: 40px;
        max-width: 180px;
    }
    
    .footer__copy {
        font-size: 12px;
    }
    
    .footer__main {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer__links {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__legal {
        justify-content: center;
        gap: var(--space-sm);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    :root {
        --space-md: 1.5rem;
        --space-lg: 3rem;
        --space-xl: 3.5rem;
        --space-2xl: 4rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .logo__img {
        height: 50px;
    }
    
    .section__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .hero__title {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }
    
    .hero__desc {
        font-size: 1rem;
    }
    
    .hero .btn--primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .service {
        padding: var(--space-md);
    }
    
    .service__number {
        font-size: 2rem;
    }
    
    .service__title {
        font-size: 1.25rem;
    }
    
    .service__text {
        font-size: 0.9375rem;
    }
    
    .approach__text p {
        font-size: 1rem;
    }
    
    .references__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .reference-logo {
        min-height: 100px;
    }
    
    .contact__desc {
        font-size: 1.0625rem;
    }
    
    .contact__info-item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-xs);
    }
    
    .contact__icon {
        font-size: 2rem;
    }
    
    .contact__form input,
    .contact__form textarea {
        padding: 1rem;
        font-size: 15px;
    }
    
    .contact__form .btn--primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}


/* Solution Pages */
.page-content {
    padding-top: var(--header-height);
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.page-hero {
    padding: var(--space-2xl) 0 var(--space-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(196, 30, 58, 0.15), transparent 60%);
    pointer-events: none;
}

.page-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.page-hero__desc {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.content-section {
    padding: var(--space-xl) 0 var(--space-2xl);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.content-card {
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-highlight));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(196, 30, 58, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.content-card:hover::before {
    transform: scaleX(1);
}

.content-card__icon {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: var(--space-md);
}

.content-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
}

.content-card__text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 1.0625rem;
}

.process-section {
    margin-top: var(--space-2xl);
}

.process-section .section__title {
    text-align: center;
    color: white;
    margin-bottom: var(--space-xl);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.process-step {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(244, 196, 48, 0.3);
    transform: translateY(-5px);
}

.process-step__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(244, 196, 48, 0.3);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.process-step__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-xs);
}

.process-step__text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Responsive for Solution Pages */
@media (max-width: 768px) {
    .page-hero {
        padding: var(--space-xl) 0 var(--space-lg);
    }
    
    .page-hero__title {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }
    
    .page-hero__desc {
        font-size: 1.0625rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .content-card {
        padding: var(--space-lg);
    }
    
    .content-card__icon {
        font-size: 2.5rem;
    }
    
    .content-card__title {
        font-size: 1.25rem;
    }
    
    .content-card__text {
        font-size: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .process-step {
        padding: var(--space-md);
    }
    
    .process-step__number {
        font-size: 2rem;
    }
    
    .process-step__title {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: var(--space-lg) 0 var(--space-xl);
    }
    
    .content-card {
        padding: var(--space-md);
    }
    
    .content-card__icon {
        font-size: 2rem;
    }
}


/* Marka Stratejisi - Unique Styles */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.hero-stat__label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.strategy-visual {
    position: relative;
    height: 400px;
}

.strategy-circle {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(196, 30, 58, 0.1);
    border: 2px solid rgba(196, 30, 58, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.125rem;
    animation: float 3s ease-in-out infinite;
}

.strategy-circle--1 { top: 0; left: 0; animation-delay: 0s; }
.strategy-circle--2 { top: 0; right: 0; animation-delay: 0.5s; }
.strategy-circle--3 { bottom: 0; left: 0; animation-delay: 1s; }
.strategy-circle--4 { bottom: 0; right: 0; animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.strategy-item {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all var(--transition);
}

.strategy-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.strategy-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.strategy-item--wide {
    grid-column: span 2;
}

.strategy-item--accent {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(244, 196, 48, 0.1));
    border-color: rgba(196, 30, 58, 0.3);
}

.strategy-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(244, 196, 48, 0.2);
    color: var(--color-highlight);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: var(--space-sm);
}

.strategy-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
}

.strategy-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.strategy-list {
    list-style: none;
    margin-top: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.strategy-list li {
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.strategy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.timeline-section {
    margin-top: var(--space-2xl);
}

.timeline {
    position: relative;
    padding: var(--space-xl) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-accent), var(--color-highlight));
}

.timeline-item {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), #d42a45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.timeline-content {
    flex: 1;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.timeline-duration {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(244, 196, 48, 0.2);
    color: var(--color-highlight);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

/* Web & Dijital Tasarım - Unique Styles */
.page-content--design {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.page-hero--minimal {
    text-align: left;
    padding: var(--space-xl) 0;
}

.page-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(196, 30, 58, 0.1);
    color: var(--color-accent);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: var(--space-md);
}

.showcase-section {
    padding: var(--space-xl) 0 var(--space-2xl);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.showcase-card {
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.showcase-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(196, 30, 58, 0.3);
    transform: translateY(-8px);
}

.showcase-card--featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05), rgba(244, 196, 48, 0.05));
    border-color: rgba(196, 30, 58, 0.2);
}

.showcase-card--wide {
    grid-column: span 2;
}

.showcase-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.showcase-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
}

.showcase-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.showcase-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

.showcase-tags span {
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 20px;
}

.showcase-metrics {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.metric-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.design-process {
    margin-top: var(--space-2xl);
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.flow-step {
    flex: 1;
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
}

.flow-step:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
}

.flow-number {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--space-sm);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-highlight));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

.flow-step h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.flow-step p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.flow-arrow {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* Responsive for unique layouts */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .strategy-item--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-card--featured,
    .showcase-card--wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        gap: var(--space-md);
    }
    
    .hero-stat__number {
        font-size: 2rem;
    }
    
    .strategy-visual {
        height: 300px;
    }
    
    .strategy-circle {
        width: 100px;
        height: 100px;
        font-size: 0.9375rem;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
    }
    
    .strategy-item--large,
    .strategy-item--wide {
        grid-column: span 1;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-card--featured,
    .showcase-card--wide {
        grid-column: span 1;
    }
    
    .process-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
}


/* Sosyal Medya - Unique Styles */
.page-content--social {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.page-hero--creative {
    padding: var(--space-2xl) 0 var(--space-xl);
}

.creative-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.creative-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(244, 196, 48, 0.2));
    border: 2px solid rgba(196, 30, 58, 0.3);
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-lg);
}

.highlight-text {
    background: linear-gradient(135deg, var(--color-accent), var(--color-highlight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platforms-section {
    padding: var(--space-xl) 0 var(--space-2xl);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.platform-card {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.platform-card--instagram { border-color: rgba(225, 48, 108, 0.3); }
.platform-card--instagram:hover { background: rgba(225, 48, 108, 0.1); border-color: rgba(225, 48, 108, 0.6); }

.platform-card--facebook { border-color: rgba(24, 119, 242, 0.3); }
.platform-card--facebook:hover { background: rgba(24, 119, 242, 0.1); border-color: rgba(24, 119, 242, 0.6); }

.platform-card--linkedin { border-color: rgba(10, 102, 194, 0.3); }
.platform-card--linkedin:hover { background: rgba(10, 102, 194, 0.1); border-color: rgba(10, 102, 194, 0.6); }

.platform-card--tiktok { border-color: rgba(254, 44, 85, 0.3); }
.platform-card--tiktok:hover { background: rgba(254, 44, 85, 0.1); border-color: rgba(254, 44, 85, 0.6); }

.platform-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.platform-icon {
    font-size: 2rem;
}

.platform-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.platform-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.platform-features li {
    padding-left: 1.25rem;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.platform-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.service-box {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    transition: all var(--transition);
}

.service-box:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.service-box--large {
    grid-column: span 2;
    grid-row: span 2;
}

.service-box--accent {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(244, 196, 48, 0.05));
    border-color: rgba(196, 30, 58, 0.3);
}

.service-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-highlight));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-sm);
}

.service-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
}

.service-box p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.service-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-stats div {
    color: rgba(255, 255, 255, 0.7);
}

.service-stats strong {
    color: var(--color-accent);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.25rem;
}

/* Reklam & Performans - Dashboard Style */
.page-content--performance {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.page-hero--dashboard {
    padding: var(--space-xl) 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-xl);
}

.kpi-cards {
    display: flex;
    gap: var(--space-md);
}

.kpi-card {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.kpi-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kpi-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.channels-section {
    padding: var(--space-xl) 0 var(--space-2xl);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.channel-card {
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.channel-card--google { border-color: rgba(66, 133, 244, 0.3); }
.channel-card--google:hover { background: rgba(66, 133, 244, 0.05); border-color: rgba(66, 133, 244, 0.6); }

.channel-card--meta { border-color: rgba(24, 119, 242, 0.3); }
.channel-card--meta:hover { background: rgba(24, 119, 242, 0.05); border-color: rgba(24, 119, 242, 0.6); }

.channel-card--linkedin { border-color: rgba(10, 102, 194, 0.3); }
.channel-card--linkedin:hover { background: rgba(10, 102, 194, 0.05); border-color: rgba(10, 102, 194, 0.6); }

.channel-card--programmatic { border-color: rgba(196, 30, 58, 0.3); }
.channel-card--programmatic:hover { background: rgba(196, 30, 58, 0.05); border-color: rgba(196, 30, 58, 0.6); }

.channel-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.channel-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
}

.channel-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.channel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.channel-features span {
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 20px;
}

.campaign-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.campaign-type {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
}

.campaign-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.campaign-type h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
}

.campaign-type p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Responsive for new layouts */
@media (max-width: 1024px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-box--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .campaign-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
    }
    
    .kpi-cards {
        width: 100%;
        flex-direction: column;
    }
    
    .kpi-card {
        width: 100%;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
    }
    
    .service-box--large {
        grid-column: span 1;
    }
}


/* AR-GE & İnovasyon - Tech Style */
.page-content--rnd {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.page-content--rnd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(196, 30, 58, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 30, 58, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.page-hero--tech {
    padding: var(--space-2xl) 0 var(--space-xl);
    position: relative;
    z-index: 1;
}

.tech-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.tech-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(196, 30, 58, 0.1);
    border: 2px solid rgba(196, 30, 58, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-lg);
}

.tech-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.tech-stat {
    display: flex;
    flex-direction: column;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 140px;
}

.tech-stat__value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-accent), var(--color-highlight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.tech-stat__label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.tech-hero__visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem;
}

.tech-cell {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.6s ease;
}

.tech-cell--active {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(244, 196, 48, 0.2));
    border-color: rgba(196, 30, 58, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.innovation-section {
    padding: var(--space-xl) 0 var(--space-2xl);
    position: relative;
    z-index: 1;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.section-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-top: var(--space-md);
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.innovation-card {
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-highlight));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.innovation-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(196, 30, 58, 0.3);
    transform: translateY(-8px);
}

.innovation-card:hover::before {
    transform: scaleX(1);
}

.innovation-card--featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05), rgba(244, 196, 48, 0.05));
    border-color: rgba(196, 30, 58, 0.2);
}

.innovation-card--wide {
    grid-column: span 2;
}

.innovation-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.innovation-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
}

.innovation-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.innovation-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--space-md);
}

.innovation-tech span {
    padding: 0.375rem 0.875rem;
    background: rgba(196, 30, 58, 0.2);
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid rgba(196, 30, 58, 0.3);
}

.innovation-metrics {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-box {
    display: flex;
    flex-direction: column;
}

.metric-box__value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.metric-box__label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.projects-section {
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.project-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all var(--transition);
}

.project-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(196, 30, 58, 0.3);
}

.project-status {
    padding: 0.5rem 1rem;
    background: rgba(46, 213, 115, 0.2);
    color: #2ed573;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    height: fit-content;
    border: 1px solid rgba(46, 213, 115, 0.3);
}

.project-status--beta {
    background: rgba(255, 159, 67, 0.2);
    color: #ff9f43;
    border-color: rgba(255, 159, 67, 0.3);
}

.project-status--research {
    background: rgba(87, 101, 242, 0.2);
    color: #5765f2;
    border-color: rgba(87, 101, 242, 0.3);
}

.project-content {
    flex: 1;
}

.project-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
}

.project-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.project-progress {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-highlight));
    border-radius: 10px;
    transition: width 0.6s ease;
}

.progress-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.tech-stack {
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.tech-category {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.tech-category h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-md);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tags span {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
}

.tech-tags span:hover {
    background: rgba(196, 30, 58, 0.1);
    border-color: rgba(196, 30, 58, 0.3);
    color: var(--color-accent);
}

/* Responsive for AR-GE */
@media (max-width: 1024px) {
    .tech-hero {
        grid-template-columns: 1fr;
    }
    
    .tech-hero__visual {
        height: 300px;
    }
    
    .tech-grid {
        gap: 0.75rem;
    }
    
    .tech-cell {
        width: 80px;
        height: 80px;
    }
    
    .innovation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .innovation-card--featured,
    .innovation-card--wide {
        grid-column: span 2;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tech-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .tech-stat {
        width: 100%;
    }
    
    .tech-hero__visual {
        height: 250px;
    }
    
    .tech-grid {
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .tech-cell {
        width: 60px;
        height: 60px;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
    }
    
    .innovation-card--featured,
    .innovation-card--wide {
        grid-column: span 1;
    }
    
    .project-item {
        flex-direction: column;
    }
    
    .innovation-metrics {
        flex-direction: column;
        gap: var(--space-md);
    }
}


/* Ürünler & Paketler - Products Style */
.page-content--products {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
}

.page-hero--products {
    padding: var(--space-2xl) 0 var(--space-xl);
    text-align: center;
}

.products-hero {
    max-width: 700px;
    margin: 0 auto;
}

.products-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(244, 196, 48, 0.2), rgba(196, 30, 58, 0.2));
    border: 2px solid rgba(244, 196, 48, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-lg);
}

.packages-section {
    padding: var(--space-xl) 0 var(--space-2xl);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.pricing-card {
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(196, 30, 58, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card--featured {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.08), rgba(244, 196, 48, 0.08));
    border-color: rgba(196, 30, 58, 0.4);
    transform: scale(1.05);
}

.pricing-card--featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge-top {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--color-accent), var(--color-highlight));
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: var(--space-sm);
}

.pricing-badge--pro {
    background: rgba(196, 30, 58, 0.2);
    color: var(--color-accent);
}

.pricing-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-xs);
}

.pricing-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.pricing-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 213, 115, 0.2);
    color: #2ed573;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-btn {
    display: block;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition);
}

.pricing-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.pricing-btn--featured {
    background: linear-gradient(135deg, var(--color-accent), var(--color-highlight));
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
}

.pricing-btn--featured:hover {
    box-shadow: 0 12px 35px rgba(196, 30, 58, 0.4);
}

.custom-solution {
    padding: var(--space-2xl);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(244, 196, 48, 0.1));
    border: 2px solid rgba(196, 30, 58, 0.3);
    border-radius: 20px;
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.custom-solution__content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-sm);
}

.custom-solution__content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-showcase {
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.product-card {
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(196, 30, 58, 0.3);
    transform: translateY(-8px);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
}

.product-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.product-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
    flex: 1;
}

.product-includes li {
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.product-includes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.product-duration {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(244, 196, 48, 0.2);
    color: var(--color-highlight);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid rgba(244, 196, 48, 0.3);
}

/* Responsive for Products */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .pricing-card--featured {
        transform: scale(1);
    }
    
    .pricing-card--featured:hover {
        transform: translateY(-10px);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-solution {
        padding: var(--space-xl) var(--space-md);
    }
    
    .custom-solution__content h3 {
        font-size: 1.5rem;
    }
    
    .custom-solution__content p {
        font-size: 1rem;
    }
}


/* Google Maps Section */
.map-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.map-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.map-info {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
}

.map-info__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-md);
}

.map-info__address {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-info__address strong {
    color: white;
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.5rem;
}

.map-info__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.map-detail {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.map-detail__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.map-detail strong {
    display: block;
    color: white;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.map-detail p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.map-container {
    position: relative;
    min-height: 450px;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    filter: grayscale(20%) contrast(1.1);
    transition: filter var(--transition);
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* Responsive for Map Section */
@media (max-width: 1024px) {
    .map-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .map-section {
        padding: var(--space-xl) 0;
    }
    
    .map-info {
        padding: var(--space-lg);
    }
    
    .map-info__title {
        font-size: 1.5rem;
    }
    
    .map-container {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .map-container {
        min-height: 300px;
    }
    
    .map-detail {
        flex-direction: column;
        gap: 0.5rem;
    }
}
