/* --- BASE STYLES --- */
:root {
    --bg-main: #000000;
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --accent: #10b981;
    --accent-hover: #059669;
    --card-bg: rgba(255, 255, 255, 0.02);
    --border-color: rgba(255, 255, 255, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- HEADER --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-logo {
    width: 160px;
    height: auto;
    object-fit: contain;
}

.primary-navigation ul {
    display: flex;
    gap: 2.5rem;
}

.primary-navigation a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.primary-navigation a:hover {
    color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    color: #e4e4e7;
    font-size: 0.95rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.lang-switcher:hover { opacity: 1; }

.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s;
}

/* --- HERO SECTION --- */
.hero-section {
    padding: 12rem 5% 8rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: clamp(3rem, 5vw + 1rem, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 950px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 2.5rem;
}

.btn-hero {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #000000;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.25);
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.social-proof {
    margin-top: 6rem;
    width: 100%;
}

.proof-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #52525b;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.proof-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
    align-items: center;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.proof-logos:hover {
    opacity: 0.8;
    filter: grayscale(0%);
}

.proof-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

/* --- SERVICES SECTION --- */
.services-section {
    padding: 8rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

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













/* --- TRUST SECTION --- */
.trust-section {
    padding: 4rem 5%;
}

.trust-container {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    padding: 5rem 3rem;
    border-radius: 32px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 3rem;
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
}

.trust-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    max-width: 450px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-badge {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: scale(1.05);
}

.badge-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.badge-text {
    color: #d1fae5;
    font-weight: 600;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    padding: 8rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.testi-card {
    background: var(--card-bg);
    padding: 4rem 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testi-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
}

.testi-card.featured {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
}

.testi-card.featured:hover {
    background: rgba(16, 185, 129, 0.08);
}

.testi-quote {
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.7;
    color: #e4e4e7;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.testi-author {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 8rem 5% 10rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 4rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.01);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(255, 255, 255, 0.02);
}

.faq-header {
    padding: 1.75rem 2.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 2.5rem;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-content {
    padding: 0 2.5rem 2.5rem;
    max-height: 200px;
    opacity: 1;
}

.faq-content p {
    color: var(--text-muted);
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-color);
    padding: 6rem 5% 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

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

.footer-links a {
    color: #71717a;
    transition: color 0.2s ease;
}

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

.footer-copy {
    color: #3f3f46;
    font-size: 0.875rem;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 992px) {
    .primary-navigation { display: none; }
    .mobile-menu-toggle { display: flex; }
    .hero-title { font-size: 3rem; }
    .trust-container { text-align: center; justify-content: center; }
}

@media (max-width: 768px) {
    .header-actions .btn { display: none; }
    .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .hero-section { padding-top: 8rem; }
}

/* --- GIG CARDS (SERVICES) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}
.gig-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}
.gig-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
}
.gig-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: #222;
    overflow: hidden;
}
.gig-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gig-card:hover .gig-image img {
    transform: scale(1.05);
}
.gig-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.gig-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.rating-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #facc15;
    display: flex;
    align-items: center;
    gap: 4px;
}
.rating-stars {
    color: #facc15;
    font-size: 0.85rem;
    letter-spacing: 2px;
}
.rating-count {
    color: #a1a1aa;
    font-weight: 400;
}
.gig-title { transition: color 0.3s ease; 
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.gig-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid #10b981;
    border-radius: 99px;
    color: #10b981;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}
.btn-view-more:hover {
    background: #10b981;
    color: #000;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.gig-card:hover .gig-title { transition: color 0.3s ease;  color: #10b981; transition: color 0.3s ease; }
