/* ========================================================================
   Toko Service Laptop - Jasa Install Microsoft Office
   Mobile-first responsive stylesheet
   ======================================================================== */

/* ================== CSS RESET & BASE ================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0F4C81;
  --primary-dark: #0A3A66;
  --primary-light: #2563EB;
  --green: #059669;
  --green-light: #10B981;
  --orange: #FF6B35;
  --orange-light: #FB923C;
  --wa: #25D366;
  --wa-dark: #128C7E;
  --text: #1E293B;
  --text-light: #475569;
  --text-muted: #64748B;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-soft: #F0F9FF;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --container: 1200px;
  --gradient: linear-gradient(135deg, #0F4C81 0%, #059669 100%);
  --gradient-light: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
  --gradient-soft: linear-gradient(135deg, #F0F9FF 0%, #ECFDF5 100%);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--primary-light); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ================== UTILITY ================== */
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gradient-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(15,76,129,0.15);
  margin-bottom: 16px;
}
.section { padding: 60px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head h2 { font-size: 32px; font-weight: 800; color: var(--text); margin-bottom: 12px; line-height: 1.25; }
.section-head p { color: var(--text-light); font-size: 17px; }

/* ================== BUTTONS ================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-large { padding: 14px 28px; font-size: 16px; }

.btn-primary {
  background: var(--wa);
  color: white;
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}
.btn-primary:hover {
  background: var(--wa-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}

.btn-call {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-call:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* ================== HEADER / NAV ================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  border-radius: 10px;
  color: white;
}
.brand-text { line-height: 1.1; }
.brand-text small { display: block; font-size: 11px; color: var(--text-muted); font-weight: 500; }

.nav-menu {
  display: none;
  gap: 32px;
}
.nav-menu a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 4px 0;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 10px; }
.btn-nav-call {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--gradient);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}
.btn-nav-call:hover { color: white; transform: translateY(-1px); }
.nav-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--bg-alt);
  border-radius: 10px;
  color: var(--text);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile menu (open state) */
.nav-menu.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: white;
  padding: 20px;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.nav-menu.open a { padding: 8px 0; }
.nav-menu.open a.active::after { display: none; }

/* ================== HERO ================== */
.hero {
  position: relative;
  padding: 60px 0 70px;
  background: var(--gradient-soft);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--gradient);
  border-radius: 50%;
  opacity: 0.06;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 350px;
  height: 350px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.05;
  z-index: 0;
}
.hero-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero-content h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.hero-content h1 .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content .lead {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: var(--text-light);
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.hero-meta svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}
.hero-image {
  display: none;
  position: relative;
}
.hero-image img {
  filter: drop-shadow(0 20px 40px rgba(15,76,129,0.15));
}

