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

        :root {
            --primary: #0a0f0a;
            --secondary: #0d1a0d;
            --accent: #84cc16;
            --accent-light: #a3e635;
            --accent-dark: #65a30d;
            --success: #22c55e;
            --text: #e2e8f0;
            --text-light: #94a3b8;
            --text-muted: #64748b;
            --bg: #050805;
            --bg-alt: #0f140f;
            --bg-card: #111811;
            --border: #1a261a;
            --border-light: #223322;
        }

        html {
            scroll-behavior: smooth;
        }

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

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(5, 8, 5, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            line-height: 1;
            gap: 0;
        }

        .logo-top {
            display: flex;
            align-items: center;
            gap: 0.15rem;
            line-height: 1;
        }

        .logo-bracket {
            color: var(--accent);
            font-size: 1.6rem;
            font-weight: 900;
            line-height: 1;
        }

        .logo-inner {
            color: white;
            font-size: 1.3rem;
            font-weight: 900;
            line-height: 1;
            letter-spacing: 1px;
        }

        .logo-bottom {
            color: var(--accent);
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 3px;
            line-height: 1;
            margin-top: 1px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-light);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-phone {
            color: var(--accent);
            font-weight: 700;
            font-size: 0.9rem;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }

        /* Hero Section */
        .hero {
            padding: 10rem 2rem 5rem;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(132, 204, 22, 0.1);
            border: 1px solid var(--border-light);
            color: var(--accent);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .hero-badge::before {
            content: "⚡";
        }

        .hero-content h1 {
            font-size: 3.2rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1rem;
            color: white;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .hero-content h1 .line1 {
            color: var(--accent);
            display: block;
            font-size: 4rem;
        }

        .hero-content h1 .line2 {
            color: white;
            display: block;
            font-size: 2.8rem;
        }

        .hero-tagline {
            font-size: 1.1rem;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .hero-content p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            max-width: 500px;
        }

        .hero-cta-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

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

        .btn-primary:hover {
            background: var(--accent-light);
            border-color: var(--accent-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(132, 204, 22, 0.3);
        }

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

        .btn-outline:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .hero-phone {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .hero-phone strong {
            color: var(--accent);
            font-size: 1.1rem;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .developer-card {
            position: relative;
            width: 320px;
        }

        .developer-img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            border-radius: 16px;
            border: 2px solid var(--border-light);
        }

        .developer-badge {
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: var(--primary);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.9rem;
            white-space: nowrap;
            box-shadow: 0 10px 30px rgba(132, 204, 22, 0.3);
        }

        .floating-stat {
            position: absolute;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            padding: 1rem 1.25rem;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--accent);
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        }

        .stat-1 {
            top: 10%;
            left: -30px;
        }

        .stat-2 {
            bottom: 20%;
            right: -20px;
            color: var(--success);
        }

        /* Value Pillars */
        .pillars {
            background: var(--bg-alt);
            padding: 3rem 2rem;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .pillars-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .pillar {
            text-align: center;
            padding: 1.5rem;
        }

        .pillar-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }

        .pillar h4 {
            color: white;
            font-size: 0.95rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Stats Bar */
        .stats {
            padding: 4rem 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent);
        }

        .stat-item p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 0.25rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Services */
        .services {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: white;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

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

        .service-card {
            padding: 2.5rem;
            border: 1px solid var(--border);
            border-radius: 16px;
            transition: all 0.3s;
            background: var(--bg-card);
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-dark);
            box-shadow: 0 20px 60px rgba(132, 204, 22, 0.05);
        }

        .service-icon {
            width: 56px;
            height: 56px;
            background: rgba(132, 204, 22, 0.1);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: white;
        }

        .service-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Meet Developer */
        .developer {
            background: var(--bg-alt);
            padding: 6rem 2rem;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .developer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 4rem;
            align-items: center;
        }

        .developer-photo {
            width: 100%;
            border-radius: 16px;
            border: 2px solid var(--border-light);
        }

        .developer-content h2 {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.5rem;
        }

        .developer-content .role {
            color: var(--accent);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .developer-content p {
            color: var(--text-light);
            margin-bottom: 1rem;
            font-size: 1rem;
            line-height: 1.7;
        }

        .developer-content .location {
            color: var(--text-muted);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }

        /* Portfolio */
        .portfolio {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .portfolio-item {
            background: var(--bg-card);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: transform 0.3s;
        }

        .portfolio-item:hover {
            transform: translateY(-5px);
            border-color: var(--accent-dark);
        }

        .portfolio-img {
            height: 220px;
            background: linear-gradient(135deg, #1a3a1a 0%, #0d260d 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 3rem;
            border-bottom: 1px solid var(--border);
        }

        .portfolio-item:nth-child(2) .portfolio-img {
            background: linear-gradient(135deg, #2a1a3a 0%, #1a0d26 100%);
            color: #c084fc;
        }

        .portfolio-item:nth-child(3) .portfolio-img {
            background: linear-gradient(135deg, #1a2a3a 0%, #0d1a26 100%);
            color: #60a5fa;
        }

        .portfolio-info {
            padding: 1.5rem;
        }

        .portfolio-info h3 {
            margin-bottom: 0.5rem;
            color: white;
        }

        .portfolio-info p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .portfolio-tags {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .tag {
            background: var(--bg-alt);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--text-muted);
            border: 1px solid var(--border);
        }

        /* Process */
        .process {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--accent);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            margin: 0 auto 1.5rem;
        }

        .step h3 {
            margin-bottom: 0.75rem;
            color: white;
        }

        .step p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Why Choose */
        .why-choose {
            background: var(--bg-alt);
            padding: 6rem 2rem;
            border-top: 1px solid var(--border);
        }

        .why-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 3rem;
        }

        .comparison-table th {
            padding: 1.25rem;
            text-align: left;
            font-weight: 700;
            color: white;
            border-bottom: 2px solid var(--border-light);
            font-size: 1rem;
        }

        .comparison-table th:last-child {
            color: var(--accent);
        }

        .comparison-table td {
            padding: 1.25rem;
            border-bottom: 1px solid var(--border);
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .comparison-table td:last-child {
            color: var(--accent-light);
            font-weight: 600;
        }

        /* Pricing */
        .pricing {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .pricing-card {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 2rem;
            border: 2px solid var(--border);
            position: relative;
            transition: all 0.3s;
        }

        .pricing-card:hover {
            border-color: var(--border-light);
        }

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

        .featured-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: var(--primary);
            padding: 0.4rem 1.2rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .pricing-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: white;
        }

        .price {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent);
            margin: 1rem 0;
        }

        .price span {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .delivery-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(132, 204, 22, 0.1);
            color: var(--accent);
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .pricing-card ul {
            list-style: none;
            margin: 1rem 0;
        }

        .pricing-card li {
            padding: 0.4rem 0;
            color: var(--text-light);
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .pricing-card li::before {
            content: "✓";
            color: var(--accent);
            font-weight: 700;
        }

        .pricing-card li.not-included {
            color: var(--text-muted);
            text-decoration: line-through;
        }

        .pricing-card li.not-included::before {
            content: "✕";
            color: var(--text-muted);
        }

        /* FAQ */
        .faq {
            padding: 6rem 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
            padding: 1.5rem 0;
        }

        .faq-question {
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
        }

        .faq-answer {
            color: var(--text-light);
            margin-top: 1rem;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: var(--accent);
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, rgba(132,204,22,0.1) 0%, rgba(10,15,10,1) 100%);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            padding: 4rem 2rem;
            text-align: center;
        }

        .cta-banner h2 {
            font-size: 2rem;
            color: white;
            margin-bottom: 1rem;
        }

        .cta-banner p {
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        /* Contact */
        .contact {
            padding: 6rem 2rem;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-form {
            margin-top: 3rem;
            text-align: left;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-light);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
            background: var(--bg-alt);
            color: white;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent);
        }

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

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 4rem 2rem 2rem;
            border-top: 1px solid var(--border);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
        }

        .footer-brand h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-brand h3 span {
            color: var(--accent);
        }

        .footer-brand p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            max-width: 300px;
            font-size: 0.95rem;
        }

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

        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 700;
        }

        .social-links a:hover {
            background: var(--accent);
            color: var(--primary);
            border-color: var(--accent);
        }

        .footer-col h4 {
            margin-bottom: 1.5rem;
            font-size: 1rem;
            color: white;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 0.75rem;
        }

        .footer-col a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.9rem;
        }

        .footer-col a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            text-align: center;
        }

        .footer-tagline {
            color: var(--accent);
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .footer-bottom p {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25d366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: transform 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .pricing-card.featured {
                transform: none;
            }
        }

        @media (max-width: 968px) {
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
                padding-top: 8rem;
            }

            .hero-content p {
                margin: 0 auto 2rem;
            }

            .hero-cta-row {
                justify-content: center;
            }

            .hero-phone {
                justify-content: center;
            }

            .hero-visual {
                order: -1;
            }

            .developer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .developer-photo {
                max-width: 280px;
                margin: 0 auto;
            }

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

            .stats-container,
            .process-steps,
            .pillars-container {
                grid-template-columns: repeat(2, 1fr);
            }

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

        @media (max-width: 640px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            .hero-content h1 .line1 {
                font-size: 2.5rem;
            }

            .hero-content h1 .line2 {
                font-size: 1.8rem;
            }

            .stats-container,
            .process-steps,
            .pillars-container {
                grid-template-columns: 1fr;
            }

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

            .form-row {
                grid-template-columns: 1fr;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 0.75rem;
                font-size: 0.85rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand p {
                margin: 0 auto 1.5rem;
            }

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

/* ===== EXTRA STYLES ===== */

/* SEO: Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: var(--primary);
    padding: 8px 16px;
    z-index: 10000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-top: 6rem;
}
.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* Alert messages */
.alert {
    margin-bottom: 2rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
}
.alert-success {
    background: rgba(132,204,22,0.1);
    border: 1px solid var(--accent);
    color: var(--accent-light);
}
.alert-error {
    background: rgba(239,68,68,0.1);
    border: 1px solid #ef4444;
    color: #fca5a5;
}

/* ===== HAMBURGER MENU ===== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}
.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s;
    border-radius: 2px;
}
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== GOOGLE REVIEWS ===== */
.reviews-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.reviews-header h2 { color: white; font-size: 2.5rem; font-weight: 800; }
.gbp-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
}
.gbp-badge .stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: 2px; }
.gbp-badge .rating { color: white; font-weight: 700; }
.gbp-badge .count { color: var(--text-muted); font-size: 0.85rem; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s;
}
.review-card:hover {
    border-color: var(--accent-dark);
    transform: translateY(-3px);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1rem;
}
.review-meta h4 { color: white; font-size: 0.95rem; margin-bottom: 2px; }
.review-meta .review-stars { color: #fbbf24; font-size: 0.85rem; letter-spacing: 1px; }
.review-meta .review-date { color: var(--text-muted); font-size: 0.8rem; }
.review-text { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }
.review-text p { margin-bottom: 0.5rem; }
.review-tag {
    display: inline-block;
    margin-top: 0.75rem;
    background: rgba(132,204,22,0.1);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== INNER PAGES ===== */
.page-hero {
    padding: 8rem 2rem 4rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.page-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}
.page-hero p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.content-section h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
}
.content-section h3 {
    color: var(--accent-light);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
}
.content-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}
.content-section ul {
    color: var(--text-light);
    margin: 1rem 0 1rem 1.5rem;
    line-height: 1.8;
}
.content-section a { color: var(--accent); }
.content-section a:hover { text-decoration: underline; }
.content-section strong { color: var(--accent-light); }

.legal-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: block;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
.about-img {
    width: 100%;
    border-radius: 16px;
    border: 2px solid var(--border-light);
}
.about-content h2 { color: white; font-size: 2rem; margin-bottom: 1rem; }
.about-content p { color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; }
.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
.about-value {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.25rem;
    border-radius: 12px;
}
.about-value h4 { color: var(--accent); font-size: 0.9rem; margin-bottom: 0.5rem; }
.about-value p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

/* ===== TEAM SECTION ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}
.team-card:hover {
    border-color: var(--accent-dark);
    transform: translateY(-5px);
}
.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}
.team-card h3 { color: white; font-size: 1.1rem; margin-bottom: 0.25rem; }
.team-card .role { color: var(--accent); font-size: 0.9rem; font-weight: 600; }
.team-card p { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.75rem; }

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 968px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-values { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .reviews-header { flex-direction: column; text-align: center; }
    .page-hero h1 { font-size: 2rem; }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border);
        gap: 1rem;
    }
    .nav-links.active { display: flex; }
    .nav-links a { font-size: 1rem; padding: 0.5rem 0; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu { display: none !important; }
    .page-hero { padding-top: 6rem; }
}

/* ─── Portfolio Gallery ─── */
.portfolio-gallery {
    position: relative;
}

.gallery-main {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #0f172a;
    cursor: zoom-in;
}

.gallery-hero {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-main:hover .gallery-hero {
    transform: scale(1.05);
}

.gallery-expand {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    border: 1px solid rgba(132, 204, 22, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.gallery-expand:hover {
    background: var(--accent, #84cc16);
    color: #0f172a;
    border-color: var(--accent, #84cc16);
}

/* Thumbnails */
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 10px;
    background: #0f172a;
    border-top: 1px solid #1e293b;
}

.gallery-thumbs .thumb {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.gallery-thumbs .thumb:hover,
.gallery-thumbs .thumb.active {
    opacity: 1;
    border-color: var(--accent, #84cc16);
}

/* ─── Lightbox ─── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(12px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 400px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: 1rem;
    color: #94a3b8;
    font-size: 0.9rem;
    text-align: center;
}

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.8);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(15, 23, 42, 0.8);
    color: #fff;
    border: 1px solid #334155;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all 0.2s ease;
    z-index: 10;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent, #84cc16);
    color: #0f172a;
    border-color: var(--accent, #84cc16);
}

.lightbox-close {
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.1rem;
}

.lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Portfolio card */
.portfolio-item {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.portfolio-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.portfolio-info p {
    color: #94a3b8;
    margin: 0 0 1rem 0;
    line-height: 1.6;
    flex: 1;
}

/* Buttons */
.portfolio-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.portfolio-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-playstore {
    background: #1a73e8;
    color: #fff;
    border: 1px solid #1a73e8;
}

.btn-playstore:hover {
    background: #1557b0;
}

.btn-apk {
    background: transparent;
    color: var(--accent, #84cc16);
    border: 1px solid var(--accent, #84cc16);
}

.btn-apk:hover {
    background: var(--accent, #84cc16);
    color: #0f172a;
}

@media (max-width: 640px) {
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
    .gallery-expand { font-size: 0.75rem; padding: 0.4rem 0.8rem; }
}