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

:root {
  --page: #f4f8fd;
  --surface: #ffffff;
  --surface-muted: #edf4fb;
  --surface-strong: #e2edf9;
  --line: rgba(19, 77, 160, 0.14);
  --line-strong: rgba(19, 77, 160, 0.24);
  --shadow: 0 22px 60px rgba(17, 54, 109, 0.12);
  --shadow-soft: 0 14px 38px rgba(17, 54, 109, 0.08);
  --ink: #11223f;
  --ink2: #173663;
  --ink3: #335882;
  --ink4: #5f789a;
  --accent: #1569cf;
  --accent2: #3b8df2;
  --accent-soft: #d9ebff;
  --gold: #6f8fb5;
  --gold2: #8da7c7;
  --text: #26374f;
  --text2: #5e7190;
  --white: #ffffff;
  --green: #25d366;
  --cp-blue: #1569cf;
  --cp-blue2: #0f57ad;
  --serif: 'Sora', 'Segoe UI', sans-serif;
  --sans: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background:
    radial-gradient(circle at top left, rgba(59, 141, 242, 0.12), transparent 32%),
    linear-gradient(180deg, #f9fcff 0%, var(--page) 54%, #eef4fb 100%);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.25rem, 5vw, 3rem);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(21, 105, 207, 0.1);
  min-height: 82px;
  box-shadow: 0 10px 26px rgba(20, 67, 133, 0.06);
  animation: slideDown 0.5s ease;
}
@keyframes slideDown{from{opacity:0;transform:translateY(-100%)}to{opacity:1;transform:translateY(0)}}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 54px; width: auto; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(21, 105, 207, 0.1)); }
.nav-links { display: flex; gap: 0.25rem; list-style: none; align-items: center; }

.nav-links a {
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text2);
  transition: color 0.2s, background 0.2s;
  font-weight: 700;
  padding: 0.75rem 1rem;
  display: block;
  border-radius: 999px;
}

.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active { background: rgba(21, 105, 207, 0.08); }

.nav-cta {
  background: linear-gradient(135deg, var(--cp-blue), var(--accent2));
  color: var(--white) !important;
  border: none;
  padding: 0.95rem 1.4rem !important;
  font-size: 0.74rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  font-family: var(--sans);
  cursor: pointer;
  display: inline-block;
  margin-left: 0.5rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(21, 105, 207, 0.22);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--cp-blue2), var(--cp-blue));
  transform: translateY(-1px);
}

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); transition: all 0.3s; display: block; }
.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); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 82px;
  left: 1rem;
  right: 1rem;
  z-index: 199;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  padding: 1rem 1.25rem 1.4rem;
  border: 1px solid rgba(21, 105, 207, 0.1);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text2);
  padding: 1rem 0.4rem;
  border-bottom: 1px solid rgba(21, 105, 207, 0.08);
  transition: color 0.2s;
  font-weight: 700;
}

.mobile-menu a:hover, .mobile-menu a.active { color: var(--cp-blue); }
.mobile-menu .nav-cta { margin: 1rem 0 0; text-align: center; padding: 0.95rem !important; }

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 300;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover { transform: translateY(-2px) scale(1.03); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* PAGE HEADER */
.page-header {
  padding: clamp(5rem, 15vw, 11rem) clamp(1.25rem, 5vw, 4rem) clamp(3rem, 8vw, 5.5rem);
  background:
    radial-gradient(circle at top right, rgba(59, 141, 242, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eef5fd 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(21, 105, 207, 0.08);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(59, 141, 242, 0.04), transparent 40%),
    radial-gradient(circle at 15% 35%, rgba(21, 105, 207, 0.08), transparent 24%);
}

.page-header-inner { max-width: 1240px; margin: 0 auto; position: relative; z-index: 1; }

.page-label,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cp-blue);
  margin-bottom: 1rem;
  font-weight: 800;
}

.page-label::before,
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent2);
  border-radius: 999px;
}

h1.page-title {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

h1.page-title em,
h2.section-title em,
h1.hero-title em { color: var(--cp-blue); font-style: normal; }

.page-subtitle {
  font-size: 1.05rem;
  color: var(--text2);
  margin-top: 1rem;
  font-weight: 500;
  max-width: 760px;
}

/* SECTIONS */
section.content,
section.content-alt {
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 5vw, 4rem);
}

section.content-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(226, 237, 249, 0.66));
  border-top: 1px solid rgba(21, 105, 207, 0.06);
  border-bottom: 1px solid rgba(21, 105, 207, 0.06);
}

.container { max-width: 1240px; margin: 0 auto; }

h2.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.3vw, 3.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.08;
  max-width: 760px;
  margin-bottom: 1.2rem;
  letter-spacing: -0.04em;
}

.section-body {
  font-size: 1rem;
  color: var(--text2);
  max-width: 640px;
  line-height: 1.9;
  font-weight: 500;
}

/* BUTTONS */
.btn-primary,
.btn-ghost,
.btn-wa {
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 800;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cp-blue), var(--accent2));
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  box-shadow: 0 14px 28px rgba(21, 105, 207, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--cp-blue2), var(--cp-blue));
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(21, 105, 207, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
  border: 1px solid rgba(21, 105, 207, 0.16);
  padding: 1rem 2rem;
}

.btn-ghost:hover {
  color: var(--cp-blue);
  border-color: rgba(21, 105, 207, 0.32);
  background: rgba(217, 235, 255, 0.5);
  transform: translateY(-2px);
}

.btn-wa {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 1rem 1.8rem;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.2);
}

.btn-wa:hover {
  background: #1ea855;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.35);
}
.btn-wa svg { width: 16px; height: 16px; fill: white; }

/* CARDS */
.card-grid,
.card-grid-2 {
  display: grid;
  gap: 1.5rem;
  background: transparent;
}

.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(21, 105, 207, 0.08);
  padding: 2.4rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.25s ease, border-color 0.3s ease;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  animation: slideUp 0.6s ease both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.card:hover {
  background: var(--surface);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(21, 105, 207, 0.16);
}

.card::after {
  content: '';
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cp-blue), var(--accent2));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.card:hover::after { transform: scaleX(1); }

.card-num {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: rgba(21, 105, 207, 0.34);
  letter-spacing: 0.12em;
  margin-bottom: 1.4rem;
  display: block;
  font-weight: 700;
  transition: color 0.3s ease;
}

.card:hover .card-num { color: var(--cp-blue); }

.card-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(21, 105, 207, 0.16);
  background: rgba(217, 235, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover .card-icon {
  background: rgba(217, 235, 255, 0.8);
  border-color: rgba(21, 105, 207, 0.32);
  transform: scale(1.08) rotate(3deg);
}

.card-icon svg { width: 21px; height: 21px; stroke: var(--cp-blue); fill: none; stroke-width: 1.7; }

h3.card-title,
.ps-content h4,
.job-title {
  font-family: var(--serif);
  color: var(--ink);
  letter-spacing: -0.03em;
}

h3.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.85;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.card-link {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cp-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  transition: gap 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.card-link:hover {
  gap: 0.7rem;
  color: var(--accent2);
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.stat-item {
  padding: 2.2rem 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 105, 207, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  animation: fadeInUp 0.6s ease both;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.15s; }
.stat-item:nth-child(3) { animation-delay: 0.2s; }
.stat-item:nth-child(4) { animation-delay: 0.25s; }

.stat-item:hover {
  transform: translateY(-5px);
  background: var(--surface);
  box-shadow: var(--shadow);
  border-color: rgba(21, 105, 207, 0.16);
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stat-num span { color: var(--cp-blue); }

.stat-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text2);
  font-weight: 700;
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, #eff5fc 0%, #e5eef8 100%);
  border-top: 1px solid rgba(21, 105, 207, 0.08);
  padding: 4.5rem 4rem 3rem;
}

.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 320px 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo img { height: 50px; width: auto; }
.footer-tagline,
.footer-copy,
.footer-serif,
footer ul a,
.footer-parent { color: var(--text2); }

.footer-tagline { font-size: 0.95rem; line-height: 1.85; font-weight: 500; margin-top: 1rem; }
.footer-parent { margin-top: 0.8rem; font-size: 0.78rem; }
.footer-parent a { color: var(--cp-blue); text-decoration: none; font-weight: 700; transition: color 0.3s ease; }
.footer-parent a:hover { color: var(--accent2); }

/* COMPANY BOX */
.company-box {
  background: var(--ink2); /* Base solid dark blue */
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem;
  border-radius: 28px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.company-box:hover {
  transform: translateY(-4px);
  /* This will now show up vividly! */
  background: linear-gradient(135deg, #173663, #075ac0); 
  border-color: #096ee9;
}

/* PROCESS STEP */
.process-step {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateX(4px);
}

/* CONTACT BLOCK */
.contact-block {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, border-color 0.3s ease;
}

.contact-block:hover {
  transform: translateX(4px);
}

/* 1. Fix the small grid boxes (Location, Work Mode, etc.) */
.card-grid-2 > div {
  background: var(--ink2) !important; /* Ensure they are dark blue by default */
  padding: 1.4rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

/* 2. Fix the "What We Offer" container */
.two-col > div:last-child > .reveal.rd1 {
  background: var(--ink2) !important; /* Ensure it is dark blue by default */
  padding: 2.2rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

/* 3. Keep your hover effects vibrant */
.card-grid-2 > div:hover,
.two-col > div:last-child > .reveal.rd1:hover {
  background: var(--ink3) !important; /* Slightly lighter blue on hover */
  transform: translateY(-4px);
}
/* JOB CARD */
.job-card {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
  transform: translateY(-6px);
}

/* DARK BOX STYLING */
div[style*="background:var(--ink2)"] {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 24px;
  backdrop-filter: blur(8px);
}

div[style*="background:var(--ink2)"]:hover {
  background: rgba(21, 105, 207, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  transform: translateY(-4px);
}

footer h5 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.25rem;
  font-weight: 800;
}

footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
footer ul a { text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; font-weight: 500; }
footer ul a:hover { color: var(--cp-blue); }

.footer-bottom {
  border-top: 1px solid rgba(21, 105, 207, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-copy { font-size: 0.82rem; font-weight: 500; }
.footer-serif { font-family: var(--serif); font-size: 0.95rem; font-weight: 600; }

/* CONTACT */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(21, 105, 207, 0.08);
  border-radius: 28px;
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label,
.contact-lbl {
  font-size: 0.71rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink3);
  font-weight: 800;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white);
  border: 1px solid rgba(21, 105, 207, 0.14);
  color: var(--ink);
  padding: 1rem 1rem;
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  width: 100%;
  border-radius: 16px;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #8ca0bb; }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--cp-blue);
  box-shadow: 0 0 0 4px rgba(21, 105, 207, 0.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* CONTACT DETAIL */
.contact-block {
  margin-bottom: 1.6rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(21, 105, 207, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-block:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(21, 105, 207, 0.16);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-block:last-child { margin-bottom: 0; }
.contact-val { font-size: 0.96rem; color: var(--text); line-height: 1.8; font-weight: 500; margin-top: 0.5rem; }
.contact-val a { color: var(--cp-blue); text-decoration: none; font-weight: 700; }
.contact-val a:hover { text-decoration: underline; }
.wa-link { color: var(--green) !important; display: inline-flex; align-items: center; gap: 0.45rem; }
.wa-link svg { width: 14px; height: 14px; fill: var(--green); }

/* REVEAL ANIM */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.08s; }
.rd2 { transition-delay: 0.17s; }
.rd3 { transition-delay: 0.26s; }

/* DIVIDER */
.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--cp-blue), var(--accent2));
  margin: 1.6rem 0;
  border-radius: 999px;
}

/* INLINE BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(21, 105, 207, 0.16);
  padding: 0.65rem 1rem;
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  color: var(--cp-blue);
  background: rgba(217, 235, 255, 0.42);
  border-radius: 999px;
  font-weight: 700;
}

.badge svg { width: 13px; height: 13px; }

/* TAG PILLS */
.tag-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }

.tag {
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(21, 105, 207, 0.18);
  font-size: 0.75rem;
  color: var(--cp-blue);
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  font-weight: 700;
}

/* GRID LAYOUTS */
.two-col { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 5rem; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }

/* PROCESS STEP */
.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 1.6rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 105, 207, 0.08);
  border-radius: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-soft);
}

.process-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.ps-num {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--cp-blue);
  min-width: 44px;
  margin-top: 0.15rem;
  font-weight: 700;
}

.ps-content h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.45rem; }
.ps-content p { font-size: 0.92rem; color: var(--text2); line-height: 1.8; font-weight: 500; }

/* CAREER CARD */
.job-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(21, 105, 207, 0.08);
  padding: 2rem 2.2rem;
  margin-bottom: 1rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  background: var(--surface);
  border-color: rgba(21, 105, 207, 0.16);
}
.job-title { font-size: 1.32rem; font-weight: 700; margin-bottom: 0.45rem; }
.job-meta { font-size: 0.8rem; color: var(--text2); display: flex; gap: 1.1rem; flex-wrap: wrap; font-weight: 700; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  nav { padding: 0.95rem 1.5rem; }
  section.content, section.content-alt, .page-header, footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .footer-top,
  .two-col,
  .card-grid,
  .card-grid-2,
  .stats-grid,
  .three-col { grid-template-columns: 1fr; }
  .footer-top { gap: 2rem; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .page-header { padding-top: 9.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  nav { min-height: 76px; }
  .mobile-menu { top: 76px; }
  .nav-logo img { height: 46px; }
  .wa-float { width: 54px; height: 54px; right: 1rem; bottom: 1rem; }
  h1.page-title { font-size: clamp(2.3rem, 9vw, 3.3rem); }
  h2.section-title { font-size: clamp(1.85rem, 8vw, 2.6rem); }
  .card,
  .contact-form,
  .job-card,
  .process-step,
  .contact-block { padding: 1.5rem; }
}
