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

:root {
    --primary-color: #e91e8c;
    --primary-glow: #ff2d9b;
    --secondary-color: #0a0008;
    --text-color: #ffffff;
    --text-secondary: #a89aaa;
    --bg-dark: #080808;
    --bg-card: rgba(18, 10, 16, 0.85);
    --accent-color: #ff69b4;
    --border-color: rgba(255, 255, 255, 0.08);
    --nav-bg: rgba(22, 16, 20, 0.72);
}

html {
    font-size: 112.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1rem;
    background: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 70% 55% at 55% 45%, rgba(233, 30, 140, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 90% 80% at 50% 50%, #141014 0%, #0c0a0c 45%, #050505 100%);
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
    z-index: -1;
    pointer-events: none;
}

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

.header {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2.5rem);
    max-width: 1140px;
    background: var(--nav-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 1000;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.navbar {
    padding: 0.65rem 1.25rem;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: none;
    padding: 0;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-brand:hover {
    opacity: 0.85;
}

.nav-brand:hover .logo-img {
    filter: drop-shadow(0 0 10px rgba(255, 45, 155, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.25rem;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-glow);
}


.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle:hover span {
    background: var(--accent-color);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

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

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(233, 30, 140, 0.5);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}


.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 4rem;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    flex: 1;
    max-width: 560px;
}

.hero-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-logo::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.logo-image {
    max-width: 420px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter:
        drop-shadow(0 0 40px rgba(233, 30, 140, 0.55))
        drop-shadow(0 0 90px rgba(255, 105, 180, 0.3));
}

.hero-brand {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    color: var(--primary-glow);
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(233, 30, 140, 0.35);
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
    max-width: 480px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    border-color: var(--primary-glow);
    background: rgba(233, 30, 140, 0.08);
    box-shadow: 0 0 24px rgba(233, 30, 140, 0.2);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.5), 0 0 20px rgba(255, 105, 180, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

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

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

.btn-secondary:hover {
    background: rgba(233, 30, 140, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.3);
}


.stats {
    padding: 4rem 0;
    background: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.75rem 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}


.services {
    padding: 6rem 0;
    background: transparent;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(233, 30, 140, 0.25), 0 0 30px rgba(255, 105, 180, 0.1);
    background: rgba(13, 0, 10, 0.85);
}

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

.service-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
}

.service-card:hover .service-icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.5);
}

.service-icon {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 2;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.btn-service {
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.btn-service::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-service:hover::before {
    width: 400px;
    height: 400px;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.5), 0 0 20px rgba(255, 105, 180, 0.3);
}


.why-us {
    padding: 6rem 0;
    background: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
}

.feature-item:hover .feature-icon-box {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.5);
}

.feature-icon {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 2;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-description {
    color: var(--text-secondary);
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.exp-stat {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.exp-stat:hover {
    transform: scale(1.05);
}

.exp-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.exp-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}


.team {
    padding: 6rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 1400px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
    }
}

.team-card {
    background: rgba(35, 39, 46, 0.95);
    border: 1px solid rgba(60, 60, 65, 0.5);
    border-radius: 8px;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 105, 180, 0.5);
}

.team-avatar-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    position: relative;
    z-index: 5;
    margin-bottom: 1rem;
}

.team-card .team-info {
    padding: 0 1.5rem 1.5rem 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.team-badge-corner {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(212, 212, 216, 0.95);
    border-radius: 20px;
    padding: 0.35rem 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.3s ease;
}

.team-badge-corner:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.badge-icon {
    width: 14px;
    height: 14px;
    color: #1a1a1a;
    stroke-width: 2.5;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
    background: rgba(13, 0, 10, 0.85);
}

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

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: block;
    background-color: transparent;
}

.team-avatar-placeholder {
    background: rgba(255, 255, 255, 0.06);
    border: 2px dashed rgba(255, 255, 255, 0.15);
}

.team-card:hover .team-avatar {
    border-color: rgba(13, 0, 10, 0.95);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

.team-info {
    flex: 1;
}

.team-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.status-dot-inline {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot-inline.online {
    background: #00ff00;
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.6);
}

.status-dot-inline.idle {
    background: #ffaa00;
    box-shadow: 0 0 8px rgba(255, 170, 0, 0.6);
}

.team-name {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.team-username {
    color: #ff69b4;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.team-role {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-section {
    margin-bottom: 1rem;
}

.team-section h5 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.team-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}

.badge-founder {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
}

.badge-bot-developer {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: white;
}

.badge-project-lead {
    background: #c026d3;
    border-color: #c026d3;
    color: white;
}

.badge-co-founder {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: white;
}

.badge-web-developer {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.badge-admin-lead {
    background: #c026d3;
    border-color: #c026d3;
    color: white;
}

.badge-manager {
    background: #f59e0b;
    border-color: #f59e0b;
    color: white;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.badge-founder:hover {
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.5);
}

.badge-bot-developer:hover,
.badge-co-founder:hover {
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.5);
}

.badge-project-lead:hover,
.badge-admin-lead:hover {
    box-shadow: 0 4px 12px rgba(192, 38, 211, 0.5);
}

.badge-web-developer:hover {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.5);
}

.badge-manager:hover {
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
}

