/* ============================================================
   CV. Rahma Jaya Abadi — International Class Company Profile
   Pure CSS, zero framework | Theme: Navy Blue Premium
   ============================================================ */

/* ── 1. CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  --blue:       #0077B6;
  --blue-dark:  #005F92;
  --blue-deep:  #023E8A;
  --blue-dim:   rgba(0, 119, 182, 0.08);
  --blue-dim2:  rgba(0, 119, 182, 0.15);
  --cyan:       #00B4D8;
  --cyan-dim:   rgba(0, 180, 216, 0.10);
  --gold:       #F0A500;
  --gold-dim:   rgba(240, 165, 0, 0.10);
  --white:      #FFFFFF;
  --light:      #F0F7FF;
  --light-2:    #E1F0FC;
  --surface:    #FAFCFF;
  --border:     rgba(0, 119, 182, 0.12);
  --border-2:   rgba(0, 119, 182, 0.20);
  --text:       #0D1B2A;
  --text-muted: #4A5568;
  --text-dim:   #94A3B8;
  --green:      #25D366;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow:      0 8px 32px rgba(0,119,182,0.12);
  --shadow-lg:   0 16px 48px rgba(0,119,182,0.18);
  --shadow-xl:   0 24px 64px rgba(0,119,182,0.22);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);

  --font-display: 'Bebas Neue', Arial, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h:     72px;
  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --section-pad: 120px 0;

  --gradient-primary: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  --gradient-hero:    linear-gradient(105deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.60) 50%, rgba(0,0,0,0.20) 100%);
  --gradient-light:   linear-gradient(135deg, #F0F7FF 0%, #E1F0FC 100%);
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ── 3. LAYOUT ────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ── 4. TYPOGRAPHY ────────────────────────────────────────── */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.label-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 520px; line-height: 1.8; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-heading { margin-left: auto; margin-right: auto; }
.section-header .section-sub { margin: 0 auto; }
.section-header .label-tag { justify-content: center; }
.section-header .label-tag::before { display: none; }
.section-header .label-tag::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── 5. BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 16px rgba(0,119,182,0.30);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,119,182,0.42); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 13px 30px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: var(--white); color: var(--blue); border-color: var(--white); }

/* ── 6. PLACEHOLDER BLOCKS ────────────────────────────────── */
.img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; width: 100%; height: 100%; min-height: 280px;
  background: var(--light); border: 2px dashed var(--border-2);
  border-radius: var(--radius); color: var(--text-dim); text-align: center; padding: 2rem;
}
.img-placeholder svg { opacity: 0.25; }
.img-placeholder p { font-size: 0.88rem; font-weight: 500; }
.img-placeholder small { font-size: 0.72rem; opacity: 0.7; }
.img-placeholder--gallery { min-height: 220px; border-radius: 0; background: var(--gradient-light); border-style: dashed; }

