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

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    gap: 2rem;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo span {
    color: var(--primary-color);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-grow: 1;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    flex-grow: 1;
    justify-content: center;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    transition: all 0.3s ease;
    border-radius: 0.25rem;
}

.lang-btn:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.lang-btn.active {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.15);
}

.lang-separator {
    color: var(--text-secondary);
    opacity: 0.3;
    font-size: 0.875rem;
}

/* Starlink Nav Button */
.btn-starlink-nav {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
    white-space: nowrap;
}

.btn-starlink-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea15 0%, #764ba225 100%);
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.title-line {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

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

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.btn {
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(99, 102, 241, 0.5);
}

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

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

.btn-starlink {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.4);
    animation: pulse 2s infinite;
}

.btn-starlink:hover {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px 0 rgba(59, 130, 246, 0.6);
}

.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    width: 250px;
    height: 250px;
    background: var(--gradient-1);
    top: 0;
    right: 100px;
    animation-delay: 0s;
}

.card-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-2);
    bottom: 50px;
    right: 0;
    animation-delay: 1s;
}

.card-3 {
    width: 150px;
    height: 150px;
    background: var(--gradient-3);
    top: 150px;
    left: 0;
    animation-delay: 2s;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* Starlink Banner */
.starlink-banner {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a8a 50%, #3b82f6 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.starlink-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.satellite {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: satellite-move 15s linear infinite;
}

.satellite-1 {
    top: 20%;
    animation-delay: 0s;
}

.satellite-2 {
    top: 50%;
    animation-delay: 5s;
}

.satellite-3 {
    top: 80%;
    animation-delay: 10s;
}

.banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.banner-title-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.starlink-logo {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.starlink-logo svg {
    width: 40px;
    height: 40px;
    color: white;
    animation: pulse 3s infinite;
}

.banner-title-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0.5rem 0 0 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(16, 185, 129, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
    font-weight: 600;
    font-size: 0.95rem;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
}

.banner-main-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

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

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: all 0.3s ease;
    min-height: 140px;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.info-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1;
}

.info-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.coverage-cities {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.coverage-cities h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.city-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.city-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.city-tag.active {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
    color: #10b981;
}

.city-dot {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.banner-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-starlink-primary {
    background: white;
    color: #1e3a8a;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-starlink-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    background: #f0f9ff;
}

.btn-starlink-primary svg {
    width: 20px;
    height: 20px;
}

.btn-starlink-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-starlink-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* Map Section */
.banner-map-container {
    position: relative;
}

.map-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 450px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
}

.map-svg-placeholder {
    width: 95%;
    height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

.city-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.marker-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: marker-pulse 2s infinite;
}

.marker-dot {
    position: relative;
    width: 12px;
    height: 12px;
    background: #10b981;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
    z-index: 2;
}

.marker-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.city-marker:hover .marker-label {
    opacity: 1;
}

.city-marker:hover .marker-dot {
    background: #059669;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.coverage-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0) 70%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    transform: translate(-50%, -50%);
    animation: coverage-expand 4s infinite;
    pointer-events: none;
}

.map-legend {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.map-legend span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.legend-dot.active {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
    animation: pulse-dot 2s infinite;
}

/* Starlink Pricing Section */
/* ========== Starlink Section — Минималистичный дизайн ========== */
.starlink-section {
    position: relative;
    padding: 7rem 0 6rem;
    background: #060b18;
    overflow: hidden;
}

.starlink-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

#particlesCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Hero часть */
.sl-hero {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 4rem;
}

.sl-badge {
    display: inline-block;
    padding: 0.4rem 1.25rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 100px;
    color: #00d4ff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.sl-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.sl-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Цена + кнопки в одной строке */
.sl-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    max-width: 680px;
    margin: 0 auto;
}

.sl-price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sl-price-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.sl-price {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
}

.sl-price small {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0;
}

.sl-price-actions {
    display: flex;
    gap: 0.75rem;
}

.sl-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background: #00d4ff;
    color: #060b18;
    text-decoration: none;
    border-radius: 0.625rem;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.sl-btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.sl-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

.sl-btn-ghost:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Сетка метрик */
.sl-metrics {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.sl-metric-card {
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.sl-metric-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-4px);
}

.sl-metric-icon {
    color: #00d4ff;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.sl-metric-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.sl-metric-value span {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
}

.sl-metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.sl-metric-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
}

.sl-metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    border-radius: 3px;
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

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

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea20 0%, #764ba240 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.featured-service {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 2px solid #3b82f6;
    position: relative;
    grid-column: span 2;
}

.featured-service:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: bounce 2s infinite;
}

