/* ===== CSS Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal scroll on mobile */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
}

:root {
    --primary-color: #1E3A5F;
    --accent-color: #00D4AA;
    --dark-color: #0A1628;
    --darker-color: #060F1D;
    --light-color: #ffffff;
    --gray-color: #8892A0;
    --dark-gray: #111D32;
    --medium-gray: #1A2844;
    --gradient-1: linear-gradient(135deg, #1E3A5F 0%, #00D4AA 100%);
    --gradient-2: linear-gradient(135deg, #00D4AA 0%, #1E3A5F 100%);
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 212, 170, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--light-color);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(108, 99, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--light-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--light-color);
    color: var(--dark-color);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.btn-outline:hover {
    background: var(--light-color);
    color: var(--dark-color);
}

/* ===== Header / Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

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

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--light-color);
    border-radius: 5px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 80px;
    text-align: center;
    overflow: hidden;
}

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

.hero-image-wrapper {
    margin-bottom: 30px;
    display: inline-block;
}

.hero-profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 5px solid transparent;
    background: linear-gradient(var(--dark-color), var(--dark-color)) padding-box,
                var(--gradient-1) border-box;
    box-shadow: 0 0 40px rgba(108, 99, 255, 0.4),
                0 0 80px rgba(255, 101, 132, 0.2);
    transition: var(--transition);
}

.hero-profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(108, 99, 255, 0.6),
                0 0 100px rgba(255, 101, 132, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.hero-stats {
    margin: 30px 0;
}

.stat-badge {
    background: var(--medium-gray);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -50px;
    left: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--gradient-1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ===== Watermark Logos (Hero + Brands Section) ===== */
.hero-watermarks,
.brands-watermarks {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.wm {
    position: absolute;
    color: var(--light-color);
    opacity: 0.05;
    font-size: 7rem;
    line-height: 1;
}

.wm svg {
    width: 1em;
    height: 1em;
    display: block;
}

/* Hero positions */
.wm-1 { top: 8%;  left: 4%;   font-size: 6rem;   animation: wmDrift1 18s ease-in-out infinite; }
.wm-2 { top: 15%; right: 6%;  font-size: 7.5rem; animation: wmDrift2 22s ease-in-out infinite; }
.wm-3 { top: 55%; left: 2%;   font-size: 5.5rem; animation: wmDrift3 16s ease-in-out infinite; }
.wm-4 { top: 70%; right: 4%;  font-size: 6.5rem; animation: wmDrift4 20s ease-in-out infinite; }
.wm-5 { top: 38%; left: 10%;  font-size: 5rem;   animation: wmDrift5 24s ease-in-out infinite; }
.wm-6 { top: 80%; left: 30%;  font-size: 4.5rem; animation: wmDrift1 19s ease-in-out infinite reverse; }
.wm-7 { top: 10%; left: 42%;  font-size: 4rem;   animation: wmDrift3 21s ease-in-out infinite reverse; }
.wm-8 { top: 62%; right: 15%; font-size: 5rem;   animation: wmDrift2 17s ease-in-out infinite; }

/* Brands section positions */
.bwm-1 { top: 10%; left: 3%;   font-size: 5rem;   animation: wmDrift2 20s ease-in-out infinite; }
.bwm-2 { top: 20%; right: 4%;  font-size: 6rem;   animation: wmDrift1 18s ease-in-out infinite reverse; }
.bwm-3 { top: 60%; left: 5%;   font-size: 4.5rem; animation: wmDrift4 22s ease-in-out infinite; }
.bwm-4 { top: 70%; right: 6%;  font-size: 5.5rem; animation: wmDrift3 16s ease-in-out infinite reverse; }
.bwm-5 { top: 40%; right: 20%; font-size: 4rem;   animation: wmDrift5 25s ease-in-out infinite; }

/* Slow drift animations - different directions */
@keyframes wmDrift1 {
    0%   { transform: translate(0px, 0px)     rotate(0deg); }
    25%  { transform: translate(18px, -20px)  rotate(4deg); }
    50%  { transform: translate(-10px, -35px) rotate(-3deg); }
    75%  { transform: translate(-22px, -15px) rotate(5deg); }
    100% { transform: translate(0px, 0px)     rotate(0deg); }
}
@keyframes wmDrift2 {
    0%   { transform: translate(0px, 0px)     rotate(0deg); }
    25%  { transform: translate(-20px, 15px)  rotate(-5deg); }
    50%  { transform: translate(15px, 30px)   rotate(3deg); }
    75%  { transform: translate(25px, 10px)   rotate(-4deg); }
    100% { transform: translate(0px, 0px)     rotate(0deg); }
}
@keyframes wmDrift3 {
    0%   { transform: translate(0px, 0px)     rotate(0deg); }
    33%  { transform: translate(25px, -18px)  rotate(6deg); }
    66%  { transform: translate(-18px, 22px)  rotate(-4deg); }
    100% { transform: translate(0px, 0px)     rotate(0deg); }
}
@keyframes wmDrift4 {
    0%   { transform: translate(0px, 0px)     rotate(0deg); }
    20%  { transform: translate(-15px, -25px) rotate(-3deg); }
    50%  { transform: translate(20px, -10px)  rotate(5deg); }
    80%  { transform: translate(10px, 20px)   rotate(-2deg); }
    100% { transform: translate(0px, 0px)     rotate(0deg); }
}
@keyframes wmDrift5 {
    0%   { transform: translate(0px, 0px)    rotate(0deg); }
    30%  { transform: translate(30px, 20px)  rotate(4deg); }
    60%  { transform: translate(-20px, 30px) rotate(-5deg); }
    100% { transform: translate(0px, 0px)    rotate(0deg); }
}

@media (max-width: 768px) {
    .wm, .bwm-1, .bwm-2, .bwm-3, .bwm-4, .bwm-5 { opacity: 0.03; }
    .wm-1, .wm-3, .wm-6 { display: none; }
    .bwm-3, .bwm-5 { display: none; }
}

/* ===== Section Titles ===== */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-color);
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== About Section ===== */
.about {
    padding: 100px 20px;
    background: var(--darker-color);
}

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

.about-image-wrapper {
    margin-bottom: 30px;
}

.about-profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 4px solid transparent;
    background: linear-gradient(var(--dark-gray), var(--dark-gray)) padding-box,
                var(--gradient-1) border-box;
    box-shadow: 0 0 30px rgba(108, 99, 255, 0.3);
    transition: var(--transition);
}

.about-profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(108, 99, 255, 0.5);
}

.about-header {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

.about-text {
    font-size: 1.15rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: var(--dark-gray);
    border-radius: 20px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--gray-color);
    font-weight: 500;
}

/* ===== Upwork Section ===== */
.upwork-section {
    padding: 100px 20px;
    background: #ffffff;
}

.upwork-section .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
    color: #1a1a2e;
    text-align: center;
    font-weight: 800;
}

.upwork-section .section-subtitle {
    display: none;
}

/* Upwork Badge Icon */
.upwork-icon {
    text-align: center;
    margin-bottom: 20px;
}

.upwork-icon svg {
    width: 60px;
    height: 40px;
}

/* Tab Navigation */
.upwork-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.upwork-tab {
    padding: 10px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    background: transparent;
    border: none;
    color: #666;
}

.upwork-tab.active {
    background: #14a800;
    color: white;
}

.upwork-tab i {
    margin-right: 8px;
}

/* Stats Grid */
.upwork-badges-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 40px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: #f8f9fa;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #14a800;
}

.stat-card .stat-icon {
    font-size: 1.5rem;
    color: #14a800;
    margin-bottom: 12px;
}

.stat-card .stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.stat-card .stat-label {
    display: block;
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Contracts Section */
.upwork-contracts {
    margin: 40px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.upwork-contracts h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a2e;
    text-align: left;
}

.contract-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.contract-card:hover {
    border-color: #14a800;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contract-card .contract-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.contract-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
    margin: 0;
}

.contract-card .status {
    display: inline-block;
    background: rgba(20, 168, 0, 0.1);
    color: #14a800;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.contract-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.contract-metrics li {
    text-align: left;
    font-size: 0.85rem;
    color: #888;
    padding: 0;
    background: transparent;
    border: none;
}

.contract-metrics li strong {
    display: block;
    color: #1a1a2e;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 6px;
}

/* Reviews Section */
.upwork-reviews {
    margin: 40px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: none;
}

.upwork-reviews.active {
    display: block;
}

.upwork-reviews h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.upwork-review {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.upwork-review:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.upwork-review .stars {
    margin-bottom: 15px;
}

.upwork-review .stars i {
    color: #ffb800;
    font-size: 1rem;
    margin-right: 3px;
}

.upwork-review .stars .rating-value {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1rem;
    margin-left: 10px;
}

.upwork-review blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
    quotes: '"' '"';
}

.upwork-review .review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.85rem;
}

.upwork-review .review-meta .project-type {
    color: #1a1a2e;
    font-weight: 600;
}

/* CTA Button */
.upwork-cta {
    text-align: center;
    margin-top: 40px;
}

.upwork-link {
    background: #14a800;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: none;
}

