
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

  :root {
    --green: #10b981;
    --green-dark: #059669;
    --green-light: #d1fae5;
    --navy: #0f172a;
    --navy-light: #1e293b;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --radius: 12px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--gray-800);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
  }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    min-height: 48px;
    user-select: none;
    -webkit-user-select: none;
  }
  .btn:active { transform: scale(0.98); }
  .btn-primary {
    background: var(--green);
    color: white;
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
  }
  .btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16,185,129,0.4);
  }
  .btn-primary:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(16,185,129,0.3);
  }
  .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
  }
  .btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
  }
  .btn-outline:active {
    transform: scale(0.98);
  }
  .btn-white {
    background: white;
    color: var(--navy);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }
  .btn-white:active {
    transform: scale(0.98);
  }

  /* TOP BAR */
  .topbar {
    background: var(--navy);
    color: var(--gray-400);
    padding: 8px 0;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .topbar a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .topbar a:hover { color: white; }
  .topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
  .topbar-right { display: flex; gap: 16px; }
  .topbar span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  /* NAV */
  nav {
    background: white;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }
  nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
  }
  .nav-links { display: flex; gap: 8px; align-items: center; }
  .nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.2s;
  }
  .nav-links a:hover { color: var(--green); background: var(--gray-50); }
  .nav-links .dropdown { position: relative; }
  .nav-links .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 240px;
    z-index: 100;
  }
  .nav-links .dropdown:hover .dropdown-content { display: block; }
  .dropdown-content a { display: block; padding: 10px 16px; border-radius: 8px; }
  .dropdown-content a:hover { background: var(--green-light); color: var(--green-dark); }
  .nav-cta {
    background: var(--green) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
  }
  .nav-cta:hover { background: var(--green-dark) !important; }

  /* MOBILE MENU */
  .mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy);
    padding: 8px;
    transition: color 0.2s;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .mobile-toggle:active { transform: scale(0.95); }
  
.mobile-toggle{-webkit-appearance:none;appearance:none;border:none;background:transparent;padding:0;margin:0;}
@media (max-width: 968px) {
    .mobile-toggle {
      display: flex;
    }
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      padding: 16px;
      box-shadow: var(--shadow-lg);
      gap: 4px;
      border-radius: 0 0 8px 8px;
      z-index: 999;
    }
    .nav-links.active {
      display: flex;
      animation: slideDown 0.3s ease-out;
    }
    .nav-links.nav-open { display: flex !important; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 16px; box-shadow: var(--shadow-lg); gap: 4px; border-radius: 0 0 8px 8px; z-index: 999; animation: slideDown 0.3s ease-out; }
    .mobile-toggle { cursor: pointer; -webkit-tap-highlight-color: rgba(0,0,0,0.1); user-select: none; -webkit-user-select: none; }
    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .nav-links .dropdown-content {
      position: static;
      box-shadow: none;
      padding-left: 16px;
      display: none;
      animation: slideDown 0.2s ease-out;
    }
    .nav-links .dropdown:hover .dropdown-content,
    .nav-links .dropdown.active .dropdown-content {
      display: block;
    }
  }

  /* HERO */
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a4a 50%, #0d4a3a 100%);
    color: white;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80') center/cover;
    opacity: 0.12;
  }
  .hero .container { display: flex; gap: 60px; align-items: center; position: relative; z-index: 2; }
  .hero-content { flex: 1; }
  .hero-visual { flex: 0.8; }
  .hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #6ee7b7;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .hero h1 .highlight { color: var(--green); }
  .hero p {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 540px;
    margin-bottom: 32px;
    line-height: 1.7;
  }
  .hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
  .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .hero-stat .num { font-size: 2rem; font-weight: 800; color: var(--green); }
  .hero-stat .label { font-size: 0.82rem; color: var(--gray-400); }

  .hero-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 32px;
  }
  .hero-card-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .hero-card-item:last-child { border-bottom: none; }
  .hero-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(16,185,129,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
  }
  .hero-card-text h2 { font-size: 0.95rem; font-weight: 600; }
  .hero-card-text p { font-size: 0.82rem; color: var(--gray-400); margin: 0; }

  /* CLIENTS CAROUSEL */
  .clients-section {
    padding: 48px 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
  }
  .clients-section .section-tag { display: block; text-align: center; margin-bottom: 24px; }
  .carousel-track {
    display: flex;
    gap: 32px;
    animation: scrollClients 40s linear infinite;
    width: max-content;
  }
  .carousel-track:hover { animation-play-state: paused; }
  .client-logo {
    flex-shrink: 0;
    padding: 14px 28px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gray-600);
    white-space: nowrap;
    transition: all 0.3s;
  }
  .client-logo:hover { border-color: var(--green); color: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
  @keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* SERVICES */
  .services { padding: 100px 0; }
  .section-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--green-light);
    color: var(--green-dark);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }
  .section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
  }
  .section-header p {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
  }
  .service-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
    overflow: hidden;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
  }
  .service-card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .service-card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(transparent, white);
  }
  .service-card-body { padding: 24px 28px 28px; }
  .service-card-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
  .service-card-body h3 .sicon { font-size: 1.4rem; }
  .service-card-body p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 14px; line-height: 1.6; }
  .service-features { list-style: none; margin-bottom: 16px; }
  .service-features li {
    font-size: 0.84rem;
    color: var(--gray-600);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .service-features li::before { content: '\2713'; color: var(--green); font-weight: 700; }
  .service-link {
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  /* IMAGE BANNER */
  .image-banner {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }
  .image-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.8), rgba(13,74,58,0.8));
  }
  .image-banner .container { position: relative; z-index: 2; }
  .image-banner h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 16px; }
  .image-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 28px; }

  /* WHY US */
  .why-us {
    padding: 100px 0;
    background: var(--gray-50);
  }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .why-features { display: grid; gap: 24px; }
  .why-feature { display: flex; gap: 16px; }
  .why-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
  }
  .why-feature h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
  .why-feature p { font-size: 0.88rem; color: var(--gray-500); }

  .why-image {
    border-radius: 20px;
    overflow: hidden;
    height: 480px;
    position: relative;
  }
  .why-image img { width: 100%; height: 100%; object-fit: cover; }
  .why-image-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px;
    background: linear-gradient(transparent, rgba(15,23,42,0.9));
    color: white;
  }
  .counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 12px;
  }
  .counter-item { text-align: center; }
  .counter-item .num { font-size: 1.6rem; font-weight: 800; color: var(--green); }
  .counter-item .label { font-size: 0.72rem; color: var(--gray-400); }

  /* TESTIMONIALS CAROUSEL */
  .testimonials { padding: 100px 0; overflow: hidden; }
  .testimonial-track-wrapper { overflow: hidden; margin: 0 -24px; padding: 0 24px; }
  .testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: grab;
    will-change: transform;
  }
  .testimonial-track.grabbing {
    transition: none;
    cursor: grabbing;
  }
  .testimonial-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
    min-width: 280px;
    max-width: 420px;
    flex-shrink: 0;
  }
  .stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; }
  .testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
  }
  .testimonial-author { display: flex; gap: 12px; align-items: center; }
  .testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--green-dark);
    font-size: 0.9rem;
  }
  .testimonial-info .name { font-weight: 600; font-size: 0.9rem; }
  .testimonial-info .role { font-size: 0.8rem; color: var(--gray-400); }
  .testimonial-controls { display: flex; gap: 12px; justify-content: center; margin-top: 32px; }
  .testimonial-controls button {
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gray-200);
    background: white; cursor: pointer; font-size: 1.1rem; transition: all 0.2s; color: var(--gray-600);
  }
  .testimonial-controls button:hover { border-color: var(--green); color: var(--green); }
  .testimonial-dots { display: flex; gap: 8px; justify-content: center; margin-top: 20px; }
  .testimonial-dots .dot {
    width: 10px; height: 10px; border-radius: 50%; background: var(--gray-200); cursor: pointer; transition: all 0.3s;
  }
  .testimonial-dots .dot.active { background: var(--green); width: 28px; border-radius: 5px; }

  /* CTA */
  .cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #0d3a2a 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80') center/cover;
    opacity: 0.08;
  }
  .cta-section h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 16px; position: relative; }
  .cta-section p { font-size: 1.1rem; color: #94a3b8; max-width: 600px; margin: 0 auto 36px; position: relative; }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

  /* CONTACT */
  .contact { padding: 100px 0; background: var(--gray-50); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
  }
  .contact-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
  .contact-info > p { color: var(--gray-500); margin-bottom: 32px; }
  .contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .contact-item h3 { font-size: 0.9rem; font-weight: 600; }
  .contact-item p { font-size: 0.88rem; color: var(--gray-500); }

  .contact-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
  }
  .contact-form h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; color: var(--gray-600); }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.92rem;
    font-family: inherit;
    transition: border 0.2s, background 0.2s;
    background: var(--gray-50);
    -webkit-appearance: none;
    appearance: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    background: white;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
  }
  .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23475569' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
  }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-submit { width: 100%; padding: 16px; font-size: 1rem; min-height: 48px; }

  /* FOOTER */
  footer {
    background: var(--navy);
    color: var(--gray-400);
    padding: 60px 0 30px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-brand .logo { color: white; margin-bottom: 12px; }
  .footer-brand p { font-size: 0.88rem; line-height: 1.6; }
  footer h3 { color: white; font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: 8px; }
  footer ul a { color: var(--gray-400); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
  footer ul a:hover { color: var(--green); }
  .footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
  }
  .footer-legal a { color: var(--gray-400); text-decoration: none; margin-left: 20px; }
  .footer-legal a:hover { color: white; }

  /* BLOG CARDS GLOBAL STYLES */
  .blog-card {
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
  }
  .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
  }
  .blog-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
  }
  .blog-card-content {
    padding: 24px;
  }
  .blog-card-tag {
    font-size: 0.78rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .blog-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
  }
  .blog-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
  }

  /* WHATSAPP */
  .whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
  }
  .whatsapp-btn:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  }
  .whatsapp-btn:active {
    transform: scale(0.95);
  }

  /* RESPONSIVE - TABLET (768px to 1024px) */
  @media (max-width: 1024px) and (min-width: 769px) {
    .container { padding: 0 20px; }
    .topbar { font-size: 0.75rem; }
    .topbar-left { gap: 16px; }
    .hero .container { flex-direction: column; gap: 40px; }
    .hero { padding: 80px 0 100px; }
    .hero h1 { font-size: 2.2rem; line-height: 1.2; }
    .hero p { font-size: 1rem; max-width: 100%; }
    .hero-buttons { width: 100%; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 20px; padding-top: 20px; }
    .hero-visual { display: block; width: 100%; }
    .hero-card { padding: 24px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .why-image { height: 300px; }
    .why-features { gap: 16px; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-form { padding: 32px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .testimonial-card { min-width: 90vw; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .image-banner { height: 300px; background-attachment: scroll; }
    .image-banner h2 { font-size: 1.8rem; line-height: 1.2; }
    .image-banner p { font-size: 0.95rem; }
    .cta-section h2 { font-size: 1.8rem; line-height: 1.2; }
    .cta-section p { font-size: 0.95rem; }
    .section-header h2 { font-size: 1.8rem; }
    .whatsapp-btn { bottom: 20px; right: 20px; width: 56px; height: 56px; font-size: 1.6rem; }
  }

  /* RESPONSIVE - MOBILE (320px to 768px) */
  @media (max-width: 768px) {
    * { -webkit-tap-highlight-color: rgba(16,185,129,0.1); }

    .container { padding: 0 16px; }
    html { font-size: 14px; }

    /* TOPBAR */
    .topbar { padding: 4px 0; font-size: 0.65rem; }
    .topbar .container { flex-direction: row; flex-wrap: wrap; gap: 4px; justify-content: center; }
    .topbar-left { flex-direction: row; flex-wrap: wrap; gap: 6px 12px; justify-content: center; }
    .topbar-right { gap: 8px; }
    .topbar span { font-size: 0.65rem; }

    /* NAVIGATION */
    nav { padding: 12px 0; }
    .logo { font-size: 1.3rem; gap: 6px; }
    .logo-icon { width: 32px; height: 32px; font-size: 1rem; }
    .nav-links {
      width: 100%;
      left: 0;
      right: 0;
      margin-top: 4px;
      padding: 12px;
      border-radius: 8px;
      max-height: calc(100vh - 80px);
      overflow-y: auto;
    }
    .nav-links a {
      padding: 12px 16px;
      font-size: 0.9rem;
      border-radius: 6px;
    }
    .nav-links .dropdown-content {
      position: static;
      box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
      padding: 8px;
      padding-left: 24px;
      border-radius: 0;
      background: var(--gray-50);
      margin-top: 4px;
    }
    .dropdown-content a { padding: 8px 12px; font-size: 0.85rem; }

    /* HERO SECTION */
    .hero { padding: 60px 0 80px; }
    .hero .container { flex-direction: column; gap: 24px; position: relative; z-index: 2; }
    .hero-content { width: 100%; }
    .hero-badge {
      font-size: 0.75rem;
      padding: 5px 12px;
      margin-bottom: 16px;
    }
    .hero h1 {
      font-size: 1.8rem;
      line-height: 1.15;
      margin-bottom: 16px;
      font-weight: 800;
    }
    .hero p {
      font-size: 0.9rem;
      max-width: 100%;
      margin-bottom: 24px;
      line-height: 1.6;
    }
    .hero-buttons {
      flex-direction: column;
      gap: 12px;
    }
    .hero-buttons .btn {
      width: 100%;
      padding: 14px 20px;
      font-size: 0.9rem;
      justify-content: center;
    }
    .hero-stats {
      flex-direction: column;
      gap: 16px;
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .hero-stat .num { font-size: 1.6rem; }
    .hero-stat .label { font-size: 0.75rem; }
    .hero-visual { display: none !important; }

    /* CLIENTS CAROUSEL */
    .clients-section { padding: 32px 0; }
    .carousel-track { gap: 16px; }
    .client-logo {
      padding: 10px 16px;
      font-size: 0.75rem;
      border-radius: 6px;
    }

    /* SECTION HEADERS */
    .section-header { margin-bottom: 32px; }
    .section-header h2 {
      font-size: 1.5rem;
      line-height: 1.2;
      margin-bottom: 12px;
    }
    .section-header p {
      font-size: 0.9rem;
      max-width: 100%;
    }
    .section-tag {
      font-size: 0.7rem;
      padding: 4px 10px;
    }

    /* SERVICES SECTION */
    .services { padding: 60px 0; }
    .services-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .service-card-img { height: 160px; }
    .service-card-body {
      padding: 16px 18px 18px;
    }
    .service-card-body h3 {
      font-size: 1rem;
      font-weight: 700;
      gap: 8px;
      line-height: 1.3;
    }
    .service-card-body h3 .sicon { font-size: 1.1rem; }
    .service-card-body p {
      font-size: 0.8rem;
      margin-bottom: 10px;
    }
    .service-features { margin-bottom: 12px; }
    .service-features li {
      font-size: 0.75rem;
      gap: 6px;
      padding: 3px 0;
    }
    .service-link { font-size: 0.78rem; }

    /* IMAGE BANNER */
    .image-banner {
      height: 240px;
      background-attachment: scroll;
      padding: 20px 0;
    }
    .image-banner h2 {
      font-size: 1.3rem;
      line-height: 1.2;
      margin-bottom: 12px;
      font-weight: 800;
    }
    .image-banner p {
      font-size: 0.85rem;
      margin-bottom: 20px;
      max-width: 100%;
    }
    .image-banner .btn {
      padding: 12px 20px;
      font-size: 0.85rem;
    }

    /* WHY US SECTION */
    .why-us { padding: 60px 0; }
    .why-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .why-features { gap: 16px; }
    .why-feature { gap: 12px; }
    .why-feature-icon {
      width: 40px;
      height: 40px;
      font-size: 1.1rem;
    }
    .why-feature h3 { font-size: 0.95rem; }
    .why-feature p { font-size: 0.8rem; }
    .why-image {
      height: 240px;
      border-radius: 12px;
    }
    .why-image-overlay { padding: 20px; }
    .counter-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .counter-item .num { font-size: 1.3rem; }
    .counter-item .label { font-size: 0.65rem; }

    /* TESTIMONIALS */
    .testimonials { padding: 60px 0; overflow: visible; }
    .testimonial-track-wrapper {
      margin: 0 -16px;
      padding: 0 16px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }
    .testimonial-track {
      gap: 16px;
      cursor: grab;
    }
    .testimonial-track.grabbing { cursor: grabbing; }
    .testimonial-card {
      min-width: calc(100vw - 48px);
      flex-shrink: 0;
      scroll-snap-align: start;
      padding: 24px;
      border-radius: 12px;
    }
    .stars { font-size: 0.9rem; }
    .testimonial-card blockquote {
      font-size: 0.85rem;
      margin-bottom: 16px;
    }
    .testimonial-avatar {
      width: 40px;
      height: 40px;
      font-size: 0.8rem;
    }
    .testimonial-info .name { font-size: 0.85rem; }
    .testimonial-info .role { font-size: 0.7rem; }
    .testimonial-controls {
      margin-top: 24px;
      gap: 8px;
    }
    .testimonial-controls button {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
    .testimonial-dots { gap: 6px; margin-top: 16px; }
    .testimonial-dots .dot { width: 8px; height: 8px; }

    /* BLOG SECTION */
    #blog-preview { padding: 60px 0; }
    #blog-preview > .container > div {
      grid-template-columns: 1fr !important;
      gap: 16px !important;
    }

    /* CTA SECTION */
    .cta-section {
      padding: 60px 0;
    }
    .cta-section h2 {
      font-size: 1.4rem;
      line-height: 1.2;
      margin-bottom: 12px;
      font-weight: 800;
    }
    .cta-section p {
      font-size: 0.9rem;
      margin-bottom: 24px;
      max-width: 100%;
    }
    .cta-buttons {
      flex-direction: column;
      gap: 12px;
    }
    .cta-buttons .btn {
      width: 100%;
      padding: 14px 20px;
      font-size: 0.9rem;
      justify-content: center;
    }

    /* CONTACT SECTION */
    .contact { padding: 60px 0; }
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .contact-info {
      width: 100%;
    }
    .contact-info h3 {
      font-size: 1.4rem;
      margin-bottom: 12px;
      line-height: 1.2;
    }
    .contact-info > p { font-size: 0.9rem; }
    .contact-item { gap: 12px; margin-bottom: 20px; }
    .contact-item-icon {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
    .contact-item h3 { font-size: 0.9rem; }
    .contact-item p { font-size: 0.8rem; }

    .contact-form {
      width: 100%;
      padding: 24px;
      border-radius: 12px;
    }
    .contact-form h3 {
      font-size: 1.1rem;
      margin-bottom: 18px;
    }
    .form-row {
      grid-template-columns: 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }
    .form-group {
      margin-bottom: 12px;
    }
    .form-group label {
      font-size: 0.8rem;
      margin-bottom: 5px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 14px 12px;
      font-size: 1rem;
      border-radius: 6px;
      min-height: 44px;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder {
      font-size: 0.9rem;
    }
    .form-group textarea {
      min-height: 100px;
    }
    .form-submit {
      min-height: 48px;
      font-size: 0.9rem;
      padding: 14px 16px;
    }
    .form-submit:active {
      transform: scale(0.98);
    }

    /* FOOTER */
    footer { padding: 40px 0 20px; }
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 24px;
      margin-bottom: 24px;
    }
    footer h3 {
      font-size: 0.9rem;
      margin-bottom: 12px;
    }
    footer ul li { margin-bottom: 6px; }
    footer ul a { font-size: 0.8rem; }
    .footer-brand p { font-size: 0.8rem; }
    .footer-bottom {
      flex-direction: column;
      gap: 12px;
      font-size: 0.75rem;
    }
    .footer-legal { display: flex; flex-direction: column; gap: 8px; }
    .footer-legal a { margin-left: 0; }

    /* WHATSAPP BUTTON */
    .whatsapp-btn {
      bottom: 16px;
      right: 16px;
      width: 52px;
      height: 52px;
      font-size: 1.4rem;
      z-index: 9999;
    }

    /* BUTTONS */
    .btn {
      padding: 14px 20px;
      font-size: 0.9rem;
      min-height: 44px;
      border-radius: 6px;
    }
    .btn-primary { padding: 14px 20px; }
    .btn-outline { padding: 14px 20px; }

    /* UTILITY - PREVENT OVERFLOW */
    body { overflow-x: hidden; }
    .container { overflow: hidden; }
    img { max-width: 100%; height: auto; }

    /* FIX MOBILE FRAMING ISSUES */
    .hero-stats { text-align: center; }
    .hero-stat { align-items: center; }
    .why-features { overflow: hidden; }
    .footer-grid { text-align: center; }
    .footer-brand { text-align: center; }
    .contact-grid { overflow: hidden; }
    .testimonial-track { padding-bottom: 8px; }
    blockquote { word-break: break-word; hyphens: auto; }
    .section-header h2 { word-break: break-word; }

    /* IMPROVED TOUCH TARGETS */
    a, button { min-height: 44px; display: flex; align-items: center; }
    button { min-width: 44px; }
  }

  /* RESPONSIVE - LARGE MOBILE (600px to 768px) */
  @media (min-width: 600px) and (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .section-header h2 { font-size: 1.6rem; }
    .contact-form { padding: 28px; }
    .testimonial-card { min-width: calc(100vw - 64px); }
  }

  /* RESPONSIVE - SMALL MOBILE (320px to 480px) */
  @media (max-width: 480px) {
    .container { padding: 0 12px; }
    html { font-size: 13px; }

    .logo { font-size: 1.1rem; }
    .logo-icon { width: 28px; height: 28px; font-size: 0.9rem; }

    .hero { padding: 40px 0 60px; }
    .hero h1 { font-size: 1.5rem; }
    .hero p { font-size: 0.85rem; }
    .hero-buttons .btn { font-size: 0.85rem; }

    .section-header h2 { font-size: 1.3rem; }
    .section-header p { font-size: 0.85rem; }

    .services-grid { gap: 12px; }
    .service-card-img { height: 140px; }
    .service-card-body h3 { font-size: 0.9rem; }

    .why-grid { gap: 24px; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); }

    .cta-section h2 { font-size: 1.2rem; }
    .cta-section p { font-size: 0.85rem; }

    .image-banner {
      height: 200px;
    }
    .image-banner h2 { font-size: 1.1rem; }

    .contact-info h3 { font-size: 1.2rem; }
    .contact-form { padding: 20px; }

    .footer-grid { gap: 20px; }

    .btn { padding: 12px 16px; font-size: 0.85rem; }
    .form-group input,
    .form-group select,
    .form-group textarea {
      font-size: 16px;
    }
  }

  /* RESPONSIVE - XSMALL MOBILE (Below 360px) */
  @media (max-width: 360px) {
    .container { padding: 0 10px; }
    html { font-size: 12px; }

    .hero h1 { font-size: 1.4rem; }
    .hero p { font-size: 0.8rem; }

    .section-header h2 { font-size: 1.2rem; }

    .service-card-img { height: 120px; }

    .cta-section { padding: 40px 0; }
    .cta-section h2 { font-size: 1.1rem; }

    .btn { padding: 11px 14px; font-size: 0.8rem; }
  }

/* Service Pages */
.service-content{background:#fff;color:#1e293b;padding:60px 20px;min-height:50vh;}
.service-content .container{max-width:1200px;margin:0 auto;}
.service-content h1{font-size:2.2rem;margin-bottom:10px;color:#1a1a2e;}
.service-content h2{font-size:1.6rem;margin-top:40px;margin-bottom:15px;color:#1a1a2e;}
.service-content h3{font-size:1.2rem;margin-top:25px;margin-bottom:10px;color:#1a1a2e;}
.service-content p{margin-bottom:12px;line-height:1.7;color:#475569;}
.service-content .service-hero{background:linear-gradient(135deg,rgba(26,26,46,0.85),rgba(26,26,46,0.7)),url('/img/hero-bg.jpg') center/cover;color:#fff;padding:80px 20px;margin:-60px -20px 40px;text-align:left;}
.service-content .service-hero h1{color:#fff;font-size:2.5rem;}
.service-content .service-hero p{color:rgba(255,255,255,0.85);font-size:1.15rem;}
.legal-page{background:#fff;color:#1e293b;padding:60px 20px;min-height:50vh;}
.legal-page h1{color:#1a1a2e;font-size:2rem;margin-bottom:20px;}
.legal-page h2{color:#1a1a2e;font-size:1.4rem;margin-top:30px;margin-bottom:10px;}
.legal-page p{line-height:1.7;color:#475569;margin-bottom:12px;}


/* ============================
   VISUAL ENHANCEMENTS v2.0
   ============================ */

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Better nav shadow on scroll */
nav { transition: box-shadow 0.3s ease, background 0.3s ease; }
nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

/* Service cards hover lift */
.service-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }

/* Blog cards hover */
.blog-card { transition: transform 0.3s ease, box-shadow 0.3s ease; border-radius: 16px; overflow: hidden; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.blog-card-img img { transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

/* Testimonial cards polish */
.testimonial-card { transition: transform 0.3s ease; border-radius: 16px; }
.testimonial-card:hover { transform: translateY(-2px); }

/* Why-us feature hover */
.why-feature { transition: transform 0.2s ease, background 0.2s ease; border-radius: 12px; }
.why-feature:hover { transform: translateX(4px); background: rgba(16,185,129,0.04); }

/* Button improvements */
.btn { transition: all 0.25s ease; position: relative; overflow: hidden; }
.btn-primary { box-shadow: 0 4px 14px rgba(16,185,129,0.3); }
.btn-primary:hover { box-shadow: 0 6px 20px rgba(16,185,129,0.4); transform: translateY(-1px); }

/* Section tags polish */
.section-tag { letter-spacing: 0.5px; }

/* Hero badge animation */
.hero-badge { animation: fadeSlideIn 0.8s ease-out; }
@keyframes fadeSlideIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Stats counter animation */
.hero-stat .num { transition: color 0.3s ease; }
.hero-stat:hover .num { color: var(--primary, #10b981); }

/* Footer links hover */
footer a { transition: color 0.2s ease, padding-left 0.2s ease; }
footer a:hover { padding-left: 4px; }

/* Image optimization hints */
img { image-rendering: auto; }
.service-card-img { overflow: hidden; border-radius: 12px 12px 0 0; }
.service-card-img img { transition: transform 0.4s ease; width: 100%; height: 220px; object-fit: cover; }
.service-card:hover .service-card-img img { transform: scale(1.05); }

/* Contact form polish */
.contact-form input, .contact-form textarea, .contact-form select {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--primary, #10b981);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
  outline: none;
}

/* WhatsApp button pulse */
.whatsapp-btn { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0.4); } 50%{ box-shadow: 0 0 0 12px rgba(37,211,102,0); } }