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

:root {
  --blue: #1a56db;
  --blue-dark: #1040b0;
  --blue-deep: #0d2d6e;
  --blue-light: #e8f0fe;
  --blue-mid: #3b82f6;
  --orange: #f97316;
  --orange-dark: #c2540a;
  --orange-light: #fff3e8;
  --white: #ffffff;
  --off-white: #f8faff;
  --light-bg: #f0f5ff;
  --dark-bg: #0a1628;
  --dark-surface: #111d35;
  --dark-border: #1e3058;
  --text: #0f1f3d;
  --text-soft: #4a5a7a;
  --text-muted: #8a97b0;
  --font: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --r: 14px;
  --r-lg: 22px;
  --shadow: 0 4px 24px rgba(26,86,219,0.1);
  --shadow-lg: 0 16px 48px rgba(26,86,219,0.15);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--text); font-size: 16px; line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(26,86,219,0.1);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { font-family: var(--font); font-size: 22px; font-weight: 800; color: var(--blue-deep); letter-spacing: -0.5px; }
.logo span { color: var(--orange); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--blue); }
.btn-nav {
  background: var(--orange) !important; color: var(--white) !important;
  padding: 9px 20px; border-radius: 99px;
  font-size: 13px !important; font-weight: 700 !important;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
  box-shadow: 0 4px 14px rgba(249,115,22,0.35) !important;
}
.btn-nav:hover { background: var(--orange-dark) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,0.45) !important; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--white); border-top: 1px solid var(--blue-light);
  padding: 0.5rem 0;
}
.mobile-menu a { padding: 13px 2rem; font-size: 15px; font-weight: 500; color: var(--text-soft); transition: color 0.2s, background 0.2s; }
.mobile-menu a:hover { color: var(--blue); background: var(--blue-light); }
.mobile-cta { background: var(--orange) !important; color: var(--white) !important; margin: 0.75rem 1.5rem; border-radius: 99px; text-align: center; font-weight: 700 !important; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; padding: 120px 2rem 80px;
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; gap: 5rem;
  position: relative;
}
.hero-orb {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: -1;
  filter: blur(80px);
}
.hero-orb-1 { width: 500px; height: 500px; background: rgba(26,86,219,0.08); top: -100px; right: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(249,115,22,0.06); bottom: 0; left: -150px; }
.hero-content { flex: 1; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light); color: var(--blue);
  font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 99px;
  margin-bottom: 1.5rem; letter-spacing: 0.3px;
}
.badge-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 1.05; letter-spacing: -2px;
  color: var(--text); margin-bottom: 1.5rem; font-weight: 700;
}
.hero h1 em { color: var(--blue); font-style: italic; }
.hero h1 strong { color: var(--orange); font-style: normal; }
.hero-sub { font-size: 17px; color: var(--text-soft); max-width: 460px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; align-items: center; gap: 2rem; }
.stat strong { display: block; font-size: 22px; font-weight: 800; color: var(--blue); }
.stat span { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: rgba(26,86,219,0.15); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 13px 28px; border-radius: 99px;
  font-size: 15px; font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(249,115,22,0.3);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(249,115,22,0.4); }
.btn-primary.full { width: 100%; justify-content: center; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--blue);
  padding: 13px 28px; border-radius: 99px;
  font-size: 15px; font-weight: 600;
  border: 2px solid var(--blue-light);
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--blue); background: var(--blue-light); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--blue);
  padding: 13px 28px; border-radius: 99px;
  font-size: 15px; font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline-white {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--white);
  padding: 13px 28px; border-radius: 99px;
  font-size: 15px; font-weight: 600;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.2s;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ===== HERO VISUAL ===== */
