/* --- URBANITSA INDEX MASTER STYLES - TIGHTENED VERSION --- */

:root {
    --bg-midnight: #0a0f1c;
    --card-blue: #161d2f;
    --green-accent: #00d166;
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --font-main: 'Inter', sans-serif;
}

.index-page {
    background-color: var(--bg-midnight);
    color: var(--text-white);
    padding-top: 100px;
    font-family: var(--font-main);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- 1. HERO SECTION --- */
.hero-clean {
    padding: 100px 0 60px; /* Reduced from 140px */
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 209, 102, 0.05) 0%, transparent 70%);
}

.hero-clean h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
}

.badge {
    display: inline-block;
    border: 1px solid rgba(0, 209, 102, 0.4);
    color: var(--green-accent);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.gradient {
    background: linear-gradient(90deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block; 
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-actions { display: flex; justify-content: center; gap: 20px; }

/* --- 2. PARTNERS SCROLLER --- */
.partners-strip {
    padding: 20px 0 60px; /* Reduced spacing */
}

.partners-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.partners-slider {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.partners-track {
    display: flex;
    width: calc(200px * 10);
    animation: scrollLogos 30s linear infinite;
    align-items: center;
}

.partner-logo {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    padding: 0 35px;
}

.partner-logo img { height: 40px; filter: none; opacity: 1; }

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 5)); }
}

/* --- 3. SEO WELCOME SECTION --- */
.seo-intro-grid {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.seo-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.seo-text strong { color: var(--text-white); font-weight: 600; }

/* --- 4. TIGHTENED GRID SPACING --- */
.section-padding { padding: 70px 0; } /* Reduced from 120px to bring sections closer */

.section-intro-centered {
    text-align: center;
    margin-bottom: 50px; /* Reduced from 80px */
}

.section-title { font-size: 2.5rem; font-weight: 800; margin-top: 15px; }
.green-text-header { color: var(--green-accent); }

.clean-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--card-blue);
    padding: 40px 30px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--green-accent);
}

.icon-box { font-size: 2rem; margin-bottom: 20px; display: block; }

/* --- 5. SERVICES STRIP --- */
.glass-strip {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 40px;
    border-radius: 35px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.strip-item h4 { font-size: 1.2rem; margin-bottom: 5px; color: white; }

.green-link {
    color: var(--green-accent) !important;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s;
    display: inline-block;
    margin-top: 5px;
}

/* --- 6. CTA SECTION & BUTTON FIX --- */
.cta-section { margin-bottom: 80px; }

.cta-glass {
    padding: 70px 40px;
    text-align: center;
    border-radius: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-glass h2 { font-size: 2.5rem; margin-bottom: 15px; font-weight: 800; color: white; }
.cta-glass p { color: var(--text-muted); margin-bottom: 30px; font-size: 1.1rem; }

/* FIXED THE PURPLE LINK TO GREEN BUTTON */
.cta-link {
    background-color: var(--green-accent) !important;
    color: #0a0f1c !important; /* Dark text on green background */
    padding: 15px 35px;
    border-radius: 100px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.cta-link:hover {
    background-color: #00ff7c !important;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 209, 102, 0.2);
}

/* BUTTONS */
.btn-primary {
    background: var(--green-accent);
    color: #0a0f1c;
    padding: 18px 45px;
    border-radius: 100px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 18px 45px;
    border-radius: 100px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* MOBILE */
@media (max-width: 992px) {
    .clean-grid, .glass-strip { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-glass { margin-left: 0; margin-top: 15px; }
}