/* ── 7. NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: var(--nav-h);
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(0,0,0,0.06);
}
.nav-inner { height: 100%; display: flex; align-items: center; gap: 2rem; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img {
  height: 52px; width: auto; object-fit: contain; display: block;
  transition: filter 0.3s;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.35));
}
.navbar.scrolled .logo-img { filter: drop-shadow(0 1px 4px rgba(0,0,0,0.08)); }
.nav-links { display: flex; gap: 0.2rem; margin-left: auto; }
.nav-link {
  font-size: 0.84rem; font-weight: 500; color: rgba(255,255,255,0.9);
  padding: 6px 14px; border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s; letter-spacing: 0.02em;
}
.navbar.scrolled .nav-link { color: var(--text-muted); }
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--blue-dim); }
.btn-wa {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: var(--white);
  background: var(--green); padding: 10px 20px; border-radius: var(--radius-sm);
  white-space: nowrap; flex-shrink: 0; transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(37,211,102,0.30); letter-spacing: 0.02em;
}
.btn-wa:hover { background: #1fab5c; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; padding: 6px; margin-left: auto;
}
.hamburger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 8. HERO ──────────────────────────────────────────────── */
.hero {
  position: relative; height: 100svh; min-height: 660px;
  display: flex; align-items: flex-end; padding-bottom: 80px; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: var(--gradient-hero);
}
.hero-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(2,62,138,0.45) 0%, transparent 55%);
}
.hero-body {
  position: relative; z-index: 1;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; padding-top: var(--nav-h); width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 0.70rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 1.4rem;
}
.badge-dot {
  width: 24px; height: 24px; background: var(--cyan); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.badge-dot::after {
  content: ''; width: 8px; height: 8px; background: var(--white);
  border-radius: 50%; animation: pulse-badge 2s ease infinite;
}
@keyframes pulse-badge {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 9vw, 7.6rem);
  line-height: 0.93; letter-spacing: 0.01em;
  color: var(--white); margin-bottom: 1.8rem;
}
.hero-title em { font-style: normal; color: var(--cyan); }
.hero-desc { font-size: 1.02rem; color: rgba(255,255,255,0.78); max-width: 460px; margin-bottom: 2.4rem; line-height: 1.78; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 20px; margin-top: 2.4rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); line-height: 1; letter-spacing: 0.02em; }
.trust-item span { font-size: 0.68rem; color: rgba(255,255,255,0.50); letter-spacing: 0.06em; text-transform: uppercase; }
.trust-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.15); }
.hero-card {
  flex-shrink: 0;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 22px 26px; min-width: 272px;
  display: flex; flex-direction: column; gap: 0;
}
.hcard-item { display: flex; align-items: center; gap: 14px; padding: 13px 0; }
.hcard-item svg { color: var(--cyan); flex-shrink: 0; }
.hcard-item div { display: flex; flex-direction: column; gap: 3px; }
.hcard-item strong { font-size: 0.88rem; font-weight: 600; color: var(--white); }
.hcard-item small  { font-size: 0.73rem; color: rgba(255,255,255,0.55); }
.hcard-divider { height: 1px; background: rgba(255,255,255,0.12); }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); z-index: 1; animation: scroll-bounce 2.4s ease infinite;
}
.scroll-bar { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); }
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── 9. STATS ─────────────────────────────────────────────── */
.stats {
  background: var(--white); padding: 3.2rem 0;
  border-bottom: 1px solid var(--border); position: relative;
}
.stats::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient-primary);
}
.stats-grid { display: grid; grid-template-columns: repeat(7, 1fr); align-items: center; gap: 0; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 1.2rem 1rem; grid-column: span 1; }
.stat-icon {
  width: 40px; height: 40px; background: var(--blue-dim); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--blue); margin-bottom: 4px;
}
.stat-num {
  font-family: var(--font-display); font-size: 2.8rem; line-height: 1; letter-spacing: 0.02em;
  background: var(--gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-lbl { font-size: 0.78rem; color: var(--text-muted); text-align: center; font-weight: 500; }
.stat-sep { grid-column: span 1; height: 48px; width: 1px; background: var(--border); margin: 0 auto; }

/* ── 10. ABOUT ────────────────────────────────────────────── */
.about { padding: var(--section-pad); background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: visible; }
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.about-img-wrap .img-placeholder { height: 480px; min-height: unset; border-radius: var(--radius-lg); }
.about-float-badge {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--gradient-primary); color: var(--white);
  padding: 20px 24px; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px; min-width: 200px;
}
.float-badge-num { font-family: var(--font-display); font-size: 2.8rem; line-height: 1; color: var(--white); }
.float-badge-text { display: flex; flex-direction: column; }
.float-badge-text strong { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.float-badge-text span { font-size: 0.95rem; font-weight: 600; }
.about-accent-box {
  position: absolute; top: -20px; right: -20px;
  background: var(--gold); color: var(--white);
  padding: 14px 18px; display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.82rem; border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(240,165,0,0.30);
}
.about-text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.85; }
.about-checklist { display: flex; flex-direction: column; gap: 12px; margin: 2rem 0 2.4rem; }
.about-checklist li { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: var(--text); font-weight: 500; }
.check-icon {
  width: 26px; height: 26px; background: var(--gradient-primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--white); box-shadow: 0 4px 12px rgba(0,119,182,0.25);
}

/* ── 11. VISI & MISI ──────────────────────────────────────── */
.visi-misi { padding: var(--section-pad); background: var(--light); }
.visi-misi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.vm-card {
  background: var(--white); padding: 3rem 2.6rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 1.4rem;
  position: relative; overflow: hidden; transition: all 0.35s var(--ease-out);
}
.vm-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--gradient-primary);
}
.vm-misi::before { background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%); }
.vm-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vm-card h3 { font-family: var(--font-display); font-size: 2rem; color: var(--text); margin: 0; }
.vm-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.85; margin: 0; }
.misi-list { display: flex; flex-direction: column; gap: 14px; padding: 0; list-style: none; }
.misi-list li { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; padding-left: 22px; position: relative; }
.misi-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; }