.hero-visual { flex: 0 0 420px; position: relative; height: 420px; z-index: 1; }
.visual-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(26,86,219,0.1);
  box-shadow: var(--shadow-lg);
}
.main-card {
  width: 360px; padding: 0; overflow: hidden;
  animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.card-header {
  background: var(--dark-surface); padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--dark-border);
}
.card-dots { display: flex; gap: 6px; }
.card-dots span { width: 10px; height: 10px; border-radius: 50%; }
.card-dots span:nth-child(1) { background: #ff5f57; }
.card-dots span:nth-child(2) { background: #febc2e; }
.card-dots span:nth-child(3) { background: #28c840; }
.card-title-bar { font-size: 12px; color: rgba(255,255,255,0.5); font-family: monospace; }
.code-lines { background: #0f1e38; padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 8px; }
.code-line { font-family: 'Courier New', monospace; font-size: 13px; line-height: 1.5; }
.code-line.indent { padding-left: 1.5rem; }
.code-line.indent2 { padding-left: 3rem; }
.c-blue { color: #79b8ff; }
.c-orange { color: #ffab70; }
.c-white { color: #e1e4e8; }
.c-green { color: #85e89d; }
.card-output {
  background: var(--dark-bg); padding: 12px 20px;
  display: flex; align-items: center; gap: 10px;
  border-top: 1px solid var(--dark-border);
}
.output-label { font-size: 10px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; }
.output-val { font-size: 12px; color: #85e89d; font-family: monospace; }
.float-card {
  position: absolute; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  width: auto;
}
.fc-1 { bottom: 40px; right: -30px; animation: floatCard2 4s ease-in-out infinite; }
.fc-2 { top: 20px; right: -40px; animation: floatCard3 4.5s ease-in-out infinite; }
@keyframes floatCard2 { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-8px) rotate(-2deg)} }
@keyframes floatCard3 { 0%,100%{transform:translateY(0) rotate(2deg)} 50%{transform:translateY(-10px) rotate(2deg)} }
.fc-icon { font-size: 22px; }
.fc-label { font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; }
.fc-sub { font-size: 11px; color: var(--text-muted); }

/* ===== SECTIONS ===== */
.section { padding: 100px 2rem; }
.section-dark { background: var(--dark-bg); }
.section-light { background: var(--light-bg); }
.container { max-width: 1140px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--orange); margin-bottom: 12px;
}
.section-eyebrow.light { color: rgba(249,115,22,0.8); }
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.1; letter-spacing: -1.5px;
  color: var(--text); margin-bottom: 3rem; font-weight: 700;
}
.section-heading.light { color: var(--white); }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.svc-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2rem; border: 1.5px solid rgba(26,86,219,0.08);
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(26,86,219,0.2); }
.svc-featured { border-color: var(--orange); box-shadow: 0 8px 32px rgba(249,115,22,0.12); }
.svc-featured:hover { border-color: var(--orange-dark); box-shadow: 0 16px 48px rgba(249,115,22,0.2); }
.svc-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 1.25rem;
}
.svc-icon-wrap.orange { background: var(--orange-light); }
.svc-icon-wrap.blue { background: var(--blue-light); }
.svc-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.svc-card > p { font-size: 14px; color: var(--text-soft); margin-bottom: 1.25rem; line-height: 1.65; }
.svc-list { display: flex; flex-direction: column; gap: 6px; }
.svc-list li { font-size: 13px; color: var(--text-soft); padding-left: 1rem; position: relative; }
.svc-list li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; font-size: 11px; top: 2px; }
.svc-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--orange); color: var(--white);
  font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 99px;
  letter-spacing: 0.5px;
}