/* ================== TRUST BAR ================== */
.trust-bar {
  background: white;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item .num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.trust-item .label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* ================== PAGE HERO (sub-pages) ================== */
.page-hero {
  background: var(--gradient);
  color: white;
  padding: 70px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='20' cy='20' r='1.5' fill='white' opacity='0.15'/><circle cx='80' cy='40' r='1' fill='white' opacity='0.2'/><circle cx='50' cy='80' r='1.5' fill='white' opacity='0.15'/></svg>");
}
.page-hero h1 {
  position: relative;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero p {
  position: relative;
  font-size: 17px;
  opacity: 0.95;
  max-width: 720px;
  margin: 0 auto;
}
.page-hero .breadcrumbs {
  position: relative;
  margin-top: 18px;
  font-size: 14px;
  opacity: 0.9;
}
.page-hero .breadcrumbs a { color: white; text-decoration: underline; }

/* ================== SERVICE GRID ================== */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.service-card {
  background: white;
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--gradient-soft);
  border-radius: 14px;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
}
.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.service-card p {
  color: var(--text-light);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.service-card .price {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(5,150,105,0.1);
  color: var(--green);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}

/* ================== FEATURES ================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.feature-card {
  background: white;
  padding: 28px 24px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  border-radius: 16px;
  color: white;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--text-light);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ================== STEPS ================== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}
.step {
  background: white;
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  padding-left: 80px;
}
.step-num {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  font-size: 18px;
}
.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.step p { color: var(--text-light); font-size: 14.5px; }

/* ================== AREA LIST ================== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: white;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  border: 1px solid var(--border);
}
.area-item svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

/* ================== TESTIMONIALS ================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.testimonial {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial .stars {
  color: #FBBF24;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial blockquote {
  color: var(--text);
  font-size: 15px;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 16px;
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
}
.testimonial .author-info .name {
  font-weight: 700;
  color: var(--text);
  font-size: 14.5px;
}
.testimonial .author-info .role {
  color: var(--text-muted);
  font-size: 13px;
}

/* ================== FAQ ================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s ease;
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}
.faq-q .toggle {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--bg-alt);
  border-radius: 50%;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q .toggle { transform: rotate(45deg); background: var(--gradient); color: white; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner { padding: 0 20px 20px; color: var(--text-light); font-size: 15px; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 500px; }

/* ================== CTA SECTION ================== */
.cta-section {
  background: var(--gradient);
  color: white;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-section h2 {
  position: relative;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-section p {
  position: relative;
  font-size: 17px;
  opacity: 0.95;
  max-width: 620px;
  margin: 0 auto 28px;
}
.cta-buttons {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cta-buttons .btn-primary { background: white; color: var(--primary); }
.cta-buttons .btn-primary:hover { background: var(--bg-alt); color: var(--primary); }
.cta-buttons .btn-call { background: transparent; color: white; border-color: white; }
.cta-buttons .btn-call:hover { background: white; color: var(--primary); }

/* ================== FOOTER ================== */
.site-footer {
  background: #0F172A;
  color: #CBD5E1;
  padding: 50px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col h4 {
  color: white;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: #CBD5E1; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-col p { color: #94A3B8; font-size: 14px; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid #1E293B;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: #64748B;
  text-align: center;
}
.footer-socials { display: flex; gap: 10px; justify-content: center; }
.footer-socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #1E293B;
  border-radius: 8px;
  color: #94A3B8;
}
.footer-socials a:hover { background: var(--wa); color: white; }

/* ================== FLOATING WHATSAPP ================== */
.wa-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-float .wa-bubble {
  background: white;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 14px 14px 14px 4px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  max-width: 200px;
  display: none;
  animation: waBubbleIn 0.4s ease;
}
.wa-float .wa-bubble strong { color: var(--wa-dark); display: block; font-size: 12px; margin-bottom: 2px; }
.wa-float .wa-btn {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--wa);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  position: relative;
  animation: waPulse 2s ease infinite;
}
.wa-float .wa-btn:hover { transform: scale(1.1); }
.wa-float .wa-btn img { width: 30px; height: 30px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.15); }
}
@keyframes waBubbleIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================== KONTAK PAGE ================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.contact-card:hover { border-color: var(--primary); transform: translateX(4px); }
.contact-card .ic {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--gradient-soft);
  color: var(--primary);
  border-radius: 12px;
  flex-shrink: 0;
}
.contact-card h4 { font-size: 14px; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; }
.contact-card .v { font-size: 16px; font-weight: 700; color: var(--text); }
.contact-card .v a { color: var(--text); }
.contact-card .v a:hover { color: var(--primary); }

.contact-form {
  background: white;
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 18px; }
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  transition: all 0.2s ease;
  color: var(--text);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(15,76,129,0.1);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { width: 100%; justify-content: center; }

.map-wrap {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 360px;
  background: var(--bg-alt);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ================== TENTANG PAGE ================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.about-text h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.about-text p { color: var(--text-light); font-size: 16px; line-height: 1.8; margin-bottom: 12px; }
.about-image { border-radius: var(--radius); overflow: hidden; }

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.value-card {
  text-align: center;
  padding: 24px 20px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.value-card .ic {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  border-radius: 50%;
  color: white;
}
.value-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--text-light); }

/* ================== LAYANAN PAGE - FILTERS ================== */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.filter-tab {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  background: white;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  transition: all 0.2s ease;
}
.filter-tab:hover { border-color: var(--primary); color: var(--primary); }
.filter-tab.active {
  background: var(--gradient);
  color: white;
  border-color: transparent;
}

/* ================== ANIMATIONS ================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================== RESPONSIVE - TABLET ================== */
@media (min-width: 768px) {
  .container { padding: 0 32px; }
  .section { padding: 80px 0; }
  .section-head h2 { font-size: 38px; }
  
  .nav-menu { display: flex; }
  .btn-nav-call { display: inline-flex; }
  .nav-toggle { display: none; }
  
  .hero { padding: 80px 0 90px; }
  .hero-content h1 { font-size: 44px; }
  
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-item .num { font-size: 34px; }
  
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer-socials { justify-content: flex-end; }
  
  .wa-float .wa-bubble { display: block; }
  
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  
  .page-hero h1 { font-size: 44px; }
  .cta-section h2 { font-size: 36px; }
}

/* ================== RESPONSIVE - DESKTOP ================== */
@media (min-width: 1024px) {
  .hero-wrap { grid-template-columns: 1.1fr 0.9fr; gap: 60px; }
  .hero-image { display: block; }
  .hero-content h1 { font-size: 52px; }
  
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .value-grid { grid-template-columns: repeat(4, 1fr); }
  .area-grid { grid-template-columns: repeat(4, 1fr); }
  
  .steps { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .step { padding: 28px 24px 28px 24px; text-align: center; }
  .step-num { position: static; margin: 0 auto 16px; }
  
  .section-head h2 { font-size: 42px; }
  .page-hero h1 { font-size: 50px; }
}