/* ── 12. SERVICES ─────────────────────────────────────────── */
.services { padding: var(--section-pad); background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card-large {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); border: 1px solid var(--border);
  transition: all 0.35s var(--ease-out); display: flex; flex-direction: column;
}
.svc-card-large:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-cat-header { padding: 2rem 2.2rem; color: var(--white); }
.svc-cat-header.svc-blue { background: var(--gradient-primary); }
.svc-cat-header.svc-cyan { background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%); }
.svc-cat-header h3 { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: 0.03em; margin-bottom: 0.3rem; }
.svc-cat-header p { font-size: 0.88rem; opacity: 0.85; margin: 0; }
.svc-cat-body { padding: 1.8rem 2.2rem; display: flex; flex-direction: column; gap: 1.6rem; flex: 1; }
.svc-subcat h4 {
  font-size: 0.76rem; font-weight: 700; color: var(--blue); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 0.8rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border);
}
.svc-list { display: flex; flex-direction: column; gap: 7px; padding-left: 0; list-style: none; }
.svc-list li { font-size: 0.9rem; color: var(--text-muted); padding-left: 1.1rem; position: relative; line-height: 1.5; }
.svc-list li::before { content: "›"; position: absolute; left: 0; color: var(--cyan); font-weight: bold; font-size: 1.1rem; }

/* ── 13. CARA KERJA / PROCESS ─────────────────────────────── */
.process { padding: var(--section-pad); background: var(--light); }
.process-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 35px;
  left: calc(10% + 36px); right: calc(10% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 100%);
  z-index: 0;
}
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step-circle {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--white); border: 2.5px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.6rem; transition: all 0.35s var(--ease-out);
  box-shadow: var(--shadow-sm); position: relative;
}
.step-circle svg { color: var(--blue); transition: color 0.3s; }
.step-num-badge {
  position: absolute; top: -4px; right: -4px;
  width: 22px; height: 22px; background: var(--gradient-primary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.60rem; font-weight: 700; color: var(--white);
  box-shadow: 0 2px 8px rgba(0,119,182,0.35);
}
.process-step:hover .step-circle { background: var(--gradient-primary); border-color: transparent; transform: scale(1.10); box-shadow: var(--shadow); }
.process-step:hover .step-circle svg { color: var(--white); }
.step-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--text); margin-bottom: 0.6rem; letter-spacing: 0.02em; }
.step-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

/* ── 14. KEUNGGULAN ───────────────────────────────────────── */
.advantages { padding: var(--section-pad); background: var(--white); }
.advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.adv-card {
  background: var(--white); padding: 2.6rem 2.2rem; border-radius: var(--radius-lg);
  text-align: center; transition: all 0.35s var(--ease-out);
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.adv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-primary); transform: scaleX(0);
  transition: transform 0.35s var(--ease-out); transform-origin: left;
}
.adv-card:hover::before { transform: scaleX(1); }
.adv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.adv-icon {
  width: 64px; height: 64px; background: var(--blue-dim); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; color: var(--blue);
  margin: 0 auto 1.4rem; transition: all 0.35s var(--ease-out);
}
.adv-card:hover .adv-icon { background: var(--gradient-primary); color: var(--white); box-shadow: var(--shadow); }
.adv-card h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--text); margin-bottom: 0.8rem; }
.adv-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; margin: 0; }