.starlink-icon {
    background: linear-gradient(135deg, #1e3a8a20 0%, #3b82f640 100%);
}

.starlink-icon svg {
    color: #3b82f6;
}

/* Portfolio Section */
.pf-section {
    position: relative;
    padding: 6rem 0;
    background: #0a0f1e;
    overflow: hidden;
}

.pf-bg-grid {
    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: 60px 60px;
    pointer-events: none;
}

.pf-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.pf-label {
    display: inline-block;
    padding: 0.35rem 1.1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    color: #a5b4fc;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.pf-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.pf-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
    max-width: 420px;
    margin: 0 auto;
}

/* Featured project */
.pf-featured {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 1.25rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.pf-featured:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.pf-featured-visual {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}

.pf-featured-gradient {
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
}

.pf-featured:hover .pf-featured-gradient {
    transform: scale(1.08);
}

.pf-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.75rem;
}

.pf-featured-type {
    display: inline-block;
    align-self: flex-start;
    padding: 0.3rem 0.9rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pf-featured-metrics {
    display: flex;
    gap: 2rem;
}

.pf-metric {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.pf-metric-val {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1;
}

.pf-metric-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.pf-featured-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pf-featured-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.pf-featured-head h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.pf-year {
    padding: 0.2rem 0.7rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.375rem;
    color: rgba(255,255,255,0.35);
    font-size: 0.75rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.pf-featured-info p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.pf-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.pf-tags span {
    padding: 0.25rem 0.65rem;
    background: rgba(99, 102, 241, 0.08);
    color: #a5b4fc;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.2s;
}

.pf-tags span:hover {
    background: rgba(99, 102, 241, 0.18);
}

/* Project cards grid */
.pf-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pf-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pf-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.25);
}

.pf-card-visual {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.pf-card-gradient {
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
}

.pf-card:hover .pf-card-gradient {
    transform: scale(1.08);
}

.pf-card-type {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.8rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pf-card-body {
    padding: 1.75rem;
}

.pf-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.pf-card-head h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.pf-card-body > p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pf-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.pf-card-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.pf-card-stat-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1;
}

.pf-card-stat-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Stats bar */
.pf-stats-bar {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem 2.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 1rem;
}

.pf-stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.pf-stats-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1;
}

.pf-stats-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.pf-stats-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.08);
}

