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

        :root {
            --primary: #0f172a;
            --accent: #3b82f6;
            --text: #1e293b;
            --text-light: #64748b;
            --bg: #ffffff;
            --bg-alt: #f8fafc;
            --border: #e2e8f0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        nav .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }.logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-image {
            width: 40px;
            height: 40px;
            border-radius: 8px;
        }
        nav ul {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        nav a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

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

        section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 6rem;
            background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
        }

        .hero-content {
            max-width: 800px;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--primary);
            line-height: 1.2;
        }

        .hero .highlight {
            color: var(--accent);
        }

        .hero p {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
        }
        .satisfaction-btn {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.satisfaction-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 1.8rem;
}


        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--accent);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1.05rem;
        }

        .cta-button:hover {
            background: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
        }

        .cta-secondary {
            background: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
            margin-left: 1rem;
        }

        .cta-secondary:hover {
            background: var(--accent);
            color: white;
        }

        h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-align: center;
            color: var(--primary);
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            font-size: 1.1rem;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .project-card {
            background: var(--bg);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            border: 1px solid var(--border);
        }

        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

        .project-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
        }

        .project-card:nth-child(2) .project-image {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .project-card:nth-child(3) .project-image {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .project-card:nth-child(4) .project-image {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        .project-card:nth-child(5) .project-image {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        .project-card:nth-child(6) .project-image {
            background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
        }

        .project-info {
            padding: 1.8rem;
        }

        .project-info h3 {
            font-size: 1.4rem;
            margin-bottom: 0.7rem;
            color: var(--primary);
        }

        .project-info p {
            color: var(--text-light);
            margin-bottom: 1.2rem;
            font-size: 0.95rem;
        }

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

        .tag {
            padding: 0.3rem 0.9rem;
            background: var(--bg-alt);
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--accent);
            border: 1px solid var(--border);
            font-weight: 500;
        }

        #pricing {
            background: var(--bg-alt);
            padding: 5rem 2rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
            border-color: var(--accent);
        }

        .pricing-card.featured {
            border-color: var(--accent);
            border-width: 3px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(147, 197, 253, 0.05) 100%);
        }
        .contact-subtext {
    color: var(--text-light);
    margin-bottom: 2rem;
}


        .featured-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: white;
            padding: 0.4rem 1.5rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .pricing-header {
            text-align: center;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid var(--border);
            margin-bottom: 1.5rem;
        }

        .pricing-card h3 {
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .package-type {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

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

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

        .features {
            list-style: none;
            margin: 1.5rem 0;
            flex-grow: 1;
        }

        .features li {
            padding: 1rem 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            font-size: 0.95rem;
        }

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

        .feature-label {
            font-weight: 600;
            color: var(--primary);
            min-width: 110px;
        }

        .feature-value {
            color: var(--text-light);
            flex: 1;
        }

        .inquiry-button {
            width: 100%;
            padding: 1rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1rem;
            margin-top: 1.5rem;
        }

        .inquiry-button:hover {
            background: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
        }

        .featured .inquiry-button {
            background: var(--accent);
        }

        .featured .inquiry-button:hover {
            background: #2563eb;
        }

        .contact-section {
            background: var(--bg);
            border-radius: 16px;
            padding: 4rem 2rem;
            text-align: center;
            max-width: 700px;
            margin: 3rem auto 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .contact-form {
            margin: 2rem auto 0;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        input, textarea, select {
            padding: 1rem;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }

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

        textarea {
            min-height: 130px;
            resize: vertical;
        }

        footer {
            text-align: center;
            padding: 3rem 2rem;
            color: var(--text-light);
            background: var(--bg-alt);
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }

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

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

            .hero p {
                font-size: 1.1rem;
            }

            nav ul {
                gap: 1.5rem;
            }

            nav .container {
                padding: 1rem;
            }

            section {
                padding: 3rem 1.5rem;
            }

            .cta-secondary {
                margin-left: 0;
                margin-top: 1rem;
            }

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

            h2 {
                font-size: 2rem;
            }

            .price {
                font-size: 2.3rem;
            }

            .modal-content {
                margin: 10% 1rem;
                padding: 2rem 1.5rem;
            }

            .modal h3 {
                font-size: 1.5rem;
            }

            .feature-label {
                min-width: 90px;
                font-size: 0.9rem;
            }
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
            overflow-y: auto;
        }

        .modal-content {
            background: var(--bg);
            margin: 5% auto;
            padding: 2.5rem;
            border-radius: 16px;
            max-width: 550px;
            width: calc(100% - 2rem);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            animation: slideDown 0.3s ease;
        }

        .modal .contact-form {
            margin-top: 1.5rem;
        }

        .modal .contact-form input,
        .modal .contact-form textarea,
        .modal .contact-form button {
            width: 100%;
            box-sizing: border-box;
        }

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

        .close {
            color: var(--text-light);
            float: right;
            font-size: 2rem;
            font-weight: 700;
            cursor: pointer;
            line-height: 1;
        }

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

        .modal h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