/* ── 15. TIM & TEKNISI ────────────────────────────────────── */
.team { padding: var(--section-pad); background: var(--light); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 900px; margin: 0 auto; }
.team-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.4rem 2rem;
  text-align: center; box-shadow: var(--shadow-card); border: 1px solid var(--border);
  transition: all 0.35s var(--ease-out); position: relative; overflow: hidden;
}
.team-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-primary); transform: scaleX(0); transform-origin: center;
  transition: transform 0.35s var(--ease-out);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.team-card:hover::after { transform: scaleX(1); }
.team-card--featured::after { transform: scaleX(1); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.6rem; color: var(--white);
  margin: 0 auto 1.4rem; letter-spacing: 0.05em;
  box-shadow: 0 8px 24px rgba(0,119,182,0.30);
  transition: transform 0.35s var(--ease-spring);
}
.team-card:hover .team-avatar { transform: scale(1.08); }
.team-card--featured .team-avatar {
  width: 96px; height: 96px; font-size: 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--blue) 100%);
  box-shadow: 0 8px 28px rgba(240,165,0,0.30);
}
.team-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--text); margin-bottom: 4px; letter-spacing: 0.03em; }
.team-role { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.team-exp {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.76rem; color: var(--text-muted); background: var(--blue-dim);
  padding: 5px 12px; border-radius: 100px; font-weight: 500;
}
.team-exp svg { color: var(--blue); flex-shrink: 0; }

/* ── 16. PORTOFOLIO KLIEN ─────────────────────────────────── */
.clients { padding: var(--section-pad); background: var(--white); }
.clients-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.client-card {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 1.8rem 1rem 1.4rem; background: var(--white);
  border-radius: var(--radius); border: 1.5px solid var(--border); text-align: center;
  transition: transform 0.28s var(--ease-spring), border-color 0.22s, box-shadow 0.22s;
  will-change: transform; position: relative;
}
.client-card:hover { border-color: var(--c, var(--blue)); box-shadow: 0 8px 28px rgba(0,119,182,0.14); transform: translateY(-5px) scale(1.04); z-index: 1; }
.client-logo-wrap {
  width: 88px; height: 88px; border-radius: 14px; background: var(--blue-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.25s; overflow: hidden;
}
.client-card:hover .client-logo-wrap { background: var(--c, var(--blue)); }
.client-logo-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.client-logo-wrap:has(img) { background: transparent; }
.client-card:hover .client-logo-wrap:has(img) { background: transparent; }
.client-initials { font-family: var(--font-display); font-size: 1.45rem; letter-spacing: 0.05em; color: var(--c, var(--blue)); line-height: 1; transition: color 0.25s; }
.client-card:hover .client-initials { color: var(--white); }
.client-name { font-size: 0.70rem; font-weight: 600; color: var(--text-muted); line-height: 1.45; transition: color 0.2s; }
.client-card:hover .client-name { color: var(--c, var(--blue)); }

/* ── 17. PRODUK ───────────────────────────────────────────── */
.product { padding: var(--section-pad); background: var(--light); }
.product-card {
  background: var(--gradient-primary); color: var(--white);
  padding: 3.6rem 3rem; border-radius: var(--radius-lg); text-align: center;
  max-width: 640px; margin: 0 auto; box-shadow: var(--shadow-xl);
  transition: all 0.35s var(--ease-out); position: relative; overflow: hidden;
}
.product-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.product-card::after  { content: ''; position: absolute; bottom: -40px; left: -40px; width: 160px; height: 160px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 28px 72px rgba(0,119,182,0.28); }
.product-header { margin-bottom: 1.6rem; position: relative; z-index: 1; }
.product-header h2 { font-family: var(--font-display); font-size: 2.6rem; margin: 0 0 0.4rem; letter-spacing: 0.04em; }
.product-subtitle { font-size: 1rem; opacity: 0.85; margin: 0; font-weight: 500; }
.product-desc { font-size: 1.02rem; line-height: 1.82; margin-bottom: 2rem; opacity: 0.92; position: relative; z-index: 1; }
.product-card .btn-primary { background: rgba(255,255,255,0.14); color: var(--white); box-shadow: none; border: 2px solid rgba(255,255,255,0.28); position: relative; z-index: 1; }
.product-card .btn-primary:hover { background: rgba(255,255,255,0.24); border-color: rgba(255,255,255,0.5); }

/* ── 18. GALERI ───────────────────────────────────────────── */
.gallery { padding: var(--section-pad); background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 10px; border-radius: var(--radius-lg); overflow: hidden; }
.g-item { position: relative; overflow: hidden; background: var(--light); border-radius: var(--radius); cursor: pointer; }
.g-item--featured { grid-row: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); min-height: 220px; display: block; }
.g-item--featured img { min-height: 480px; }
.g-item:hover img { transform: scale(1.05); }
.g-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: linear-gradient(transparent, rgba(0,0,0,0.65)); font-size: 0.78rem; font-weight: 600; color: var(--white); opacity: 0; transition: opacity 0.3s; letter-spacing: 0.04em; }
.g-item:hover .g-caption { opacity: 1; }