/* ===== STEPS ===== */
.steps-grid {
  display: flex; align-items: flex-start;
  gap: 0; flex-wrap: wrap;
}
.step-item {
  flex: 1; min-width: 200px;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-lg); padding: 2rem 1.75rem;
  transition: border-color 0.25s, transform 0.25s;
}
.step-item:hover { border-color: var(--orange); transform: translateY(-4px); }
.step-connector {
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 0.5rem; margin-top: 1rem; flex-shrink: 0;
  font-size: 18px; color: var(--dark-border);
}
.step-connector::after { content: '→'; }
.step-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700;
  color: var(--orange); opacity: 0.3;
  line-height: 1; margin-bottom: 0.75rem;
}
.step-icon { font-size: 28px; margin-bottom: 0.75rem; }
.step-item h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-item p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ===== KEUNGGULAN ===== */
.kng-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.kng-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15; letter-spacing: -1px;
  color: var(--text); margin-bottom: 1.25rem; font-weight: 700;
}
.kng-quote em { color: var(--orange); font-style: italic; }
.kng-big > p { font-size: 15px; color: var(--text-soft); margin-bottom: 2rem; max-width: 400px; }
.kng-items { display: flex; flex-direction: column; gap: 1.25rem; }
.kng-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white); border-radius: var(--r);
  padding: 1.25rem; border: 1px solid rgba(26,86,219,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.kng-item:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.kng-item-icon { font-size: 22px; flex-shrink: 0; }
.kng-item strong { font-size: 14px; font-weight: 700; color: var(--text); display: block; margin-bottom: 3px; }
.kng-item p { font-size: 13px; color: var(--text-soft); margin: 0; }

/* ===== TESTIMONI ===== */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testi-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2rem; border: 1.5px solid rgba(26,86,219,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-featured { border-color: var(--blue); box-shadow: 0 8px 32px rgba(26,86,219,0.12); }
.testi-stars { color: var(--orange); font-size: 16px; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-card > p { font-size: 14px; color: var(--text-soft); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 16px; font-weight: 700; flex-shrink: 0;
}
.testi-author strong { font-size: 14px; font-weight: 700; color: var(--text); display: block; }
.testi-author span { font-size: 12px; color: var(--text-muted); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 60%, #2563eb 100%);
  padding: 80px 2rem; position: relative; overflow: hidden;
}
.cta-orb {
  position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(249,115,22,0.15); pointer-events: none;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); color: var(--white); font-weight: 700; letter-spacing: -1px; margin-bottom: 8px; }
.cta-inner p { font-size: 16px; color: rgba(255,255,255,0.7); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== KONTAK ===== */
.kontak-wrap { display: flex; gap: 4rem; align-items: flex-start; flex-wrap: wrap; }
.kontak-left { flex: 1; min-width: 280px; }
.kontak-sub { font-size: 15px; color: var(--text-soft); margin-bottom: 2rem; }
.kontak-list { display: flex; flex-direction: column; gap: 1rem; }
.kontak-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border-radius: var(--r);
  padding: 1rem 1.25rem; border: 1px solid rgba(26,86,219,0.1);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.kontak-item:hover { transform: translateX(4px); box-shadow: var(--shadow); border-color: var(--blue); }
.kontak-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.kontak-icon.ig { background: var(--orange-light); }
.kontak-icon.wa { background: #e8f5e9; }
.kontak-item strong { font-size: 13px; font-weight: 700; color: var(--text); display: block; margin-bottom: 2px; }
.kontak-item span { font-size: 13px; color: var(--text-soft); }
.kontak-right { flex: 1; min-width: 300px; }
.kontak-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2rem; border: 1.5px solid rgba(26,86,219,0.1);
  box-shadow: var(--shadow-lg);
}
.kontak-card h3 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.kontak-card > p { font-size: 14px; color: var(--text-soft); margin-bottom: 1.5rem; }
.kontak-info-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.75rem; }
.info-row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-soft); }
.info-row span:first-child { font-size: 16px; flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer { background: var(--dark-bg); padding: 3rem 2rem 0; }
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 2rem; padding-bottom: 3rem;
  border-bottom: 1px solid var(--dark-border);
}
.footer-brand .logo { color: var(--white); font-size: 20px; margin-bottom: 6px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; align-items: center; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; flex-direction: column; gap: 6px; }
.footer-social a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-social a:hover { color: var(--orange); }
.footer-bottom { max-width: 1140px; margin: 0 auto; padding: 1.25rem 0; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ===== CROSS PROMO ===== */
.crosspromo {
  padding: 80px 2rem;
  background: var(--off-white);
  border-top: 1px solid rgba(26,86,219,0.08);
  position: relative; overflow: hidden;
}
.crosspromo-bg {
  position: absolute; right: -120px; top: -120px;
  width: 480px; height: 480px; border-radius: 50%;
  background: rgba(249,115,22,0.06); pointer-events: none;
}
.cp-inner { display: flex; align-items: center; gap: 4rem; flex-wrap: wrap; }
.cp-left { flex: 1; min-width: 280px; }
.cp-eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--orange); margin-bottom: 14px;
}
.cp-left h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--text); line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 1rem; font-weight: 700;
}
.cp-left h2 em { color: var(--blue); font-style: italic; }
.cp-left p { font-size: 15px; color: var(--text-soft); line-height: 1.7; margin-bottom: 2rem; max-width: 420px; }
.cp-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-cp-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white);
  padding: 12px 24px; border-radius: 99px;
  font-size: 14px; font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(26,86,219,0.3);
}
.btn-cp-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,86,219,0.4); }
.btn-cp-ghost {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--text-soft);
  padding: 12px 24px; border-radius: 99px;
  font-size: 14px; font-weight: 600;
  border: 1.5px solid rgba(26,86,219,0.15);
  transition: all 0.2s;
}
.btn-cp-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.cp-right { flex: 0 0 360px; }
.cp-card {
  background: var(--white);
  border: 1.5px solid rgba(26,86,219,0.1);
  border-radius: 20px; padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.cp-logo { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.cp-logo span { color: var(--orange); }
.cp-tagline { font-size: 13px; color: var(--text-muted); margin-bottom: 1.5rem; font-style: italic; }
.cp-services { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.5rem; }
.cp-svc {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-soft);
  background: var(--off-white);
  padding: 9px 14px; border-radius: 10px;
  border: 1px solid rgba(26,86,219,0.06);
}
.cp-svc span { font-size: 16px; }
.cp-flow {
  display: flex; align-items: center; gap: 8px;
  background: var(--blue-light); border: 1px solid rgba(26,86,219,0.15);
  border-radius: 12px; padding: 12px 14px; flex-wrap: wrap;
}
.cp-step { font-size: 12px; color: var(--text-soft); }
.cp-step strong { color: var(--blue); }
.cp-arrow { font-size: 14px; color: var(--orange); font-weight: 700; }

@media (max-width: 768px) {
  .cp-right { flex: 1 1 100%; }
  .cp-inner { gap: 2.5rem; }
}

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s, transform 0.55s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding-top: 100px; gap: 3rem; }
  .hero-visual { order: -1; width: 100%; height: 300px; display: flex; justify-content: center; }
  .main-card { width: 300px; }
  .fc-1 { right: 20px; bottom: 0; }
  .fc-2 { right: 10px; top: 0; }
  .hero h1 { font-size: 42px; }
  .kng-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .steps-grid { gap: 1rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 70px 1.5rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .kontak-wrap { gap: 2.5rem; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }
  .hero-visual { height: 260px; }
  .main-card { width: 260px; }
  .fc-1, .fc-2 { display: none; }
}

/* ===== GALERI FOTO TESTIMONI ===== */
.testi-gallery-wrap {
  margin-top: 3rem;
}

.testi-gallery-label {
  font-size: 13px;
  font-weight: 600;
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.testi-masonry {
  columns: 3;
  column-gap: 16px;
}

@media (max-width: 768px) {
  .testi-masonry { columns: 2; }
}

@media (max-width: 480px) {
  .testi-masonry { columns: 1; }
}

.testi-photo-card {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.testi-photo-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.testi-photo-caption {
  padding: 10px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-photo-caption strong {
  font-size: 13px;
  color: #0f172a;
}

.testi-photo-caption span {
  font-size: 12px;
  color: #64748b;
}