/* Portfolio animations (CSS-only) */
@keyframes pf-rise {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.pf-animate {
    animation: pf-rise 0.7s ease both;
}

.pf-delay-1 { animation-delay: 0.15s; }
.pf-delay-2 { animation-delay: 0.3s; }
.pf-delay-3 { animation-delay: 0.45s; }

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.about-image {
    position: relative;
    height: 400px;
}

.team-illustration {
    position: relative;
    width: 100%;
    height: 100%;
}

.illustration-circle {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: var(--gradient-1);
    top: 0;
    right: 50px;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: var(--gradient-2);
    bottom: 50px;
    right: 0;
    animation-delay: 1s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    background: var(--gradient-3);
    top: 150px;
    left: 50px;
    animation-delay: 2s;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea20 0%, #764ba240 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

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

.contact-item p {
    color: var(--text-secondary);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

/* Animated Background */
.footer-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

/* Footer CTA */
.footer-cta {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 0;
    opacity: 0;
    transform: translateY(100px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-cta.visible {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
}

.cta-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-footer-primary,
.btn-footer-secondary {
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-footer-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-footer-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
}

.btn-footer-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-footer-secondary:hover {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

/* Main Footer */
.footer-main {
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

/* Company Info */
.footer-company {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1.05rem;
}

.footer-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-mini strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-mini span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Links */
.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Footer Contact */
.footer-contact h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

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

.contact-link svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

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

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

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
    100% {
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

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

@keyframes starfield {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100px);
    }
}

@keyframes satellite-move {
    0% {
        left: -5%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 105%;
        opacity: 0;
    }
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes marker-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
}

@keyframes coverage-expand {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .navbar .container {
        gap: 1rem;
    }

    .nav-wrapper {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem;
        gap: 2rem;
        z-index: 999;
    }

    .nav-wrapper.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1.5rem;
        justify-content: flex-start;
    }

    .nav-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }

    .language-switcher {
        width: 100%;
        justify-content: center;
    }

    .btn-starlink-nav {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
    }

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

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

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

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

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        display: none;
    }

    .title-line {
        font-size: 2.5rem;
    }

    .banner-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .banner-title-section {
        flex-direction: column;
        text-align: center;
    }

    .banner-title-section h2 {
        font-size: 2rem;
    }

    .banner-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        height: 300px;
    }

    .featured-service {
        grid-column: span 1;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        height: 300px;
    }

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

    /* Footer Responsive */
    .footer-cta {
        padding: 3rem 0;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .cta-text h3 {
        font-size: 1.5rem;
    }

    .cta-actions {
        width: 100%;
    }

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

    .footer-company {
        grid-column: 1 / -1;
    }

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

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    /* Starlink Responsive — Tablet */
    .starlink-section {
        padding: 5rem 0 4rem;
    }

    .sl-title {
        font-size: 2.5rem;
    }

    .sl-price-row {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .sl-price-actions {
        width: 100%;
        justify-content: center;
    }

    .sl-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    .pf-title {
        font-size: 2rem;
    }

    .pf-featured-info {
        padding: 1.5rem;
    }

    .pf-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .pf-card-stat {
        align-items: flex-start;
    }

    .title-line {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .starlink-banner {
        padding: 2rem 0;
        min-height: auto;
    }

    .banner-title-section h2 {
        font-size: 1.75rem;
    }

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

    .live-indicator {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .info-card {
        padding: 1rem;
    }

    .info-content h3 {
        font-size: 1.25rem;
    }

    .banner-cta {
        flex-direction: column;
    }

    .btn-starlink-primary,
    .btn-starlink-secondary {
        width: 100%;
        justify-content: center;
    }

    .map-placeholder {
        height: 250px;
    }

    .city-marker {
        transform: scale(0.8) translate(-50%, -50%);
    }

    .marker-label {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }

    .coverage-circle {
        width: 60px;
        height: 60px;
    }

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

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

    .pf-featured {
        grid-template-columns: 1fr;
    }

    .pf-featured-visual {
        min-height: 220px;
    }

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

    .pf-stats-bar {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .pf-stats-divider {
        display: none;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

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

    /* Starlink Responsive — Mobile */
    .starlink-section {
        padding: 4rem 0 3rem;
    }

    .sl-hero {
        margin-bottom: 2.5rem;
    }

    .sl-title {
        font-size: 2rem;
    }

    .sl-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .sl-price-row {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.5rem;
        text-align: center;
    }

    .sl-price {
        font-size: 2.25rem;
    }

    .sl-price-actions {
        flex-direction: column;
        width: 100%;
    }

    .sl-btn-primary,
    .sl-btn-ghost {
        width: 100%;
        justify-content: center;
    }

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

    .sl-metric-card {
        padding: 1.25rem;
    }

    .sl-metric-value {
        font-size: 1.35rem;
    }

    .sl-metric-label {
        font-size: 0.7rem;
    }

    /* Footer Mobile */
    .footer-cta {
        padding: 2rem 0;
    }

    .cta-content {
        padding: 1.5rem;
    }

    .cta-text h3 {
        font-size: 1.25rem;
    }

    .cta-text p {
        font-size: 0.95rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .btn-footer-primary,
    .btn-footer-secondary {
        width: 100%;
        text-align: center;
    }

    .footer-main {
        padding: 3rem 0;
    }

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

    .footer-logo {
        font-size: 1.75rem;
    }

    .footer-stats {
        gap: 1.5rem;
    }

    .stat-mini strong {
        font-size: 1.25rem;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1rem;
    }

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

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

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-bottom-links span {
        display: none;
    }
}

/* ==========================================
   WEB DEVELOPMENT PAGE STYLES
   ========================================== */

/* Breadcrumbs */
.breadcrumbs {
    background: var(--bg-secondary);
    padding: 1rem 0;
    margin-top: 80px;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.breadcrumbs a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.breadcrumbs li:last-child span {
    color: var(--text-primary);
    font-weight: 500;
}

/* Hero Section */
.webdev-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.webdev-hero .animated-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(99, 102, 241, 0.05) 0%,
        rgba(139, 92, 246, 0.05) 50%,
        rgba(236, 72, 153, 0.05) 100%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 40%;
    animation-delay: 4s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 20%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(5deg); }
    50% { transform: translateY(-60px) rotate(-5deg); }
    75% { transform: translateY(-30px) rotate(3deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn-animate {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-animate::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-animate:hover::before {
    width: 300px;
    height: 300px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
}

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

/* Website Types Section */
.website-types {
    padding: 6rem 0;
}

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

.type-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.type-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color), var(--shadow-md);
}

.type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.type-badge {
    display: inline-block;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.type-card.featured .type-badge {
    background: var(--primary-color);
    color: white;
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.type-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.type-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.type-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.type-features li::before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

.type-time {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Process Section */
.process {
    padding: 6rem 0;
}

.process-timeline {
    margin-top: 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.step-content {
    flex-grow: 1;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.step-deliverable {
    background: var(--bg-secondary);
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
}

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

.pricing-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-badge-popular {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
}

.pricing-header {
    padding: 2.5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, white 100%);
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, white 100%);
}

.pricing-badge {
    display: inline-block;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-card.featured .pricing-badge {
    background: var(--primary-color);
    color: white;
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-price {
    margin: 1.5rem 0;
}

.price-currency {
    font-size: 1rem;
    color: var(--text-secondary);
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0.25rem;
}

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

.pricing-features {
    list-style: none;
    padding: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    margin: 0 2rem 2rem;
    width: calc(100% - 4rem);
}

.pricing-notes {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 1rem;
    text-align: center;
}

.pricing-note-item {
    color: var(--text-secondary);
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

/* Technologies Section */
.technologies {
    padding: 6rem 0;
}

.tech-categories {
    margin-top: 3rem;
    display: grid;
    gap: 2.5rem;
}

.tech-category {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.tech-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-tag {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -250px;
    right: -250px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.benefit-icon {
    font-size: 1.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.cta-section .btn-secondary {
    background: white;
    color: var(--primary-color);
}

.cta-section .btn-secondary:hover {
    background: var(--bg-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .webdev-hero .hero-stats {
        gap: 2rem;
    }

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

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

    .type-card.featured {
        transform: scale(1);
    }

    .process-timeline::before {
        left: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .step-content {
        padding: 1.5rem;
    }

    .step-content:hover {
        transform: translateX(0);
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }
}

/* Animation Keyframes */
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in,
.fade-in-up,
.fade-in-right,
.slide-up {
    opacity: 0;
}

.fade-in.animated {
    animation: fade-in 0.8s ease forwards;
}

.fade-in-up.animated {
    animation: fade-in-up 0.8s ease forwards;
}

.fade-in-right.animated {
    animation: fade-in-right 0.8s ease forwards;
}

.slide-up.animated {
    animation: slide-up 0.8s ease forwards;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-dark {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.section-light {
    background: #fafbfc;
}

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

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Type Cards with Images */
.type-card {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.type-card.featured {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.type-image-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.type-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.type-card:hover .type-image {
    transform: scale(1.1);
}

.type-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.type-content {
    padding: 1.5rem;
}

.type-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.type-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.type-features {
    list-style: none;
    margin-bottom: 1.25rem;
}

.type-features li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.75rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.type-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.type-features li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
}

.type-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.type-time {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Process Timeline */
.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    position: relative;
}

.step-content {
    background: white;
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.step-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 0.5rem;
    font-size: 0.95rem;
}

.result-label {
    font-weight: 600;
    color: var(--primary-color);
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
}

.step-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-label {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--accent-color), #f43f5e);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}

.pricing-header {
    padding: 3rem 2.5rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.03) 0%, transparent 100%);
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

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

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

.price-currency {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.pricing-note {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    padding: 0 2.5rem 2rem;
}

.pricing-features li {
    position: relative;
    padding: 1rem 0 1rem 2rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--success-color), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-card .btn {
    margin: 0 2.5rem 2.5rem;
    width: calc(100% - 5rem);
}

.pricing-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    color: var(--success-color);
}

/* Technologies Section */
.tech-stack {
    display: grid;
    gap: 3rem;
    margin-top: 4rem;
}

.tech-category {
    background: white;
    padding: 3rem;
    border-radius: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.tech-category:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tech-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.tech-logos {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-logo:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
}

.tech-logo img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.tech-logo:hover img {
    filter: brightness(0) invert(1);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.cta-background {
    position: absolute;
    inset: 0;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1), transparent);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-pattern::before,
.cta-pattern::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float-blob 20s ease-in-out infinite;
}

.cta-pattern::before {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.cta-pattern::after {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    bottom: -80px;
    left: -80px;
    animation-delay: 3s;
}

@keyframes float-blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

/* Animated geometric shapes */
.cta-geometric-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.15;
}

.cta-shape {
    position: absolute;
    border: 2px solid white;
    animation: rotate-shape 30s linear infinite;
}

.cta-shape.circle-1 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.cta-shape.circle-2 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    bottom: 15%;
    right: 10%;
    animation-delay: 5s;
}

.cta-shape.square-1 {
    width: 120px;
    height: 120px;
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.cta-shape.triangle-1 {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid white;
    border-radius: 20px;
    bottom: 20%;
    left: 20%;
    animation-delay: 7s;
}

@keyframes rotate-shape {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.1;
    }
}

/* Particles effect */
.cta-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0.4;
    animation: particle-float linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 25%;
    animation-duration: 20s;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 40%;
    animation-duration: 18s;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 55%;
    animation-duration: 22s;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    left: 70%;
    animation-duration: 17s;
    animation-delay: 3s;
}

.particle:nth-child(6) {
    left: 85%;
    animation-duration: 19s;
    animation-delay: 5s;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Glowing lines effect */
.cta-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.glow-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: line-move 8s ease-in-out infinite;
}

.glow-line:nth-child(1) {
    width: 300px;
    top: 20%;
    left: -300px;
    animation-delay: 0s;
}

.glow-line:nth-child(2) {
    width: 400px;
    top: 50%;
    left: -400px;
    animation-delay: 3s;
}

.glow-line:nth-child(3) {
    width: 250px;
    top: 80%;
    left: -250px;
    animation-delay: 6s;
}

@keyframes line-move {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 300px));
        opacity: 0;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.cta-benefit svg {
    width: 24px;
    height: 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

.btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

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

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

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.btn-outline-dark:hover {
    background: var(--text-primary);
    color: white;
    border-color: var(--text-primary);
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

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

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }

    .step-icon {
        display: none;
    }
}

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

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

    .cta-title {
        font-size: 2rem;
    }

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

    .process-step {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .step-content {
        padding: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* ========== Animated Background Effects for Service Pages ========== */

/* --- Container --- */
.animated-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Process sections: enable absolute positioning for animated bg */
.wd-process,
.ma-process,
.se-process,
.ux-process,
.bt-process,
.ai-process,
.sp-process {
    position: relative;
    overflow: hidden;
}

/* Process content stays above animated bg */
.wd-process > .container,
.ma-process > .container,
.se-process > .container,
.ux-process > .container,
.bt-process > .container,
.ai-process > .container,
.sp-process > .container {
    position: relative;
    z-index: 1;
}

/* --- Effect 1: Floating Gradient Orbs --- */
.abg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.07;
    will-change: transform;
}

.abg-orb--1 { animation: abg-float-1 var(--abg-dur, 25s) ease-in-out var(--abg-del, 0s) infinite; }
.abg-orb--2 { animation: abg-float-2 var(--abg-dur, 28s) ease-in-out var(--abg-del, 0s) infinite; }
.abg-orb--3 { animation: abg-float-3 var(--abg-dur, 22s) ease-in-out var(--abg-del, 0s) infinite; }

.animated-bg--process .abg-orb {
    opacity: 0.05;
    filter: blur(100px);
}

@keyframes abg-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -50px) scale(1.12); }
    50% { transform: translate(-30px, -90px) scale(0.93); }
    75% { transform: translate(-50px, 30px) scale(1.08); }
}

@keyframes abg-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    30% { transform: translate(-80px, 60px) scale(1.15); }
    60% { transform: translate(50px, -70px) scale(0.88); }
}

@keyframes abg-float-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    20% { transform: translate(70px, 40px) scale(1.1); }
    40% { transform: translate(-40px, 80px) scale(0.92); }
    60% { transform: translate(-70px, -30px) scale(1.14); }
    80% { transform: translate(45px, -55px) scale(0.95); }
}

/* --- Effect 2: Animated Grid Overlay --- */
.abg-grid {
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-size: 60px 60px;
    animation: abg-grid-drift 90s linear infinite;
    opacity: 0.5;
}

.animated-bg--process .abg-grid {
    opacity: 0.3;
}

@keyframes abg-grid-drift {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(60px, 60px) rotate(2deg); }
}

/* --- Effect 3: Floating Particles --- */
.abg-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    will-change: transform, opacity;
    animation: abg-particle-rise var(--abg-dur, 18s) linear var(--abg-del, 0s) infinite;
}

@keyframes abg-particle-rise {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    8% { opacity: var(--abg-peak, 0.6); }
    85% { opacity: var(--abg-peak, 0.6); }
    100% { transform: translateY(-120vh) translateX(var(--abg-dx, 30px)); opacity: 0; }
}

/* --- Effect 4: Morphing Geometric Shapes --- */
.abg-shape {
    position: absolute;
    border: 1.5px solid;
    opacity: 0.07;
    will-change: transform, border-radius;
    animation: abg-morph var(--abg-dur, 35s) ease-in-out var(--abg-del, 0s) infinite;
}

.animated-bg--process .abg-shape {
    opacity: 0.04;
}

@keyframes abg-morph {
    0%, 100% { transform: rotate(0deg) scale(1); border-radius: 30% 70% 50% 50%; }
    25% { transform: rotate(90deg) scale(1.1); border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { transform: rotate(180deg) scale(0.95); border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { transform: rotate(270deg) scale(1.05); border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
    .abg-orb, .abg-grid, .abg-particle, .abg-shape {
        animation: none !important;
    }
    .abg-particle { opacity: 0.15; }
    .abg-orb { opacity: 0.04; }
}

/* --- Mobile Performance --- */
@media (max-width: 768px) {
    .abg-grid { display: none; }
    .abg-shape { display: none; }
    .abg-orb { filter: blur(60px); opacity: 0.05; }
}

@media (max-width: 480px) {
    .animated-bg { display: none; }
}

/* ========== Legal / Content Pages ========== */

.lp-hero {
    padding: 8rem 0 3rem;
    background: #0a0f1e;
    text-align: center;
}

.lp-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
}

.lp-hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.lp-content {
    padding: 4rem 0 6rem;
    background: #fff;
}

.lp-body {
    max-width: 780px;
    margin: 0 auto;
}

.lp-body h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f5;
}

.lp-body h2:first-child {
    margin-top: 0;
}

.lp-body p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.lp-body ul {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.lp-body ul li {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.4rem;
}

.lp-body a {
    color: #6366f1;
    text-decoration: none;
}

.lp-body a:hover {
    text-decoration: underline;
}

.lp-update {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #f5f5ff;
    border: 1px solid #e8e8f5;
    border-radius: 100px;
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .lp-hero { padding: 7rem 0 2rem; }
    .lp-hero-title { font-size: 2rem; }
    .lp-content { padding: 3rem 0 4rem; }
    .lp-body h2 { font-size: 1.2rem; }
}