/* ── 19. LIGHTBOX ────────────────────────────────────────── */
.lightbox-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.94); backdrop-filter: blur(6px); z-index: 300; display: none; align-items: center; justify-content: center; animation: fadeIn 0.25s ease; }
.lightbox-overlay.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-content { position: relative; width: 90%; max-width: 900px; animation: zoomIn 0.3s var(--ease-out); }
@keyframes zoomIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-content img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close { position: absolute; top: -44px; right: 0; width: 40px; height: 40px; background: rgba(255,255,255,0.15); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: bold; cursor: pointer; transition: all 0.2s; }
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; background: rgba(255,255,255,0.15); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; cursor: pointer; transition: all 0.2s; }
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: -64px; } .lightbox-next { right: -64px; }

/* ── 20. FAQ ──────────────────────────────────────────────── */
.faq { padding: var(--section-pad); background: var(--light); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 920px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface); transition: all 0.3s ease; }
.faq-item.open { border-color: var(--blue); background: var(--light); box-shadow: 0 4px 20px rgba(0,119,182,0.10); }
.faq-question { width: 100%; padding: 1.6rem; background: transparent; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 0.93rem; font-weight: 600; color: var(--text); transition: color 0.2s; text-align: left; }
.faq-question:hover { color: var(--blue); }
.faq-question svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--blue); transition: transform 0.3s ease; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; padding: 0 1.6rem; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 600px; padding: 0 1.6rem 1.6rem; }
.faq-answer p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 0.8rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul, .faq-answer ol { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; margin-left: 1.2rem; margin-bottom: 0.8rem; }
.faq-answer li { margin-bottom: 0.4rem; }
.faq-answer strong { color: var(--text); }

/* ── 21. TESTIMONIALS ────────────────────────────────────── */
.testimonials { padding: var(--section-pad); background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white); padding: 2.4rem 2rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); border: 1px solid var(--border);
  transition: all 0.35s var(--ease-out); position: relative; overflow: hidden;
}
.testi-card::before { content: '"'; position: absolute; top: -4px; left: 1.8rem; font-size: 5rem; font-family: var(--font-display); color: var(--blue-dim2); line-height: 1; }
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 1rem; position: relative; z-index: 1; }
.testi-stars svg { color: var(--gold); }
.testi-text { color: var(--text-muted); font-size: 0.93rem; line-height: 1.82; margin-bottom: 1.6rem; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.9rem; color: var(--white); flex-shrink: 0; }
.testi-info { display: flex; flex-direction: column; gap: 2px; }
.testi-name { font-weight: 700; color: var(--text); font-size: 0.9rem; }
.testi-title { font-size: 0.75rem; color: var(--text-dim); }

/* ── 22. CTA BANNER ───────────────────────────────────────── */
.cta-banner { padding: 100px 0; background: var(--text); position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -80px; right: -80px; width: 360px; height: 360px; border-radius: 50%; background: rgba(0,119,182,0.14); }
.cta-banner::after  { content: ''; position: absolute; bottom: -60px; left: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(0,180,216,0.07); }
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--blue-dim2); border: 1px solid rgba(0,119,182,0.28); border-radius: 100px; padding: 6px 16px; font-size: 0.70rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); margin-bottom: 1.8rem; }
.cta-badge-dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: pulse-dot 2s ease infinite; }
@keyframes pulse-dot { 0%, 100% { box-shadow: 0 0 0 0 rgba(0,180,216,0.6); } 50% { box-shadow: 0 0 0 6px rgba(0,180,216,0); } }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--white); line-height: 1.05; margin-bottom: 1.2rem; letter-spacing: 0.01em; }
.cta-banner h2 em { font-style: normal; color: var(--cyan); }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.60); line-height: 1.75; margin-bottom: 2.6rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-wa { display: inline-flex; align-items: center; gap: 10px; background: var(--green); color: var(--white); font-weight: 700; font-size: 0.92rem; padding: 16px 32px; border-radius: var(--radius-sm); transition: all 0.25s; box-shadow: 0 6px 20px rgba(37,211,102,0.35); letter-spacing: 0.03em; }
.btn-cta-wa:hover { background: #1fab5c; transform: translateY(-3px); box-shadow: 0 10px 28px rgba(37,211,102,0.50); }
.btn-cta-phone { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--white); font-weight: 600; font-size: 0.92rem; padding: 15px 32px; border: 2px solid rgba(255,255,255,0.22); border-radius: var(--radius-sm); transition: all 0.25s; letter-spacing: 0.03em; }
.btn-cta-phone:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.06); transform: translateY(-3px); }

/* ── 23. CONTACT ──────────────────────────────────────────── */
.contact { padding: var(--section-pad); background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info p { color: var(--text-muted); margin-bottom: 2rem; max-width: 360px; line-height: 1.8; }
.contact-list { display: flex; flex-direction: column; gap: 8px; }
.contact-row { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: var(--surface); transition: all 0.22s; cursor: pointer; }
.contact-row:hover { border-color: var(--blue); background: var(--light-2); }
.contact-row--featured { border-color: rgba(37,211,102,0.28); background: rgba(37,211,102,0.04); }
.contact-row--featured:hover { border-color: var(--green); background: rgba(37,211,102,0.08); }
.crow-icon { width: 40px; height: 40px; background: var(--blue-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }
.crow-icon--green { background: rgba(37,211,102,0.10); color: var(--green); }
.crow-label { display: block; font-size: 0.68rem; color: var(--text-dim); margin-bottom: 2px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.contact-row div:nth-child(2) strong { font-size: 0.88rem; color: var(--text); }
.crow-arrow { margin-left: auto; color: var(--text-dim); }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; background: var(--surface); padding: 2.2rem; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: var(--text); letter-spacing: 0.06em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; font-family: var(--font-body); font-size: 1rem; color: var(--text); transition: all 0.2s; min-height: 46px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,119,182,0.10); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { display: flex; gap: 12px; }
.form-submit button { flex: 1; padding: 13px 20px; border: none; border-radius: var(--radius-sm); font-size: 0.86rem; font-weight: 700; cursor: pointer; transition: all 0.25s; letter-spacing: 0.04em; text-transform: uppercase; }
.form-submit .btn-submit { background: var(--gradient-primary); color: var(--white); box-shadow: 0 4px 14px rgba(0,119,182,0.25); }
.form-submit .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,119,182,0.35); }
.form-submit .btn-reset { background: transparent; color: var(--text-muted); border: 1.5px solid var(--border); }
.form-submit .btn-reset:hover { color: var(--text); border-color: var(--text-muted); }
.form-error { font-size: 0.76rem; color: #e53e3e; display: none; margin-top: 2px; }
.form-group.has-error .form-error { display: block; }
.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea { border-color: #e53e3e; box-shadow: 0 0 0 3px rgba(229,62,62,0.10); }
.contact-map-wrap { margin-top: 2rem; display: flex; flex-direction: column; gap: 0; }
.contact-map { width: 100%; height: 380px; border: none; border-radius: var(--radius) var(--radius) 0 0; filter: grayscale(15%) contrast(1.05); }
.btn-maps { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--surface); border: 1.5px solid var(--border); border-top: none; border-radius: 0 0 var(--radius) var(--radius); padding: 13px; font-size: 0.83rem; font-weight: 600; color: var(--text-muted); transition: all 0.2s; }
.btn-maps:hover { color: var(--blue); background: var(--light-2); border-color: var(--blue); }

/* ── 24. FOOTER ───────────────────────────────────────────── */
.footer { background: var(--text); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.50); margin-top: 1.2rem; margin-bottom: 1.4rem; max-width: 300px; line-height: 1.82; }
.footer-brand .logo { display: flex; align-items: center; margin-bottom: 1.2rem; width: 100%; }
.footer-brand .logo-img { height: 72px; width: 72px; object-fit: contain; object-position: left; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }
.footer-contact-short { display: flex; flex-direction: column; gap: 4px; }
.footer-contact-short a { font-size: 0.84rem; color: rgba(255,255,255,0.50); transition: color 0.2s; }
.footer-contact-short a:hover { color: var(--cyan); }
.footer-col h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.2rem; }
.footer-col a, .footer-col span { display: block; font-size: 0.86rem; color: rgba(255,255,255,0.60); margin-bottom: 0.55rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { background: rgba(0,0,0,0.18); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.30); }

/* ── 25. BACK TO TOP ──────────────────────────────────────── */
.back-to-top { position: fixed; bottom: 96px; right: 28px; z-index: 199; width: 46px; height: 46px; background: var(--gradient-primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,119,182,0.35); opacity: 0; pointer-events: none; transform: translateY(14px); transition: opacity 0.3s, transform 0.3s, box-shadow 0.2s; }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,119,182,0.50); }

/* ── 26. FLOATING WA ──────────────────────────────────────── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 200; width: 56px; height: 56px; background: var(--green); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 22px rgba(37,211,102,0.45); transition: all 0.25s; }
.wa-float:hover { transform: scale(1.10); box-shadow: 0 8px 32px rgba(37,211,102,0.60); }
.wa-tooltip { position: absolute; right: 68px; background: rgba(0,0,0,0.82); color: var(--white); font-size: 0.76rem; font-weight: 600; padding: 6px 12px; border-radius: var(--radius-sm); white-space: nowrap; pointer-events: none; opacity: 0; transform: translateX(8px); transition: opacity 0.2s, transform 0.2s; }
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ── 27. SCROLL REVEAL ────────────────────────────────────── */
[data-reveal] { opacity: 0; transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); }
[data-reveal="up"]    { transform: translateY(36px); }
[data-reveal="left"]  { transform: translateX(-54px); }
[data-reveal="right"] { transform: translateX(54px); }
[data-reveal="hero"]  { opacity: 0; transform: translateY(24px); }
[data-reveal].visible { opacity: 1; transform: translate(0); }

/* ── 28. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid     { grid-template-columns: 1fr; gap: 60px; }
  .about-visual   { order: -1; }
  .about-float-badge { left: 0; bottom: -20px; }
  .about-accent-box  { top: -14px; right: 0; }
  .contact-grid   { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand   { grid-column: span 2; }
  .services-2col  { grid-template-columns: 1fr !important; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid       { grid-template-columns: 1fr; max-width: 100%; }
  .visi-misi-grid { grid-template-columns: 1fr; gap: 24px; }
  .advantages-grid{ grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .clients-grid   { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .stats-grid     { grid-template-columns: repeat(4, 1fr) !important; }
  .stat-sep:nth-child(6), .stat-sep:nth-child(8) { display: none; }
  .process-grid   { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-grid::before { display: none; }
  .team-grid      { grid-template-columns: repeat(2, 1fr); max-width: 600px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-wa { display: none; }
  .hamburger { display: flex; }
  .nav-links { position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(255,255,255,0.99); backdrop-filter: blur(20px); flex-direction: column; padding: 1.5rem 24px 2rem; gap: 4px; border-bottom: 1px solid var(--border); transform: translateY(-110%); transition: transform 0.35s var(--ease-out); z-index: 99; }
  .nav-links.open { display: flex; transform: translateY(0); }
  .nav-link { padding: 12px 16px; font-size: 1rem; color: var(--text); }
  .nav-link.active { background: var(--blue-dim); }
  .btn-primary, .btn-ghost { min-height: 48px; padding: 14px 24px; font-size: 0.95rem; }
  .hero { padding-bottom: 60px; }
  .hero-body { flex-direction: column; align-items: flex-start; }
  .hero-card { display: none; }
  .hero-title { font-size: clamp(2.8rem, 11vw, 5rem); }
  .hero-trust { flex-wrap: wrap; gap: 12px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0; }
  .stat-sep { display: none !important; }
  .stat { border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .about, .visi-misi, .services, .advantages, .clients,
  .product, .gallery, .faq, .testimonials, .contact,
  .process, .team, .cta-banner { padding: 72px 0; }
  .section-header { margin-bottom: 2.6rem; }
  .section-heading { font-size: clamp(2rem, 7vw, 2.8rem); }
  .about-img-wrap img, .about-img-wrap .img-placeholder { height: 300px; }
  .about-float-badge { left: 0; bottom: -16px; }
  .about-accent-box { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .visi-misi-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-grid::before { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; margin: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .g-item--featured { grid-column: span 2; }
  .g-item--featured img { min-height: 260px; }
  .lightbox-content { width: 95%; }
  .lightbox-nav { position: fixed; width: 40px; height: 40px; font-size: 16px; top: 50%; transform: translateY(-50%); }
  .lightbox-prev { left: 8px; } .lightbox-next { right: 8px; }
  .contact-grid { gap: 32px; }
  .contact-form { padding: 1.4rem; }
  .contact-map  { height: 260px; }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; min-height: 48px; }
  .form-group textarea { min-height: 90px; }
  .form-submit button { min-height: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 6px; }
  .wa-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
  .back-to-top { width: 42px; height: 42px; bottom: 80px; right: 20px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-cta-wa, .btn-cta-phone { width: 100%; max-width: 320px; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.4rem, 12vw, 3.6rem); }
  .hero-cta   { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; gap: 6px; }
  .g-item--featured { grid-column: span 1; }
  .g-item--featured img { min-height: 240px; }
  .visi-misi-grid  { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .team-grid       { grid-template-columns: 1fr; }
  .process-grid    { grid-template-columns: 1fr; }
  .clients-grid    { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .lightbox-content { width: 100%; border-radius: 0; }
  .lightbox-nav { display: none; }
  .lightbox-close { top: 10px; right: 10px; }
  .product-card { padding: 2.2rem 1.4rem; }
  .form-submit { flex-direction: column; }
  .form-submit button { width: 100%; }
  .faq-question { font-size: 0.88rem; padding: 1.2rem; }
  .faq-answer   { padding: 0 1.2rem; }
  .faq-item.open .faq-answer { padding: 0 1.2rem 1.2rem; }
  .about-float-badge { position: relative; bottom: auto; left: auto; margin-top: 1rem; justify-content: center; }
}
