:root {
      --primary: #8b5cf6;
      --primary-dark: #6366f1;
      --bg-dark: #0b0f19;
      --bg-card: #111827;
      --text-white: #ffffff;
      --text-gray: #9ca3af;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg-dark);
      color: var(--text-white);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--bg-dark);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 4px;
    }

    /* Gradient Text */
    .gradient-text {
      background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #a855f7 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Glass Effect */
    .glass {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Grid Pattern */
    .grid-pattern {
      background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
      background-size: 50px 50px;
    }

    /* Blob Animation */
    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.4;
      pointer-events: none;
      animation: pulse-glow 4s ease-in-out infinite;
    }

    @keyframes pulse-glow {
      0%, 100% { opacity: 0.4; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1.1); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    /* Button Styles */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      background: linear-gradient(135deg, #8b5cf6, #6366f1);
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      background: rgba(255, 255, 255, 0.05);
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.1);
      cursor: pointer;
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    /* Card Hover */
    .card-hover {
      transition: all 0.3s ease;
    }

    .card-hover:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    }

    /* Navigation */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 20px 50px;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(11, 15, 25, 0.9);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      padding: 15px 50px;
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #39383d, #2d2d34);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-text {
      font-size: 22px;
      font-weight: 700;
      color: white;
    }

    .nav-links {
      display: flex;
      gap: 30px;
      list-style: none;
    }

    .nav-links a {
      color: var(--text-gray);
      text-decoration: none;
      font-size: 15px;
      transition: color 0.3s ease;
    }

    .nav-links a:hover {
      color: white;
    }

    .nav-cta {
      padding: 10px 24px;
      background: linear-gradient(135deg, #8b5cf6, #6366f1);
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
    }

    .site-notice {
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: #fff;
  font-weight: 500;
  position: fixed;
  letter-spacing: 0.5px;
  opacity: 20%;
}

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: 120px 20px 80px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .hero-blob-1 {
      width: 500px;
      height: 500px;
      background: rgba(139, 92, 246, 0.3);
      top: -100px;
      left: -200px;
    }

    .hero-blob-2 {
      width: 400px;
      height: 400px;
      background: rgba(99, 102, 241, 0.3);
      bottom: -100px;
      right: -150px;
      animation-delay: 2s;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 900px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50px;
      margin-bottom: 30px;
    }

    .hero-badge span {
      font-size: 14px;
      color: var(--text-gray);
    }

    .hero h1 {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 1.2rem;
      color: var(--text-gray);
      max-width: 600px;
      margin: 0 auto 40px;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 60px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      margin-top: 60px;
    }

    .stat-item h3 {
      font-size: 2.5rem;
      font-weight: 700;
      background: linear-gradient(135deg, #8b5cf6, #6366f1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .stat-item p {
      font-size: 14px;
      color: var(--text-gray);
      margin-top: 5px;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      animation: bounce 2s infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(10px); }
    }

    /* Section Styles */
    section {
      padding: 100px 20px;
      position: relative;
    }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
    }

    .section-badge {
      display: inline-block;
      padding: 8px 16px;
      background: rgba(139, 92, 246, 0.1);
      border: 1px solid rgba(139, 92, 246, 0.2);
      border-radius: 50px;
      color: #a78bfa;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 20px;
    }

    .section-header h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      margin-bottom: 15px;
    }

    .section-header p {
      color: var(--text-gray);
      font-size: 1.1rem;
    }

    /* Services Section */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .service-card {
      padding: 35px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      transition: all 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-8px);
      border-color: rgba(139, 92, 246, 0.3);
      box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
    }

    .service-icon {
      width: 60px;
      height: 60px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .service-card h3 {
      font-size: 1.3rem;
      margin-bottom: 12px;
    }

    .service-card p {
      color: var(--text-gray);
      font-size: 14px;
      line-height: 1.7;
    }

    /* Why Choose Us */
    .why-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      max-width: 1400px;
      margin: 0 auto;
      align-items: center;
    }

    .why-left h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 20px;
    }

    .why-left > p {
      color: var(--text-gray);
      font-size: 1.1rem;
      margin-bottom: 30px;
    }

    .feature-list {
      list-style: none;
    }

    .feature-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 15px;
      color: var(--text-gray);
    }

    .feature-list i {
      color: #8b5cf6;
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .why-card {
      padding: 25px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 15px;
      position: relative;
    }

    .why-card .badge {
      position: absolute;
      top: 15px;
      right: 15px;
      padding: 4px 10px;
      background: rgba(139, 92, 246, 0.15);
      color: #a78bfa;
      font-size: 11px;
      border-radius: 20px;
    }

    .why-card i {
      color: #8b5cf6;
      margin-bottom: 15px;
    }

    .why-card h4 {
      font-size: 1.1rem;
      margin-bottom: 8px;
    }

    .why-card p {
      color: var(--text-gray);
      font-size: 13px;
    }

    /* Projects Section */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .project-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .project-card:hover {
      transform: translateY(-8px);
      border-color: rgba(139, 92, 246, 0.3);
    }

    .project-image {
      height: 220px;
      overflow: hidden;
      position: relative;
    }

    .project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .project-card:hover .project-image img {
      transform: scale(1.1);
    }

    .project-category {
      position: absolute;
      top: 15px;
      left: 15px;
      padding: 6px 14px;
      background: rgba(139, 92, 246, 0.9);
      color: white;
      font-size: 12px;
      border-radius: 20px;
    }

    .project-content {
      padding: 25px;
    }

    .project-content h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
    }

    .project-content > p {
      color: var(--text-gray);
      font-size: 14px;
      margin-bottom: 15px;
    }

    .tech-stack {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

    .tech-stack span {
      padding: 5px 12px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      font-size: 12px;
      color: var(--text-gray);
    }

    .project-review {
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stars {
      display: flex;
      gap: 4px;
      margin-bottom: 8px;
    }

    .stars i {
      color: #fbbf24;
      fill: #fbbf24;
      width: 16px;
      height: 16px;
    }

    .project-review p {
      color: var(--text-gray);
      font-size: 14px;
      font-style: italic;
    }

    .project-review .client {
      color: #a78bfa;
      font-size: 12px;
      margin-top: 5px;
    }

    /* Team Section */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .team-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .team-card:hover {
      transform: translateY(-8px);
      border-color: rgba(139, 92, 246, 0.3);
    }

    .team-image {
      height: 280px;
      overflow: hidden;
      position: relative;
    }

    .team-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .team-card:hover .team-image img {
      transform: scale(1.1);
    }

    .team-social {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .team-card:hover .team-social {
      opacity: 1;
    }

    .team-social a {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: all 0.3s ease;
    }

    .team-social a:hover {
      background: #8b5cf6;
    }

    .team-info {
      padding: 25px;
    }

    .team-info .header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 10px;
    }

    .team-info h3 {
      font-size: 1.2rem;
    }

    .team-info .role {
      color: #a78bfa;
      font-size: 14px;
    }

    .team-info .specialty {
      padding: 4px 10px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      font-size: 11px;
      color: var(--text-gray);
    }

    .team-info .bio {
      color: var(--text-gray);
      font-size: 14px;
      margin-top: 10px;
    }

    /* Process Section */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 50px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
    }

    .process-card {
      padding: 30px 20px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .process-number {
      width: 45px;
      height: 45px;
      background: linear-gradient(135deg, #8b5cf6, #6366f1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      margin: -52px auto 20px;
      position: relative;
      z-index: 2;
    }

    .process-card i {
      color: #8b5cf6;
      margin-bottom: 15px;
    }

    .process-card h4 {
      font-size: 1.1rem;
      margin-bottom: 10px;
    }

    .process-card p {
      color: var(--text-gray);
      font-size: 13px;
      margin-bottom: 15px;
    }

    .process-duration {
      display: inline-block;
      padding: 5px 12px;
      background: rgba(139, 92, 246, 0.1);
      color: #a78bfa;
      font-size: 12px;
      border-radius: 20px;
    }

    /* Testimonials */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 25px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .testimonial-card {
      padding: 35px;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(99, 102, 241, 0.03));
      border: 1px solid rgba(139, 92, 246, 0.15);
      border-radius: 20px;
      position: relative;
    }

    .quote-icon {
      position: absolute;
      top: 20px;
      right: 20px;
      opacity: 0.2;
    }

    .testimonial-card .stars {
      margin-bottom: 15px;
    }

    .testimonial-card > p {
      color: var(--text-gray);
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 25px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .testimonial-author img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(139, 92, 246, 0.3);
    }

    .testimonial-author h4 {
      font-size: 1rem;
    }

    .testimonial-author .role {
      color: #a78bfa;
      font-size: 13px;
    }

    .testimonial-author .company {
      color: var(--text-gray);
      font-size: 12px;
    }

    /* Contact Section */
    .contact-content {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 40px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .contact-card {
      padding: 25px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 15px;
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .contact-card i {
      color: #8b5cf6;
      flex-shrink: 0;
    }

    .contact-card h4 {
      font-size: 1rem;
      margin-bottom: 5px;
    }

    .contact-card .value {
      color: #a78bfa;
      font-weight: 500;
    }

    .contact-card .desc {
      color: var(--text-gray);
      font-size: 13px;
    }

    .whatsapp-card {
      padding: 25px;
      background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
      border: 1px solid rgba(34, 197, 94, 0.3);
      border-radius: 15px;
    }

    .whatsapp-card i {
      color: #22c55e;
    }

    .whatsapp-btn {
      display: block;
      width: 100%;
      padding: 14px;
      background: #22c55e;
      color: white;
      text-align: center;
      text-decoration: none;
      border-radius: 10px;
      font-weight: 600;
      margin-top: 15px;
      transition: all 0.3s ease;
    }

    .whatsapp-btn:hover {
      background: #16a34a;
    }

    .contact-form {
      padding: 40px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
    }

    .contact-form h3 {
      font-size: 1.5rem;
      margin-bottom: 25px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      color: var(--text-gray);
      font-size: 14px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 14px 18px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      color: white;
      font-size: 15px;
      transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #8b5cf6;
      box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #6b7280;
    }

    .form-group select option {
      background: #0b0f19;
    }

    /* Footer */
    footer {
      padding: 80px 20px 30px;
      background: linear-gradient(to top, #050811, #0b0f19);
      position: relative;
    }

    .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }

    .footer-brand p {
      color: var(--text-gray);
      margin: 20px 0;
      max-width: 300px;
    }

    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-contact div {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-gray);
      font-size: 14px;
    }

    .footer-contact i {
      color: #8b5cf6;
    }

    .footer-links h4 {
      font-size: 1.1rem;
      margin-bottom: 20px;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: var(--text-gray);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: #a78bfa;
    }

    .newsletter {
      padding: 30px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      margin-bottom: 30px;
    }

    .newsletter-content {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .newsletter-form {
      display: flex;
      gap: 10px;
    }

    .newsletter-form input {
      width: 280px;
      padding: 14px 18px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      color: white;
      font-size: 14px;
    }

    .newsletter-form button {
      padding: 14px 28px;
      background: linear-gradient(135deg, #8b5cf6, #6366f1);
      color: white;
      border: none;
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .newsletter-form button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    }

    .footer-bottom {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-bottom p {
      color: var(--text-gray);
      font-size: 14px;
    }

    .social-links {
      display: flex;
      gap: 12px;
    }

    .social-links a {
      width: 42px;
      height: 42px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-gray);
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      background: rgba(139, 92, 246, 0.2);
      color: white;
    }

    .back-to-top {
      width: 45px;
      height: 45px;
      background: rgba(139, 92, 246, 0.2);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #a78bfa;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .back-to-top:hover {
      background: #8b5cf6;
      color: white;
    }

    /* Mobile Responsive */
    @media (max-width: 1024px) {
      .navbar {
        padding: 15px 20px;
      }

      .nav-links {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }

      .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }

      .why-content {
        grid-template-columns: 1fr;
      }

      .process-steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-steps::before {
        display: none;
      }

      .contact-content {
        grid-template-columns: 1fr;
      }

      .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .projects-grid,
      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .process-steps {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .footer-content {
        grid-template-columns: 1fr;
      }

      .newsletter-content {
        flex-direction: column;
        text-align: center;
      }

      .newsletter-form {
        flex-direction: column;
        width: 100%;
      }

      .newsletter-form input {
        width: 100%;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }
    }

    /* Animations */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }