*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --white: #FFFFFF;
    --bg-alt: #F8FAFC;
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #EFF6FF;
    --accent: #22C55E;
    --accent-orange: #F97316;
    --text: #0F172A;
    --text-muted: #64748B;
    --border: #E5E7EB;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.10);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
  }
  html { 
    scroll-behavior: smooth; 
}
  body { 
    font-family: 'DM Sans', sans-serif; 
    color: var(--text); 
    background: var(--white); 
    line-height: 1.6; 
    overflow-x: hidden;
}
  h1,h2,h3,h4,h5 { 
    font-family: 'Playfair Display', serif; 
    line-height: 1.25; 
}
  img { 
    max-width: 100%; 
    display: block; 
}
  a { 
    text-decoration: none; 
    color: inherit; 
}
  ul { 
    list-style: none;
 }

  /* UTILITIES */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 24px; 
}
.section { 
    padding: 96px 0; 
}
.section-alt { 
    background: var(--bg-alt); 
}
.tag { 
    display: inline-block; 
    font-size: 12px; 
    font-weight: 600; 
    letter-spacing: 0.08em; 
    text-transform: uppercase; 
    color: var(--primary); 
    background: var(--primary-light); 
    padding: 4px 12px; 
    border-radius: 100px; 
    margin-bottom: 16px; 
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }

.section-header h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }

.section-header p { font-size: 17px; color: var(--text-muted); line-height: 1.7; }

.btn { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    padding: 14px 28px; 
    border-radius: var(--radius-sm); 
    font-family: 'DM Sans', sans-serif; 
    font-size: 15px; font-weight: 600; 
    cursor: pointer; 
    transition: all 0.2s ease; border: none; 
}

.btn-primary { 
    background: var(--primary); 
    color: #fff; 
}
.btn-primary:hover { 
    background: var(--primary-dark); 
    transform: translateY(-1px); 
    box-shadow: 0 8px 24px rgba(37,99,235,0.3); 
}
.btn-outline { 
    background: transparent; 
    color: var(--primary); 
    border: 1.5px solid var(--primary); 
}
.btn-outline:hover { 
    background: var(--primary-light); 
}
.btn-white { 
    background: #fff; 
    color: var(--primary); 
}
.btn-white:hover { 
    background: #f0f7ff; 
    transform: translateY(-1px); 
}
.grid-2 { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 48px; 
    align-items: center; 
}
.grid-2-item { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 5px; 
}
#hero .container .grid-2 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.grid-3 { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 28px; 
}
.grid-4 { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 24px; 
}
/* FADE IN ANIMATION */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
.fade-delay-4 { transition-delay: 0.4s; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  padding: 0;
}
#navbar.scrolled { 
    border-color: var(--border); 
    box-shadow: var(--shadow-sm); 
}
.nav-inner { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    height: 72px; 
}
.logo { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-family: 'Playfair Display', serif; 
    font-size: 22px; 
    font-weight: 700; 
    color: var(--text); 
}
.logo-mark { 
    width: 36px; 
    height: 36px; 
    background: var(--primary); 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.logo-mark svg { 
    width: 20px; 
    height: 20px; 
    fill: #fff; 
}
.nav-links { 
    display: flex; 
    align-items: center; 
    gap: 36px; 
}
.nav-links a { 
    font-size: 15px; 
    font-weight: 500; 
    color: var(--text-muted); 
    transition: color 0.2s; 
}
.nav-links a:hover { 
    color: var(--primary); 
}
.nav-actions { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}
.hamburger { 
    display: none; 
    flex-direction: column; 
    gap: 5px; 
    cursor: pointer; 
    padding: 4px; 
}
.hamburger span { 
    width: 24px; height: 2px; 
    background: var(--text); 
    border-radius: 2px; 
    transition: all 0.3s; 
}
.mobile-menu { 
    display: none; 
    position: fixed; 
    top: 72px; left: 0; right: 0; 
    background: #fff; 
    border-bottom: 1px solid var(--border); 
    padding: 24px; 
    z-index: 999; 
}
.mobile-menu.open { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}
.mobile-menu a { 
    font-size: 17px; 
    font-weight: 500; 
    color: var(--text); 
}
/* ===== HERO ===== */
#hero { 
    padding: 140px 0 80px; 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
}
.hero-content h1 { 
    font-size: clamp(36px, 5.5vw, 64px); 
    line-height: 1.1; 
    margin-bottom: 24px; 
}
.hero-content h1 span { 
    color: var(--primary); 
}
.hero-content p { 
    font-size: 18px; 
    color: var(--text-muted); 
    line-height: 1.75; 
    margin-bottom: 40px; 
    max-width: 480px; 
}
.hero-btns { 
    display: flex; 
    gap: 14px; 
    flex-wrap: wrap; 
}
.hero-image { 
    position: relative; 
}
.hero-image img { 
    width: 100%; 
    height: 480px; 
    object-fit: cover; 
    border-radius: var(--radius-lg); 
    box-shadow: var(--shadow-lg); 
}

.hero-badge { 
    position: absolute; 
    bottom: 28px; left: -28px; 
    background: #fff; 
    border-radius: var(--radius); 
    box-shadow: var(--shadow-md); 
    padding: 16px 20px; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}
.hero-badge-icon { 
    width: 44px; 
    height: 44px; 
    background: var(--primary-light); 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.hero-badge-icon svg { 
    width: 22px; 
    height: 22px; 
    stroke: var(--primary); 
    fill: none; 
    stroke-width: 2; 
}
.hero-badge-text strong { 
    display: block; 
    font-size: 15px; 
    font-weight: 600; 
}
.hero-badge-text span { 
    font-size: 12px; 
    color: var(--text-muted); 
}
.hero-badge2 { 
    position: absolute; 
    top: 28px; 
    right: -20px; 
    background: #fff; 
    border-radius: var(--radius); 
    box-shadow: var(--shadow-md); 
    padding: 12px 18px; 
}
.hero-badge2 .stars { 
    color: #FBBF24; 
    font-size: 13px; 
    margin-bottom: 2px; 
}
.hero-badge2 strong { 
    display: block; 
    font-size: 14px; 
}
.hero-badge2 span { 
    font-size: 12px; 
    color: var(--text-muted); 
}
/* ===== TRUST ===== */
#trust { 
    padding: 56px 0; 
    border-top: 1px solid var(--border); 
    border-bottom: 1px solid var(--border); 
}
.trust-inner { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 40px; 
    flex-wrap: wrap; 
}
.trust-label { 
    font-size: 13px; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 0.08em; 
    color: var(--text-muted); 
    white-space: nowrap; 
}
.logos-row { 
    display: flex; 
    align-items: center; 
    gap: 36px; 
    flex-wrap: wrap; 
    flex: 1; 
    justify-content: center; 
}
.logo-item { 
    font-family: 'Playfair Display', serif; 
    font-size: 18px; 
    font-weight: 700; 
    color: #CBD5E1; 
    letter-spacing: -0.5px; 
}
.stats-row { 
    display: flex; 
    gap: 40px; 
    flex-wrap: wrap; 
}
.stat-item { 
    text-align: center; 
}
.stat-item strong { 
    display: block; 
    font-family: 'Playfair Display', serif; 
    font-size: 28px; 
    font-weight: 700; 
    color: var(--text); 
}
.stat-item span { 
    font-size: 13px; 
    color: var(--text-muted); 
}
/* ===== SERVICES ===== */
.service-card { 
    background: var(--white); 
    border: 1px solid var(--border); 
    border-radius: var(--radius); 
    padding: 32px; 
    transition: all 0.3s ease; 
    position: relative; 
    overflow: hidden; 
}
.service-card::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(135deg, rgba(37,99,235,0.03) 0%, transparent 60%); 
    opacity: 0; 
    transition: opacity 0.3s; 
}
.service-card:hover { 
    transform: translateY(-4px); 
    box-shadow: var(--shadow-lg); 
    border-color: rgba(37,99,235,0.2); 
}
.service-card:hover::before { 
    opacity: 1; 
}
.service-icon { 
    width: 52px; 
    height: 52px; 
    background: var(--primary-light); 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 20px; 
}
.service-icon svg { 
    width: 26px; 
    height: 26px; 
    stroke: var(--primary); 
    fill: none; 
    stroke-width: 1.8; 
}
.service-card h3 { 
    font-size: 20px; 
    margin-bottom: 10px; 
}
.service-card p { 
    font-size: 14px; 
    color: var(--text-muted); 
    line-height: 1.7; 
    margin-bottom: 20px; 
}
.service-link { 
    font-size: 14px; 
    font-weight: 600; 
    color: var(--primary); 
    display: flex; 
    align-items: center; 
    gap: 6px; 
}
.service-link svg { 
    width: 16px; 
    height: 16px; 
    stroke: currentColor; 
    fill: none; 
    stroke-width: 2; 
    transition: transform 0.2s; 
}
.service-card:hover .service-link svg { 
    transform: translateX(4px); 
}
/* ===== WHY US ===== */
.why-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 32px; 
}
.why-item { 
    padding: 24px; 
    border-radius: var(--radius); 
    border: 1px solid var(--border); 
    background: var(--white); 
}
.why-icon { 
    width: 44px; 
    height: 44px; 
    background: var(--primary-light); 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 16px; 
}
.why-icon svg { 
    width: 22px; 
    height: 22px; 
    stroke: var(--primary); 
    fill: none; 
    stroke-width: 1.8; 
}
.why-item h4 { 
    font-size: 17px; 
    margin-bottom: 8px; 
}
.why-item p { 
    font-size: 14px; 
    color: var(--text-muted); 
    line-height: 1.65; 
}
/* ===== PROCESS ===== */
#process { 
    background: var(--text); 
    color: #fff; 
}
#process .section-header h2 { 
    color: #fff; 
}
#process .section-header p { 
    color: #94A3B8; 
}
.process-steps { 
    display: flex; 
    gap: 0; 
    position: relative; 
}
.process-steps::before { 
    content: ''; 
    position: absolute; 
    top: 28px; 
    left: 60px; 
    right: 60px; 
    height: 1px; 
    background: rgba(255,255,255,0.1); 
}
.process-step { 
    flex: 1; 
    text-align: center; 
    padding: 0 16px; 
    position: relative; 
}
.step-num { 
    width: 56px; 
    height: 56px; 
    border-radius: 50%; 
    border: 1px solid rgba(255,255,255,0.2); 
    background: rgba(255,255,255,0.05); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 20px; 
    position: relative; 
    z-index: 1; 
}
.step-num span { 
    font-family: 'Playfair Display', serif; 
    font-size: 20px; 
    font-weight: 700; 
    color: #fff; 
}
.step-active .step-num { 
    background: var(--primary); 
    border-color: var(--primary); 
}
.process-step h4 { 
    font-size: 16px; 
    color: #fff; 
    margin-bottom: 8px; 
}
.process-step p { 
    font-size: 13px; 
    color: #94A3B8; 
    line-height: 1.6; 
}
/* ===== PROJECTS ===== */
.project-card { 
    background: var(--white); 
    border-radius: var(--radius); 
    overflow: hidden; 
    border: 1px solid var(--border); 
    transition: all 0.3s ease; 
}
.project-card:hover { 
    transform: translateY(-4px); 
    box-shadow: var(--shadow-lg); 
}
.project-img { 
    height: 220px; 
    overflow: hidden; 
}
.project-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease; 
}
.project-card:hover .project-img img { 
    transform: scale(1.05); 
}
.project-body { 
    padding: 24px; 
}
.project-body h3 { 
    font-size: 19px; 
    margin-bottom: 8px; 
}
.project-body p { 
    font-size: 13px; 
    color: var(--text-muted); 
    line-height: 1.65; 
    margin-bottom: 16px; 
}
.tech-tags { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 6px; 
    margin-bottom: 20px; 
}
.tech-tag { 
    font-size: 11px; 
    font-weight: 600; 
    padding: 3px 10px; 
    border-radius: 100px; 
    background: var(--bg-alt); 
    color: var(--text-muted); 
    border: 1px solid var(--border); 
}
.project-links { 
    display: flex; 
    gap: 10px; 
}
.project-links a { 
    flex: 1; 
    text-align: center; 
    padding: 9px; 
    border-radius: var(--radius-sm); 
    font-size: 13px; 
    font-weight: 600; 
    border: 1px solid var(--border); 
    transition: all 0.2s; 
}
.project-links a.primary { 
    background: var(--primary); 
    color: #fff; 
    border-color: var(--primary); 
}
.project-links a.primary:hover { 
    background: var(--primary-dark); 
}
.project-links a.outline:hover { 
    border-color: var(--primary); 
    color: var(--primary); 
}
/* ===== CASE STUDIES ===== */
.case-card { 
    background: var(--white); 
    border-radius: var(--radius-lg); 
    border: 1px solid var(--border); 
    overflow: hidden; 
    display: grid; 
    grid-template-columns: 1.2fr 1fr; 
}
.case-img { 
    position: relative; 
    overflow: hidden; 
    min-height: 360px; 
}
.case-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}
.case-img-overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to right, rgba(37,99,235,0.7), transparent); 
    display: flex; 
    align-items: flex-end; 
    padding: 32px; 
}
.case-img-overlay h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: 28px; 
    color: #fff; 
    line-height: 1.2; 
}
.case-body { 
    padding: 40px; 
}
.case-item { 
    margin-bottom: 24px; 
}
.case-item-label { 
    font-size: 11px; 
    font-weight: 700; 
    letter-spacing: 0.1em; 
    text-transform: uppercase; 
    color: var(--primary); 
    margin-bottom: 6px; 
}
.case-item p { 
    font-size: 14px; 
    color: var(--text-muted); 
    line-height: 1.65; 
}
.case-results { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 16px; 
    margin-top: 24px; 
}
.result-metric { 
    background: var(--bg-alt); 
    border-radius: var(--radius-sm); 
    padding: 16px; 
    text-align: center; 
}
.result-metric strong { 
    display: block; 
    font-family: 'Playfair Display', serif; 
    font-size: 26px; 
    color: var(--primary); 
}
.result-metric span { 
    font-size: 12px; 
    color: var(--text-muted); 
}
/* ===== TESTIMONIALS ===== */
.testimonial-card { 
    background: var(--white); 
    border: 1px solid var(--border); 
    border-radius: var(--radius); 
    padding: 32px; 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}
.testimonial-stars { 
    display: flex; 
    gap: 3px; 
}
.testimonial-stars span { 
    color: #FBBF24; 
    font-size: 15px; 
}
.testimonial-text { 
    font-size: 15px; 
    line-height: 1.75; 
    color: var(--text-muted); 
    font-style: italic; 
    flex: 1; 
}
.testimonial-author { 
    display: flex; 
    align-items: center; 
    gap: 14px; 
}
.author-avatar { 
    width: 48px; 
    height: 48px; 
    border-radius: 50%; 
    object-fit: cover; 
}
.author-info strong { 
    display: block; 
    font-size: 15px; 
    font-weight: 600; 
}
.author-info span { 
    font-size: 13px; 
    color: var(--text-muted); 
}
/* ===== CTA SECTION ===== */
#cta { 
    background: var(--primary); 
}
.cta-inner { 
    text-align: center; 
    padding: 80px 0; 
}
.cta-inner h2 { 
    font-size: clamp(28px, 4vw, 48px); 
    color: #fff; 
    margin-bottom: 16px; 
}
.cta-inner p { 
    font-size: 17px; 
    color: rgba(255,255,255,0.75); 
    margin-bottom: 40px; 
}
.cta-btns { 
    display: flex; 
    justify-content: center; 
    gap: 14px; 
    flex-wrap: wrap; 
}
/* ===== CONTACT ===== */
.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1.4fr; 
    gap: 64px; 
    align-items: start; 
}
.contact-info h2 { 
    font-size: 34px; 
    margin-bottom: 16px; 
}
.contact-info p { 
    font-size: 16px; 
    color: var(--text-muted); 
    line-height: 1.7; 
    margin-bottom: 36px; 
}
.contact-detail { 
    display: flex; 
    gap: 16px; 
    margin-bottom: 24px; 
    align-items: flex-start; 
}
.contact-detail-icon { 
    width: 44px; 
    height: 44px; 
    background: var(--primary-light); 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
}
.contact-detail-icon svg { 
    width: 20px; 
    height: 20px; 
    stroke: var(--primary); 
    fill: none; 
    stroke-width: 1.8; 
}
.contact-detail-text strong { 
    display: block; 
    font-size: 14px; 
    font-weight: 600; 
    margin-bottom: 2px; 
}
.contact-detail-text span { 
    font-size: 14px; 
    color: var(--text-muted); 
}
.contact-form { 
    background: var(--white); 
    border-radius: var(--radius-lg); 
    border: 1px solid var(--border); 
    padding: 40px; 
    box-shadow: var(--shadow-md); 
}
.form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 16px; 
}
.form-group { 
    margin-bottom: 20px; 
}
.form-group label { 
    display: block; 
    font-size: 13px; 
    font-weight: 600; 
    margin-bottom: 6px; 
    color: var(--text); 
}
.form-group input, .form-group textarea, .form-group select { 
    width: 100%; 
    padding: 12px 16px; 
    border: 1px solid var(--border); 
    border-radius: var(--radius-sm); 
    font-family: 'DM Sans', sans-serif; 
    font-size: 15px; 
    color: var(--text); 
    background: var(--bg-alt); 
    transition: border-color 0.2s, box-shadow 0.2s; 
    outline: none; 
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { 
    border-color: var(--primary); 
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1); 
    background: #fff; 
}
.form-group textarea { 
    resize: vertical; 
    min-height: 120px; 
}
.form-submit { 
    width: 100%; 
    padding: 15px; 
    background: var(--primary); 
    color: #fff; 
    border: none; 
    border-radius: var(--radius-sm); 
    font-family: 'DM Sans', sans-serif; 
    font-size: 16px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.2s; 
}
.form-submit:hover { 
    background: var(--primary-dark); 
    transform: translateY(-1px); 
    box-shadow: 0 8px 24px rgba(37,99,235,0.3); 
}
.map-embed { 
    margin-top: 32px; 
    border-radius: var(--radius); 
    overflow: hidden; 
    border: 1px solid var(--border); 
}
/* ===== FOOTER ===== */
footer { 
    background: var(--text); 
    color: #fff; 
    padding: 64px 0 32px; 
}
.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr 1fr; 
    gap: 48px; 
    margin-bottom: 56px; 
}
.footer-brand p { 
    font-size: 14px; 
    color: #94A3B8; 
    line-height: 1.7; 
    margin: 16px 0 24px; 
    max-width: 260px; 
}
.footer-social { 
    display: flex; 
    gap: 12px; 
}
.footer-social a { 
    width: 36px; 
    height: 36px; 
    border-radius: 8px; 
    border: 1px solid rgba(255,255,255,0.1); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.2s; 
}
.footer-social a:hover { 
    background: var(--primary); 
    border-color: var(--primary); 
}
.footer-social svg { 
    width: 16px; 
    height: 16px; 
    stroke: #94A3B8; 
    fill: none; 
    stroke-width: 1.8; 
}
.footer-social a:hover svg { stroke: #fff; }
.footer-col h5 { 
    font-family: 'DM Sans', sans-serif; 
    font-size: 13px; 
    font-weight: 700; 
    letter-spacing: 0.08em; 
    text-transform: uppercase; 
    color: #94A3B8; 
    margin-bottom: 16px; 
}
.footer-col ul { 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
}
.footer-col ul li a { 
    font-size: 14px; 
    color: #CBD5E1; 
    transition: color 0.2s; 
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.08); 
    padding-top: 28px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
}
.footer-bottom p { 
    font-size: 13px; 
    color: #64748B; 
}
.footer-logo { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-family: 'Playfair Display', serif; 
    font-size: 18px; 
    font-weight: 700; 
    color: #fff; 
}
/* ===== WHATSAPP ===== */
#whatsapp-btn { 
    position: fixed; 
    bottom: 28px; 
    right: 28px; 
    width: 56px; 
    height: 56px; 
    background: #25D366; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 8px 24px rgba(37,211,102,0.4); 
    z-index: 998; 
    transition: transform 0.2s, 
    box-shadow 0.2s; }
#whatsapp-btn:hover { 
    transform: scale(1.1); 
    box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
#whatsapp-btn svg { 
    width: 28px; 
    height: 28px; 
    fill: #fff; 
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .case-card { grid-template-columns: 1fr; }
  .case-img { min-height: 240px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .hero-image { 
    display: flex;
    }
   #hero .grid-2{
    display: flex;
    flex-direction: column;
   }

  #hero { min-height: auto; padding: 120px 0 60px; }
  .trust-inner { flex-direction: column; align-items: flex-start; }
  .stats-row { gap: 24px; }
  .process-steps { flex-direction: column; gap: 32px; }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  /* .hero-badge, .hero-badge2 { display: none; } */
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .logos-row { gap: 24px; }
  .case-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .fade-in.visible{
    text-align: center;
  }
  .hero-btns{
    justify-content: center;
  }
  .trust-inner{
    align-items: center;
  }
  /* #hero .hero-content .fade-in{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  } */
}
/* SCROLL INDICATOR */
#progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: var(--primary); z-index: 1001; transition: width 0.1s; width: 0%; }