/* ============================================
   Intelektis — Design System
   Inspired by Apple, Stripe, Linear
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(140, 198, 63, 0.2);
  color: #000;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #000;
  background: #fff;
  line-height: 1.625;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea { font-family: inherit; }

:focus-visible {
  outline: 2px solid #8cc63f;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.green { color: #8cc63f; }
.blue  { color: #2e3192; }

/* ---------- Typography ---------- */
.label {
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #8cc63f;
  font-weight: 500;
}

.section-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 54px;
  letter-spacing: -1.5px;
  line-height: 1.18;
  color: #000;
}

.section-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 520px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 20px 48px;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.btn-contact { white-space: nowrap; }

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  padding: 12px 48px;
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: flex;
  background: #f0f0f0;
  border-radius: 8px;
  padding: 3px;
}

.lang-opt {
  padding: 6px 14px;
  border: none;
  background: transparent;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  color: #999;
  cursor: pointer;
  transition: all 0.25s;
}

.lang-opt.active {
  background: #fff;
  color: #000;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.btn-contact {
  padding: 10px 24px;
  background: #8cc63f;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  transition: all 0.25s;
}

.btn-contact:hover {
  background: #7ab535;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(140, 198, 63, 0.3);
}

.header-logo {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.header-logo:hover { opacity: 0.8; }

.header-logo-img {
  height: auto;
  width: 190px;
  object-fit: contain;
}

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  border-radius: 8px;
  transition: background 0.2s;
}

.hamburger:hover {
  background: rgba(0, 0, 0, 0.04);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Navigation ---------- */
.navbar {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 600;
  font-size: 13px;
  color: #000;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover { color: #8cc63f; }

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8cc63f;
}

/* ---------- Mobile Overlay ---------- */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #000;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: #8cc63f;
}

.mobile-nav .lang-toggle-mobile {
  margin-top: 24px;
  display: flex;
  background: #f0f0f0;
  border-radius: 8px;
  padding: 3px;
  width: fit-content;
}

.clients { display: none; }

/* ---------- WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 10000;
  width: 80px;
  height: 80px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(37, 211, 102, 0.4));
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.08);
  filter: drop-shadow(0 8px 20px rgba(37, 211, 102, 0.55));
}

.whatsapp-float img {
  width: 80px;
  height: 80px;
  display: block;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  padding: 140px 48px 80px;
}

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #8cc63f;
}

.hero-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 60px;
  letter-spacing: -2px;
  line-height: 1.1;
  color: #000;
}

.hero-sub {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  padding-top: 8px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: #8cc63f;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: #7ab535;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(140, 198, 63, 0.35);
}

.btn-primary.fit { width: fit-content; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: transparent;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-ghost:hover {
  border-color: #8cc63f;
  color: #8cc63f;
  transform: translateY(-2px);
}

.hero-mockup { position: relative; }

/* Floating stat cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.float-top-right {
  top: -16px;
  right: -32px;
  animation-delay: 0s;
}

.float-bottom-left {
  bottom: 40px;
  left: -40px;
  animation-delay: 1s;
}

.float-bottom-right {
  bottom: -12px;
  right: 32px;
  animation-delay: 2s;
}

.float-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.green-bg { background: #8cc63f; }
.blue-bg { background: #2e3192; }

.float-value {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: #000;
  line-height: 1.2;
}

.float-label {
  display: block;
  font-size: 11px;
  color: #888;
  white-space: nowrap;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.laptop-frame {
  background: #2e3192;
  border-radius: 20px;
  padding: 20px 20px 0;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(46, 49, 146, 0.2);
  transition: transform 0.4s ease;
}

.laptop-frame:hover {
  transform: scale(1.02);
}

.laptop-screen {
  width: 100%;
  border-radius: 10px 10px 0 0;
  display: block;
}

/* Video Placeholder */
.video-placeholder {
  position: relative;
  cursor: pointer;
}

.video-poster {
  width: 100%;
  border-radius: 10px 10px 0 0;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 2;
  opacity: 0.9;
}

.play-btn svg {
  width: 56px;
  height: 56px;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}

.video-placeholder::after {
  content: 'Video coming soon';
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

/* ==========================================================
   CLIENTS MARQUEE
   ========================================================== */
.clients {
  padding: 48px 0;
  background: #fff;
  overflow: hidden;
}

.clients-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #999;
  text-align: center;
  margin-bottom: 28px;
}

.marquee-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 48px;
  padding: 0 24px;
}

.marquee-item span {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #bbb;
  letter-spacing: -0.3px;
}

.marquee-item img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================
   BENEFITS
   ========================================================== */
.benefits {
  padding: 80px 0;
}

.benefits-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: none;
  margin-bottom: 48px;
  text-align: center;
  align-items: center;
}

.benefits-header .section-desc {
  margin: 0 auto;
  max-width: 680px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: #fafafa;
  border-color: rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(140, 198, 63, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.3px;
}

.benefit-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ==========================================================
   FULL WIDTH IMAGE
   ========================================================== */
.full-image {
  padding: 0 0 80px;
}

.full-image-img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  max-height: 480px;
}

/* ==========================================================
   BIG PICTURE
   ========================================================== */
.big-picture {
  padding: 80px 0;
}

.big-picture-content {
  display: flex;
  gap: 64px;
  align-items: stretch;
}

.big-picture-content > * {
  flex: 1;
}

.big-picture-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.big-picture-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.big-picture-right {
  border-radius: 20px;
  overflow: hidden;
}

.big-picture-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-props {
  display: flex;
  flex-direction: column;
}

.value-prop {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.25s;
}

.value-prop:hover {
  padding-left: 8px;
  border-color: rgba(140, 198, 63, 0.2);
}

.value-prop:last-child { border-bottom: none; }

.value-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #8cc63f;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 24px;
}

.value-prop p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

/* ==========================================================
   SERVICES
   ========================================================== */
.services {
  padding: 80px 0;
  background: #f9faf7;
}

.services-header {
  margin-bottom: 48px;
}

/* Service Cards */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.svc-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 48px 40px;
  border-radius: 24px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.4), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.svc-card:hover::after {
  opacity: 1;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.svc-green {
  background: linear-gradient(160deg, #f4fbe8 0%, #e8f5d6 100%);
  border: 1px solid rgba(140, 198, 63, 0.15);
}

.svc-blue {
  background: linear-gradient(160deg, #ecedf8 0%, #e0e1f0 100%);
  border: 1px solid rgba(46, 49, 146, 0.1);
}

.svc-icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.svc-icon-svg {
  width: 48px;
  height: 48px;
}

.svc-tag {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  width: fit-content;
}

.svc-green .svc-tag {
  color: #5a8a1a;
  background: rgba(140, 198, 63, 0.15);
}

.svc-blue .svc-tag {
  color: #2e3192;
  background: rgba(46, 49, 146, 0.1);
}

.svc-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: #000;
}

.svc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0;
}

.svc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #444;
  line-height: 1.4;
}

.svc-features li svg {
  flex-shrink: 0;
}

.svc-cta {
  font-weight: 700;
  font-size: 15px;
  padding-top: 8px;
  transition: all 0.25s;
}

.svc-green .svc-cta { color: #6a9e22; }
.svc-blue .svc-cta { color: #2e3192; }

.svc-card:hover .svc-cta {
  text-decoration: underline;
  letter-spacing: 0.5px;
}

.service-badge {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #2e3192;
  background: rgba(46, 49, 146, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  width: fit-content;
}

.service-row-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.8px;
  line-height: 1.1;
}

.service-row-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.service-row-link {
  font-weight: 700;
  font-size: 14px;
  color: #8cc63f;
  padding-top: 4px;
  transition: color 0.2s;
}

.service-row:hover .service-row-link {
  color: #7ab535;
}

/* ==========================================================
   TESTIMONIAL
   ========================================================== */
.testimonial {
  padding: 80px 0;
}

.testimonial-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.testimonial-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.quote-icon { flex-shrink: 0; }

blockquote {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.5px;
  line-height: 1.4;
  color: #111;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #2e3192;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  font-weight: 700;
  font-size: 15px;
}

.author-role {
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.author-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}

/* ==========================================================
   CONTACT
   ========================================================== */
.contact {
  padding: 80px 0;
  background: #f9faf7;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 12px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #333;
}

.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 600;
  color: #555;
  font-size: 13px;
}

.form-group input,
.form-group textarea {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: all 0.25s;
  resize: none;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #8cc63f;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.12);
}

.form-group select.form-select {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: all 0.25s;
  background: #fafafa;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select.form-select:focus {
  border-color: #8cc63f;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238cc63f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.file-upload-zone {
  border: 2px dashed #d0d0d0;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  background: #fafafa;
}

.file-upload-zone:hover,
.file-upload-zone.dragover {
  border-color: #8cc63f;
  background: rgba(140, 198, 63, 0.04);
}

.file-upload-zone.dragover {
  box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.12);
}

.file-upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.file-upload-text {
  font-size: 15px;
  color: #555;
}

.file-upload-browse {
  color: #8cc63f;
  font-weight: 700;
  text-decoration: underline;
}

.file-upload-hint {
  font-size: 12px;
  color: #999;
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  width: 100%;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  font-size: 13px;
  color: #333;
}

.file-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.file-item-icon.pdf { background: rgba(220, 38, 38, 0.08); color: #dc2626; }
.file-item-icon.doc { background: rgba(37, 99, 235, 0.08); color: #2563eb; }
.file-item-icon.img { background: rgba(140, 198, 63, 0.12); color: #8cc63f; }
.file-item-icon.default { background: rgba(0, 0, 0, 0.04); color: #666; }

.file-item-info {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.file-item-name {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-item-size {
  font-size: 11px;
  color: #999;
}

.file-item-remove {
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
  color: #999;
}

.file-item-remove:hover {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}

.btn-submit {
  background: #8cc63f;
  color: #fff;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-submit:hover::before {
  transform: translateX(100%);
}

.btn-submit:hover {
  background: #7ab535;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(140, 198, 63, 0.3);
}

/* ==========================================================
   LANDSCAPE
   ========================================================== */
.landscape {
  padding: 0 0 80px;
}

.landscape-img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  max-height: 500px;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer-cta {
  background: #2e3192;
  position: relative;
  overflow: hidden;
}

.footer-cta-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  z-index: 0;
}

.footer-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.75;
  display: block;
  border: none;
  outline: none;
}

.footer-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #2e3192 0%, #2e3192 18%, transparent 100%);
  pointer-events: none;
}

.footer-cta-inner {
  position: relative;
  z-index: 1;
  min-height: 400px;
}

.footer-cta-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 72px 0;
  max-width: 520px;
}

.footer-cta-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: #fff;
}

.footer-cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.footer-cta .btn-primary {
  padding: 16px 40px;
  font-size: 16px;
  width: fit-content;
}

.footer-main {
  padding: 64px 0;
  background: #1a1a2e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 10px;
  padding-top: 4px;
}

.footer-social-link {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.footer-social-link:hover {
  background: #8cc63f;
  transform: translateY(-2px);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 4px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
}

.footer-nav a:hover { color: #8cc63f; }

.footer-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.footer-bottom {
  padding: 20px 0;
  background: #15152a;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: #8cc63f; }

/* ==========================================================
   CENTERED HERO (SyokBill, WebDev, Career, Contact)
   ========================================================== */
.hero-center {
  padding-bottom: 0;
}

.hero-inner-center {
  max-width: 860px;
  margin: 0 auto;
  grid-template-columns: 1fr;
  text-align: center;
}

.hero-text-center {
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-sub-center {
  max-width: 560px;
  margin: 0 auto;
}

.hero-actions-center {
  justify-content: center;
  padding-bottom: 40px;
}

.hero-image-overlap {
  position: relative;
  z-index: 1;
  margin-top: -250px;
}

.sb-brand-center {
  justify-content: center;
  margin-top: 8px;
}

.sb-note {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-top: 16px;
  color: #333;
}

/* ==========================================================
   CAREER FORM
   ========================================================== */
.career-form-section {
  background: #fff;
}

.career-benefits-header {
  text-align: center;
  margin-bottom: 48px;
}

.career-benefits-heading {
  max-width: 600px;
  margin: 12px auto 0;
}

.career-form-header {
  text-align: center;
  margin-bottom: 48px;
}

.career-form-heading {
  margin-top: 12px;
}

.career-form-desc {
  max-width: 520px;
  margin: 12px auto 0;
}

.career-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================
   CAREER BENEFITS
   ========================================================== */
.career-benefits {
  padding: 80px 0;
  background: #f9faf7;
}

.career-perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.career-perk {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.career-perk:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(140, 198, 63, 0.2);
}

.career-perk-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(140, 198, 63, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-perk-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.career-perk-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}

/* ==========================================================
   CAREER CTA BANNER
   ========================================================== */
.career-cta-banner {
  padding: 64px 0;
  background: #2e3192;
}

.career-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.career-cta-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #fff;
}

.career-cta-heading span {
  color: #8cc63f;
}

.career-cta-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 12px;
  line-height: 1.6;
}

.career-cta-text {
  max-width: 560px;
}

.career-form-header .section-heading {
  font-size: 44px;
}

/* ==========================================================
    SCROLL ANIMATIONS
   ========================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }
.fade-up.d5 { transition-delay: 0.5s; }

/* Career benefits description centering */
.career-benefits-header .section-desc {
  margin: 12px auto 0;
  text-align: center;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

/* Tablet: 769px – 960px — compact header, hamburger kicks in */
@media (max-width: 960px) and (min-width: 769px) {
  .container { padding: 0 32px; }
  .site-header { padding: 16px 32px; }
  .site-header.scrolled { padding: 10px 32px; }
  .header-logo-img { width: 160px; }
  .navbar { padding: 10px 20px; gap: 20px; }
  .nav-link { font-size: 12px; }
  .btn-contact { padding: 8px 16px; font-size: 12px; }
  .lang-opt { padding: 5px 10px; font-size: 11px; }
}

/* iPad / tablet content layout */
@media (max-width: 960px) and (min-width: 769px) {
  .hero { padding: 120px 32px 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-heading { font-size: 48px; }
  .hero-text { align-items: center; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-mockup { max-width: 560px; margin: 0 auto; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .career-perks-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .big-picture-content { flex-direction: column; gap: 40px; }
  .big-picture-right { aspect-ratio: 16 / 9; }

  .benefits, .big-picture, .services, .testimonial, .contact, .career-benefits {
    padding: 48px 0;
  }
  .big-picture { padding-bottom: 0; }

  .svc-card { padding: 28px 20px; }
  .services-header { margin-bottom: 28px; }

  .svc-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; gap: 20px; }
  .testimonial-content { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }

  .section-heading { font-size: 42px; }

  .hero-center { padding-bottom: 0; }
  .hero-image-overlap { margin-top: -100px; }
  .hero-actions-center { padding-bottom: 24px; }
}

@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero { padding: 120px 32px 64px; }

  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-heading { font-size: 50px; }
  .hero-text { align-items: center; text-align: center; }
  .hero-sub { max-width: 520px; }
  .hero-actions { justify-content: center; }
  .hero-mockup { max-width: 600px; margin: 0 auto; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }

  .big-picture-content { flex-direction: column; gap: 40px; }
  .big-picture-right { aspect-ratio: 16 / 10; }

  .svc-grid { grid-template-columns: 1fr; max-width: 520px; }
  .svc-card { padding: 40px 32px; }
  .svc-title { font-size: 24px; }

  .testimonial-content { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-image { aspect-ratio: 16 / 10; order: 2; }
  .testimonial-text { order: 1; }

  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  .section-heading { font-size: 44px; }
  blockquote { font-size: 22px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-cta-heading { font-size: 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hero { padding: 100px 20px 56px; }
  .site-header { padding: 16px 20px; }
  .site-header.scrolled { padding: 10px 20px; }
  .header-logo-img { width: 150px; height: auto; }

  .hamburger { display: flex; }
  .navbar { display: none; }
  .mobile-nav { display: block; }
  .mobile-nav-overlay { display: block; pointer-events: none; }
  .lang-toggle { display: none; }
  .btn-contact { display: none; }
  .header-right { display: none; }

  .hero-heading { font-size: 36px; letter-spacing: -1.2px; }
  .hero-sub { font-size: 15px; }

  .hero-center { padding-bottom: 0; }
  .hero-image-overlap { margin-top: -80px; }
  .hero-actions-center { padding-bottom: 20px; }

  .section-heading { font-size: 30px; letter-spacing: -0.8px; }

  .benefits, .big-picture, .services, .testimonial, .contact, .career-benefits {
    padding: 48px 0;
  }
  .big-picture { padding-bottom: 0; }

  .career-benefits-header { margin-bottom: 32px; }
  .career-perks-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .career-perk { padding: 20px 16px; }
  .career-perk-title { font-size: 16px; }
  .career-perk-desc { font-size: 13px; }
  .career-cta-banner { padding: 40px 0; }
  .career-cta-inner { flex-direction: column; text-align: center; }
  .career-cta-text { max-width: none; }
  .career-cta-heading { font-size: 26px; }
  .career-form-header { margin-bottom: 32px; }
  .career-form-header .section-heading { font-size: 30px; }
  .form-row { grid-template-columns: 1fr; }

  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .benefit-card { padding: 20px 16px; }
  .benefit-title { font-size: 16px; }
  .benefit-desc { font-size: 13px; }

  .clients { padding: 32px 0; }
  .marquee-item { min-width: 100px; height: 36px; padding: 0 12px; }
  .marquee-item span { font-size: 12px; }

  .svc-grid { grid-template-columns: 1fr; max-width: none; gap: 16px; }
  .svc-card { padding: 28px 20px; border-radius: 20px; }
  .svc-title { font-size: 22px; }
  .svc-logo { width: 56px; height: 56px; }
  .svc-icon-wrap { width: 56px; height: 56px; }

  blockquote { font-size: 18px; }

  .contact-form-wrap { padding: 20px; border-radius: 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-cta-heading { font-size: 22px; }
  .footer-cta-inner { min-height: auto; }
  .footer-cta-text { width: 100%; padding: 40px 0; }
  .footer-cta-bg { width: 100%; opacity: 0.4; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }

  .laptop-frame { padding: 10px 10px 0; border-radius: 14px; }

  .float-card { display: none; }

  .big-picture-right { aspect-ratio: 4 / 3; }
  .value-prop { gap: 12px; padding: 12px 0; }
  .value-num { font-size: 13px; }
  .value-prop p { font-size: 14px; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 70px; height: 70px; }
  .whatsapp-float img { width: 70px; height: 70px; }

  .testimonial-author { gap: 10px; }
  .author-avatar-img { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 88px 16px 32px; }
  .site-header { padding: 12px 16px; }
  .site-header.scrolled { padding: 8px 16px; }
  .header-logo-img { width: 130px; height: auto; }

  .hero-heading { font-size: 28px; letter-spacing: -0.8px; }
  .hero-sub { font-size: 14px; line-height: 1.6; }
  .hero-actions { flex-direction: column; width: 100%; gap: 10px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; padding: 14px 32px; font-size: 15px; border-radius: 12px; }

  .hero-center { padding-bottom: 0; }
  .hero-image-overlap { margin-top: -40px; }
  .hero-actions-center { padding-bottom: 16px; }

  .section-heading { font-size: 24px; letter-spacing: -0.5px; }
  .section-desc { font-size: 14px; }

  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .benefit-card { padding: 20px; }
  .career-perks-grid { grid-template-columns: 1fr; gap: 12px; }
  .career-perk { padding: 20px; }

  .career-cta-banner { padding: 32px 0; }
  .career-cta-heading { font-size: 22px; }
  .career-form-header { margin-bottom: 24px; }
  .career-form-header .section-heading { font-size: 24px; }

  .marquee-track { gap: 20px; }
  .marquee-item { min-width: 80px; }

  blockquote { font-size: 16px; }

  .footer-cta-heading { font-size: 20px; }
  .footer-cta-text { padding: 32px 0; }
  .footer-cta .btn-primary { padding: 14px 32px; font-size: 15px; }
  .footer-cta-bg::after { background: linear-gradient(to right, #2e3192 0%, #2e3192 40%, transparent 100%); }

  .full-image-img { max-height: 240px; border-radius: 14px; }
  .big-picture-right { aspect-ratio: 1 / 1; }
  .big-picture-content { gap: 28px; }

  .testimonial { padding: 40px 0; }
  .testimonial-image { aspect-ratio: 1 / 1; }

  .services { padding: 40px 0; }
  .svc-grid { gap: 12px; }
  .svc-card { padding: 24px 16px; }

  .whatsapp-float { bottom: 16px; right: 16px; width: 64px; height: 64px; }
  .whatsapp-float img { width: 64px; height: 64px; }

  .contact-form-wrap { padding: 16px; }

  .file-upload-zone { padding: 20px 16px; }
}