.team-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.online {
    background: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.status-dot.idle {
    background: #ffaa00;
    box-shadow: 0 0 10px rgba(255, 170, 0, 0.5);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.testimonials-carousel {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: scroll-carousel 20s linear infinite;
    width: max-content;
    padding-right: 2rem;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 0 0 320px;
    min-width: 320px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 100px;
    color: rgba(255, 105, 180, 0.1);
    font-weight: bold;
}

.testimonial-card:hover {
    border-color: rgba(255, 105, 180, 0.4);
    background: rgba(13, 0, 10, 0.9);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.testimonial-role {
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-style: italic;
}

.testimonial-stars {
    display: flex;
    gap: 0.35rem;
}

.star {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.star.filled {
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.6);
}

.testimonial-card:hover .star {
    transform: scale(1.15);
}

.footer {
    padding: 4rem 0 2.5rem;
    background:
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(233, 30, 140, 0.08) 0%, transparent 70%),
        #050505;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    margin-top: 6rem;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-logo-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.footer-divider-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-logo-center {
    height: 80px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 0 20px rgba(233, 30, 140, 0.35));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand-name {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
    max-width: 220px;
}

.footer-contact-link {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
    width: fit-content;
}

.footer-contact-link:hover {
    color: var(--primary-glow);
}

.footer-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1.25rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
    width: fit-content;
}

.footer-list a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: left;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
    font-weight: 400;
}

.footer-disclaimer {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    margin: 0.5rem 0 0;
    font-style: italic;
}

.footer-credit {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    margin: 0.35rem 0 0;
}

.footer-credit span {
    color: rgba(255, 105, 180, 0.6);
    font-weight: 600;
}


@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .navbar .container {
        flex-wrap: wrap;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header {
        top: 0.75rem;
        width: calc(100% - 1.25rem);
        border-radius: 14px;
    }

    .nav-menu {
        position: fixed;
        top: 5.5rem;
        left: 0.625rem;
        right: 0.625rem;
        width: auto;
        background: rgba(18, 12, 16, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.5rem;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
        border: 1px solid var(--border-color);
        border-radius: 14px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(42, 10, 31, 0.3);
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        padding-left: 1.5rem;
        color: var(--accent-color);
    }

    .logo-img {
        height: 32px;
    }

    .hero {
        min-height: auto;
        padding: 6.5rem 0 3rem;
    }

    .hero-wrapper {
        flex-direction: column-reverse;
        gap: 2.5rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .logo-image {
        max-width: 280px;
    }

    .hero-description {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .stats {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .services {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon-box {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .why-us {
        padding: 4rem 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-icon-box {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

    .experience-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team {
        padding: 4rem 0;
    }

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

    .team-card {
        flex-direction: column;
    }

    .team-avatar-wrapper {
        padding-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .team-avatar {
        width: 70px;
        height: 70px;
    }

    .team-card .team-info {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    .team-name {
        font-size: 1.3rem;
    }

    .testimonials-track {
        animation: scroll-carousel 18s linear infinite;
    }

    .testimonial-card {
        padding: 1.5rem;
        flex: 0 0 280px;
        min-width: 280px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

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

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

    .footer-logo-center {
        height: 64px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .header {
        border-bottom-width: 1px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .nav-menu {
        gap: 0.75rem;
        font-size: 0.8rem;
        justify-content: center;
        width: 100%;
        margin-top: 0.5rem;
    }

    .logo-img {
        height: 30px;
    }

    .hero {
        padding: 6rem 0 2.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 0.65rem 1.5rem;
    }

    .stats {
        padding: 2.5rem 0;
    }

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

    .stat-item {
        padding: 1rem;
    }

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

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

    .services {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-icon-box {
        width: 50px;
        height: 50px;
    }

    .service-icon {
        width: 28px;
        height: 28px;
    }

    .service-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .service-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .service-features {
        margin-bottom: 1rem;
    }

    .service-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .service-price {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .why-us {
        padding: 3rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 3rem;
    }

    .feature-item {
        padding: 1.25rem;
    }

    .feature-icon-box {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
    }

    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }

    .experience-stats {
        gap: 1.25rem;
    }

    .exp-stat {
        padding: 1.5rem;
    }

    .exp-number {
        font-size: 2.5rem;
    }

    .exp-label {
        font-size: 0.85rem;
    }

    .team {
        padding: 3rem 0;
    }

    .team-grid {
        gap: 1.25rem;
    }

    .team-card {
        border-radius: 6px;
    }

    .team-badge-corner {
        top: 10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .badge-icon {
        width: 12px;
        height: 12px;
    }

    .team-avatar-wrapper {
        padding-top: 1.25rem;
    }

    .team-avatar {
        width: 65px;
        height: 65px;
    }

    .team-card .team-info {
        padding: 0 1rem 1rem 1rem;
    }

    .team-name {
        font-size: 1.2rem;
    }

    .team-username {
        font-size: 0.85rem;
    }

    .team-role {
        font-size: 0.95rem;
    }

    .team-section {
        margin-bottom: 0.75rem;
    }

    .team-section h5 {
        font-size: 0.85rem;
    }

    .team-section p {
        font-size: 0.85rem;
    }

    .team-badges {
        gap: 0.4rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .team-status {
        font-size: 0.85rem;
    }

    .footer {
        padding: 2.5rem 0 1.25rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .footer-logo-center {
        height: 56px;
    }

    .footer-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .footer-list {
        gap: 0.6rem;
    }

    .footer-list a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }
}
