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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #151515;
    --text-primary: #ffffff;
    --text-secondary: #c0c0c0;
    --text-muted: #999999;
    --accent-1: #8b5cf6;
    --accent-2: #06b6d4;
    --accent-3: #f43f5e;
    --accent-4: #f59e0b;
    --gradient-main: linear-gradient(135deg, #8b5cf6, #06b6d4, #f43f5e);
    --gradient-text: linear-gradient(135deg, #8b5cf6, #06b6d4);
    --border-color: rgba(255, 255, 255, 0.06);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-1);
    border-radius: 3px;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

section {
    position: relative;
    z-index: 1;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.6rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-main);
    box-shadow: 0 0 8px var(--accent-1);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: var(--gradient-main);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.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 ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-1);
    background: rgba(139, 92, 246, 0.08);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    animation: fadeInDown 0.6s ease;
}

.hero-title {
    font-size: clamp(2.8rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-title-line {
    display: block;
    color: var(--text-primary);
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--accent-1);
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.btn-card {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    width: 100%;
    justify-content: center;
}

.btn-card:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--accent-1);
    transform: translateY(-2px);
}

.card-note {
    margin: 1rem 0;
    padding: 0.8rem;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    line-height: 1.5;
}

.card-note strong {
    display: block;
    color: var(--accent-1);
    margin-bottom: 0.2rem;
    font-size: 0.8rem;
}

.card-note span {
    color: var(--text-muted);
    display: block;
    font-size: 0.75rem;
}

.enterprise-price {
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: normal;
}

.service-card .btn-card,
.service-card .btn-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: auto;
    box-sizing: border-box;
    padding: 0.85rem 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    animation: fadeInUp 0.6s ease 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    display: block;
}

.hero-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-1);
    top: -10%;
    right: -10%;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-2);
    bottom: -10%;
    left: -10%;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat 12s ease-in-out infinite 2s;
}

/* ===== SERVICES ===== */
.services {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header.left {
    text-align: left;
    margin: 0 0 2rem;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-1);
    background: rgba(139, 92, 246, 0.06);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow-glow);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.card-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(139, 92, 246, 0.15);
    color: var(--accent-1);
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.service-card.featured .card-badge {
    background: var(--gradient-main);
    color: white;
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.card-duration {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.8rem;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    padding: 3px;
    border: 1px solid var(--border-color);
}

.dur-btn {
    flex: 1;
    padding: 0.5rem 0.5rem;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    position: relative;
    z-index: 2;
    user-select: none;
    -webkit-user-select: none;
}

.dur-btn:focus-visible {
    outline: 2px solid var(--accent-1);
    outline-offset: 2px;
}

.dur-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.dur-btn:disabled {
    background: rgba(139, 92, 246, 0.12);
    color: var(--accent-1);
    cursor: default;
    font-size: 0.85rem;
    opacity: 1;
}

.dur-btn.active {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
}

.card-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    flex: 1;
}

.card-features li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.card-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient-main);
    flex-shrink: 0;
    margin-top: 8px;
}

/* ===== APPLY PAGE ===== */
.apply-page {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.apply-container {
    width: 100%;
    max-width: 720px;
}

/* ===== PAKET BANNER ===== */
.apply-banner {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.apply-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-main);
    opacity: 0.6;
}

.banner-badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 1rem;
}

.banner-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.6rem;
}

.banner-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.banner-price-box {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.banner-price {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.banner-period {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.banner-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.banner-features li {
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.banner-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gradient-main);
    flex-shrink: 0;
    margin-top: 7px;
}

.banner-enterprise {
    display: none;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.banner-enterprise strong {
    color: var(--accent-4);
}

.banner-enterprise svg {
    color: var(--accent-4);
    flex-shrink: 0;
    margin-top: 2px;
}

.apply-header {
    text-align: center;
    margin-bottom: 2rem;
}

.apply-form-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-top: 0.8rem;
}

.apply-desc {
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.apply-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.apply-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.apply-form .form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.apply-form .form-group input,
.apply-form .form-group select,
.apply-form .form-group textarea {
    padding: 0.85rem 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.apply-form .form-group input:focus,
.apply-form .form-group select:focus,
.apply-form .form-group textarea:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.apply-form .form-group input::placeholder,
.apply-form .form-group textarea::placeholder {
    color: var(--text-muted);
}

.apply-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='currentColor' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.apply-form .form-group select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

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

.apply-success {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
}

.apply-success.show {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.success-icon {
    margin-bottom: 1.5rem;
}

.apply-success h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.apply-success p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CLIENTS / GÜVEN ===== */
.clients {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.client-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
}
.client-item:hover {
    border-color: rgba(139, 92, 246, 0.25);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}
.client-item .client-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}
.client-item .client-icon svg {
    width: 48px;
    height: 48px;
}
.client-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.client-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ===== PORTFOLIO ICON HOVER ===== */
.portfolio-card-icon {
    transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-card-icon {
    transform: scale(1.08);
}
.portfolio-card-icon svg {
    transition: filter 0.4s ease;
}
.portfolio-card:hover .portfolio-card-icon svg {
    filter: brightness(1.2);
}

/* ===== ABOUT ===== */
.about {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.8;
}

.about-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2rem;
}

.skill-tag {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: default;
}

.skill-tag:hover {
    border-color: var(--accent-1);
    color: var(--accent-1);
    background: rgba(139, 92, 246, 0.06);
}

.about-image-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.about-image-frame::before {
    content: '';
    display: block;
    padding-bottom: 100%;
}

.about-image-placeholder {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-main);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.3;
    animation: gradientShift 4s ease infinite;
    background-size: 200% 200%;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ===== CONTACT ===== */
.contact {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='currentColor' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-1);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand h3 {
    font-size: 1.2rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--accent-1);
    color: var(--accent-1);
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .page-loader { display: none !important; }
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: fixed;
    top: -100%;
    left: 1rem;
    z-index: 10001;
    padding: 0.6rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--accent-1);
    color: var(--accent-1);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s ease;
}
.skip-link:focus {
    top: 1rem;
}

/* ===== KEYBOARD FOCUS ===== */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--accent-1);
    outline-offset: 3px;
    border-radius: 4px;
}
.nav-link:focus-visible {
    outline: 2px solid var(--accent-1);
    outline-offset: 6px;
    border-radius: 4px;
}

/* ===== ANIMATIONS ===== */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    color: white;
}
.whatsapp-tooltip {
    position: absolute;
    left: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== BACK TO TOP ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-main);
    z-index: 9999;
    will-change: width;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    border-color: var(--accent-1);
    color: var(--accent-1);
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-4px);
}

/* ===== CONTRACT NOTICE ===== */
.contract-notice {
    max-width: 800px;
    margin: -2rem auto 3rem;
    padding: 0 2rem;
}
.contract-notice-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}
.contract-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.contract-notice p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* ===== PROCESS ===== */
.process {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.process-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.4s ease;
}
.process-step:hover {
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-4px);
}
.process-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.12;
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Playfair Display', serif;
}
.process-icon {
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: center;
}
.process-icon svg {
    width: 52px;
    height: 52px;
}
.process-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}
.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

/* ===== PORTFOLIO ===== */
.portfolio {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.portfolio-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.portfolio-card-icon {
    padding: 1.5rem 1.5rem 0;
}
.portfolio-card-icon svg {
    width: 48px;
    height: 48px;
    display: block;
}

.portfolio-card-body {
    padding: 1.5rem;
}

.portfolio-card-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(139, 92, 246, 0.12);
    color: var(--accent-1);
    margin-bottom: 0.6rem;
}

.portfolio-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.portfolio-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ===== CASE STUDIES ===== */
.cases {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.case-card:hover {
    border-color: rgba(139, 92, 246, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0.4;
}
.case-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.case-tag {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(139, 92, 246, 0.12);
    color: var(--accent-1);
}
.case-package {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}
.case-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}
.case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}
.case-stat {
    text-align: center;
}
.case-stat-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}
.case-stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.case-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}
.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.case-tags span {
    padding: 0.2rem 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ===== AI CHATBOT ===== */
.chatbot-float {
    position: fixed;
    bottom: 2rem;
    left: 5rem;
    z-index: 998;
}
.chatbot-toggle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-main);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
    transition: all 0.3s ease;
    position: relative;
}
.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(139, 92, 246, 0.5);
}
.chatbot-toggle .chatbot-icon-close { display: none; }
.chatbot-toggle.active .chatbot-icon-open { display: none; }
.chatbot-toggle.active .chatbot-icon-close { display: block; }
.chatbot-panel {
    position: absolute;
    bottom: 64px;
    left: 0;
    width: 300px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.chatbot-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.chatbot-header {
    padding: 1rem;
    background: var(--gradient-main);
    color: white;
}
.chatbot-header strong { display: block; font-size: 0.95rem; }
.chatbot-header span { font-size: 0.75rem; opacity: 0.8; }
.chatbot-body {
    padding: 1rem;
    max-height: 340px;
    overflow-y: auto;
}
.chatbot-msg {
    margin-bottom: 0.8rem;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    animation: fadeInUp 0.3s ease;
}
.chatbot-msg.bot {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}
.chatbot-msg.user {
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--text-primary);
    margin-left: 2rem;
}
.chatbot-options {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.5rem;
}
.chatbot-opt {
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-align: left;
}
.chatbot-opt:focus-visible {
    outline: 2px solid var(--accent-1);
    outline-offset: 2px;
}