.upwork-link:hover {
    background: #0f8c00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20, 168, 0, 0.25);
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .upwork-badges-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .upwork-badges-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .contract-metrics {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contract-card .contract-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .upwork-review .review-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ===== Services Section ===== */
.services {
    padding: 100px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--dark-gray);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card > p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    color: var(--gray-color);
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* ===== Portfolio Section ===== */
.portfolio {
    padding: 100px 20px;
    background: var(--darker-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.portfolio-card {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    width: 70px;
    height: 70px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.portfolio-card > p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.portfolio-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
}

.portfolio-stats span {
    color: var(--gray-color);
}

.portfolio-stats strong {
    color: var(--primary-color);
    font-size: 1.3rem;
    display: block;
}

.portfolio-cta {
    text-align: center;
}

/* ===== CTA Banner ===== */
.cta-banner {
    padding: 100px 20px;
    background: var(--gradient-1);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 100px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--medium-gray);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-color);
    font-style: italic;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

/* ===== Process Section ===== */
.process {
    padding: 100px 20px;
    background: var(--darker-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    padding: 40px 30px;
    background: var(--dark-gray);
    border-radius: 20px;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-step p {
    color: var(--gray-color);
    line-height: 1.7;
}

/* ===== Final CTA Section ===== */
.final-cta {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(180deg, var(--dark-color) 0%, var(--darker-color) 100%);
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.final-cta-content > p {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 40px;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-color);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--darker-color);
    padding: 60px 20px 30px;
    border-top: 1px solid var(--medium-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--gray-color);
    line-height: 1.7;
}

.footer-links h4,
.footer-services h4,
.footer-social h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul li a,
.footer-services ul li {
    color: var(--gray-color);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--dark-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gradient-1);
    transform: translateY(-5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--medium-gray);
}

.footer-bottom p {
    color: var(--gray-color);
}

.scroll-top {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    transition: var(--transition);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===== Responsive Design - All Devices ===== */

/* Large Desktops (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Desktops (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets Landscape (992px - 1023px) */
@media (max-width: 1023px) and (min-width: 992px) {
    .services-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets Portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .services-grid,
    .portfolio-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Landscape & Small Tablets (481px - 767px) */
@media (max-width: 767px) and (min-width: 481px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        background: var(--darker-color);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 30px;
        transition: var(--transition);
        box-shadow: var(--shadow);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .header .btn {
        display: none;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-profile-image {
        width: 150px;
        height: 150px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid,
    .services-grid,
    .portfolio-grid,
    .testimonials-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .service-card,
    .portfolio-card,
    .testimonial-card,
    .process-step {
        padding: 25px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

/* Mobile Portrait (320px - 480px) */
@media (max-width: 480px) and (min-width: 320px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        background: var(--darker-color);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 25px;
        transition: var(--transition);
        box-shadow: var(--shadow);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .header .btn {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 80px 15px 50px;
    }
    
    .hero-profile-image {
        width: 120px;
        height: 120px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .stat-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .stats-grid,
    .services-grid,
    .portfolio-grid,
    .testimonials-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .service-card,
    .portfolio-card,
    .testimonial-card,
    .process-step {
        padding: 20px 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .service-card h3,
    .portfolio-card h3 {
        font-size: 1.3rem;
    }
    
    .step-number {
        font-size: 3rem;
    }
    
    .cta-banner {
        padding: 60px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .final-cta {
        padding: 60px 15px;
    }
    
    .final-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .final-cta-content > p {
        font-size: 1rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .final-cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 40px 15px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-links h4,
    .footer-services h4,
    .footer-social h4 {
        font-size: 1.1rem;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .btn {
        padding: 11px 24px;
        font-size: 0.9rem;
    }
    
    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Very Small Devices (Below 320px) */
@media (max-width: 319px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-profile-image {
        width: 100px;
        height: 100px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* ===== Brands Portfolio Slider ===== */
.brands-slider-section {
    padding: 60px 20px;
    background: var(--darker-color);
}

.brands-slider-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
}

.brands-slider-subtitle {
    text-align: center;
    color: var(--gray-color);
    font-size: 1rem;
    margin-bottom: 40px;
}

.brands-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.brands-viewport {
    overflow: hidden;
    flex: 1;
    border-radius: 16px;
    position: relative;
}

.brands-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 0;
    background: var(--dark-gray);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--medium-gray);
    box-sizing: border-box;
}

.brand-slide-image {
    position: relative;
    height: 420px;
    background: #0d1b2e;
    overflow: hidden;
}

.brand-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s ease;
}

.brand-slide:hover .brand-slide-image img {
    transform: scale(1.02);
}

/* Auto-scroll for long page screenshots */
.brand-slide-image img.img-scroll {
    object-fit: cover;
    object-position: top center;
    animation: imgAutoScroll 12s ease-in-out infinite;
    animation-play-state: running;
}

.brand-slide-image img.img-scroll:hover {
    animation-play-state: paused;
}

@keyframes imgAutoScroll {
    0%   { object-position: center 0%; }
    10%  { object-position: center 0%; }
    80%  { object-position: center 100%; }
    90%  { object-position: center 100%; }
    100% { object-position: center 0%; }
}

.brand-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.shopify-badge  { background: #96bf48; color: #fff; }
.tiktok-badge   { background: linear-gradient(135deg, #00f2ea, #ff0050); color: #fff; }
.webdev-badge   { background: #61dafb; color: #1a1a2e; }

.brand-slide-info {
    padding: 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.brand-slide-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.brand-slide-info p {
    color: var(--gray-color);
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

.brand-slide-stats {
    display: flex;
    gap: 18px;
    padding: 12px 0;
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
}

.bstat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bstat-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--light-color);
}

.bstat-label {
    font-size: 0.7rem;
    color: var(--gray-color);
    font-weight: 500;
}

.brand-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--gradient-1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    width: fit-content;
    transition: var(--transition);
}

.brand-slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
    color: #fff;
}

.brands-arrow {
    background: var(--gradient-1);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.brands-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.5);
}

.brands-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.brands-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}

.brands-dot.active {
    background: var(--accent-color);
    transform: scale(1.4);
}

.brands-counter {
    text-align: center;
    color: var(--gray-color);
    font-size: 0.82rem;
    margin-top: 8px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .brand-slide {
        grid-template-columns: 1fr 1fr;
    }
    .brand-slide-image {
        height: 200px;
    }
    .brand-slide-info {
        padding: 14px 12px;
    }
    .brand-slide-info h3 {
        font-size: 1rem;
    }
    .brand-slide-stats {
        gap: 10px;
    }
    .brands-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
    .brands-slider-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .brands-slider-wrapper {
        gap: 8px;
    }
    .brand-slide {
        grid-template-columns: 1fr 1fr;
    }
    .brand-slide-image {
        height: 160px;
    }
    .brand-slide-info h3 {
        font-size: 0.85rem;
    }
    .brand-slide-stats {
        display: none;
    }
    .brand-slide-btn {
        font-size: 0.75rem;
        padding: 7px 12px;
    }
}

/* ===== Lightbox ===== */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: lightboxFadeIn 0.25s ease;
}

.lightbox-overlay.active {
    display: flex;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
    animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
    from { transform: scale(0.88); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.25);
}

/* ===== Review & Contract Slider ===== */
.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.slider-viewport {
    overflow: hidden;
    flex: 1;
    border-radius: 12px;
    position: relative;
    transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-track .upwork-review,
.slider-track .contract-card {
    min-width: 100%;
    margin-bottom: 0;
    box-sizing: border-box;
}

.slider-arrow {
    background: #14a800;
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(20, 168, 0, 0.3);
}

.slider-arrow:hover {
    background: #0f8c00;
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(20, 168, 0, 0.45);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #14a800;
    transform: scale(1.35);
}

.slider-counter {
    text-align: center;
    color: #888;
    font-size: 0.82rem;
    margin-top: 8px;
    font-weight: 500;
}

@media (max-width: 600px) {
    .upwork-section {
        padding: 40px 12px;
    }
    .upwork-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    /* Upwork slider — compact mobile */
    .slider-container {
        gap: 0;
        position: relative;
    }
    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        z-index: 10;
        opacity: 0.88;
    }
    .slider-prev { left: 4px; }
    .slider-next { right: 4px; }

    .slider-track .upwork-review,
    .slider-track .contract-card {
        padding: 16px 14px;
    }

    .upwork-review blockquote {
        font-size: 0.88rem;
    }
    .contract-card h4 {
        font-size: 0.88rem;
    }
    .contract-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Brands slider — compact mobile */
    .brands-slider-wrapper {
        gap: 0;
        position: relative;
    }
    .brands-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        opacity: 0.88;
    }
    .brands-prev { left: 4px; }
    .brands-next { right: 4px; }

    .brand-slide {
        grid-template-columns: 1fr 1fr;
    }
    .brand-slide-image {
        height: 150px;
    }
    .brand-slide-info {
        padding: 10px 8px;
    }
    .brand-slide-info h3 {
        font-size: 0.82rem;
        margin-bottom: 6px;
    }
    .brand-slide-info p {
        font-size: 0.72rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .brand-slide-stats {
        display: none;
    }
    .brand-slide-btn {
        font-size: 0.7rem;
        padding: 6px 10px;
        margin-top: 6px;
    }
    .brands-slider-section {
        padding: 30px 12px;
    }
    .brands-slider-title {
        font-size: 1.4rem;
    }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