.chatbot-opt:hover {
    border-color: var(--accent-1);
    color: var(--accent-1);
    background: rgba(139, 92, 246, 0.08);
}
.chatbot-wa-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.4rem 1rem;
    background: #25d366;
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.chatbot-wa-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    color: white;
}

/* ===== HEMEN ARA ===== */
.btn-call {
    border-color: #25d366 !important;
    color: #25d366 !important;
}
.btn-call:hover {
    background: rgba(37, 211, 102, 0.1) !important;
    border-color: #25d366 !important;
    color: #25d366 !important;
}

/* ===== FAQ ===== */
.faq {
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.2);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}
.faq-question:hover {
    color: var(--accent-1);
}
.faq-question svg {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}
.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
    max-height: 500px;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}
.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-wrapper {
    position: relative;
    width: 100%;
    padding: 0 2.5rem;
    overflow: hidden;
}

.testimonial-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.testimonial-nav-btn.prev { left: 0; }
.testimonial-nav-btn.next { right: 0; }

.testimonial-nav-btn:hover {
    border-color: var(--accent-1);
    color: var(--accent-1);
    background: rgba(139, 92, 246, 0.15);
}

.testimonial-nav-btn:disabled {
    opacity: 0.12;
    cursor: default;
    pointer-events: none;
    border-color: var(--border-color);
    color: var(--text-muted);
    background: var(--bg-card);
}

.testimonial-nav-btn:not(:disabled) {
    cursor: pointer;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
    flex: 0 0 auto;
    min-width: 0;
    width: 340px;
}

.testimonial-card:hover {
    border-color: rgba(139, 92, 246, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 0.6rem;
    right: 1.5rem;
    font-size: 4rem;
    line-height: 1;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.12;
    font-family: 'Playfair Display', serif;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.8rem;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    color: var(--accent-4);
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent-1);
    flex-shrink: 0;
}

.testimonial-author-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-author-info span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.testimonial-pkg {
    display: inline-block;
    margin-top: 0.3rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-1);
    background: rgba(139, 92, 246, 0.1);
    padding: 0.15rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-1);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .about {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .section-header.left {
        text-align: center;
    }
    .about-visual {
        order: -1;
    }
    .about-image-frame {
        max-width: 220px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .process-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cases-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .apply-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transition: right 0.4s ease;
        gap: 1.5rem;
        border-left: 1px solid var(--border-color);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .service-card.featured {
        transform: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .apply-banner {
        padding: 1.5rem;
    }

    .banner-features {
        grid-template-columns: 1fr;
    }

    .banner-price {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .testimonials-wrapper {
        padding: 0 2rem;
    }
    .testimonial-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .form-section {
        padding: 1.5rem;
    }
}

@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 1.2rem;
        left: 1.2rem;
        width: 48px;
        height: 48px;
    }
    .whatsapp-tooltip {
        display: none;
    }
    .chatbot-float {
        bottom: 1.2rem;
        left: 4.5rem;
    }
    .chatbot-toggle {
        width: 44px;
        height: 44px;
    }
    .chatbot-toggle svg {
        width: 20px;
        height: 20px;
    }
    .chatbot-panel {
        width: 280px;
        left: -100px;
    }
    .case-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .clients-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .chatbot-panel {
        width: 240px;
        left: -60px;
    }
    .testimonials-wrapper {
        padding: 0 1.5rem;
    }
    .testimonial-nav-btn {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }
    .hero {
        padding: 6rem 1.2rem 3rem;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.2rem;
    }

    .services {
        padding: 4rem 1.2rem;
    }

    .about {
        padding: 4rem 1.2rem;
        gap: 2rem;
    }

    .contact {
        padding: 4rem 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem 1.2rem;
    }

    .card-header h3 {
        font-size: 1.3rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .enterprise-price {
        font-size: 1rem;
    }

    .form-section {
        padding: 1.2rem;
    }

    .apply-form .form-row {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 3rem 1.2rem 1.5rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .nav-container {
        padding: 0 1rem;
    }
}

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99998;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 1.2rem 2rem;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
}
.cookie-banner.show { display: flex; }
.cookie-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 700px;
}
.cookie-text a {
    color: var(--accent-1);
    text-decoration: none;
}
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}
.cookie-btn:focus-visible {
    outline: 2px solid var(--accent-1);
    outline-offset: 2px;
}
.cookie-btn-accept {
    background: var(--gradient-main);
    color: white;
}
.cookie-btn-accept:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(139,92,246,0.4); }
.cookie-btn-decline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}
.cookie-btn-decline:hover { border-color: var(--accent-1); color: var(--accent-1); }
@media (max-width: 600px) {
    .cookie-banner { flex-direction: column; text-align: center; padding: 1rem 1.2rem; }
    .cookie-actions { width: 100%; justify-content: center; }
}