/* =============================================
   SOCSO 2026 — Stylesheet
   ============================================= */

:root {
  --navy: #0D1B2A;
  --dark-orange-mid: #ff8a35;
  --teal: #b1987d;
  --teal-light: #00E8C8;
  --amber: #F5A623;
  --red-soft: #E55C5C;
  --green-soft: #27AE60;
  --white: #F7FAFC;
  --light-blue: #50a1f3;
  --grey-mid: #B0BEC5;
  --text-main: #1C2B3A;
  --text-muted: #4A6070;
  --font-display: 'Helvetica', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(13, 27, 42, 0.10);
  --shadow-lg: 0 8px 40px rgba(13, 27, 42, 0.16);
  --max-w: 1100px;
  --transition: 0.25s ease;
  --whatsapp: #25D366;
  --google-form: #7372fe;
  --google-form-dark: #5746e3;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 194, 168, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

*,
*::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-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* =============================================
   HEADER
   ============================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #504538;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--white);
  padding-left: 10px;
}

.shield-icon {
  font-size: 1.3rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: var(--white);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.04em;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
}

.nav-logos-main {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 10px;
}

.lang-logo {
  height: 44px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

/* =============================================
   HERO
   ============================================= */

.hero {
  background: linear-gradient(135deg, #2a0d0d 0%, var(--dark-orange-mid) 60%, #b14433 100%);
  padding: 80px 24px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 194, 168, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-bottom: 64px;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  /* font-family: var(--font-display); */
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 10px;
  max-width: 640px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-desc {
  color: rgba(247, 250, 252, 0.75);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 24px;
}

.pill-icon {
  font-size: 1rem;
}

.hero-wave {
  margin-top: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* =============================================
   SECTIONS
   ============================================= */

.section {
  padding: 72px 24px;
}

.section-alt {
  background: #EEF3F8;
}

.section-dark {
  background: linear-gradient(135deg, #504538 0%, #112236 100%);
}

.section-cta {
  background: linear-gradient(135deg, #004e42 0%, #006a5a 50%, #003d34 100%);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-size: 1.48rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-label.light {
  color: var(--amber);
}

.section-title {
  /* font-family: var(--font-display); */
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-title.light {
  color: var(--white);
}

.section-desc {
  font-size: 1.0rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 640px;
}

.section-desc.light {
  color: rgba(247, 250, 252, 0.75);
}

.section-desc.answer-no {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--red-soft);
}

/* =============================================
   RATE CARDS
   ============================================= */

.rate-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.rate-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--grey-mid);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.rate-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.rate-card.current {
  border-top-color: var(--grey-mid);
}

.rate-card.phase1 {
  border-top-color: #4ecdc4;
}

.rate-card.phase2 {
  border-top-color: #00b4a0;
}

.rate-card.final {
  border-top-color: var(--teal-light);
}

.rate-phase {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.rate-value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 16px;
}

.rate-bar-wrap {
  height: 6px;
  background: var(--grey-light);
  border-radius: 99px;
  overflow: hidden;
}

.rate-bar {
  height: 100%;
  width: var(--pct);
  background: linear-gradient(90deg, var(--light-blue), var(--teal-light));
  border-radius: 99px;
  transition: width 1s ease;
}

.rate-total-badge {
  margin-top: 14px;
  display: inline-block;
  background: rgba(0, 194, 168, 0.12);
  border: 1px solid rgba(0, 194, 168, 0.3);
  color: #009e88;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
}

/* =============================================
   WHY GRID
   ============================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-icon {
  font-size: 2rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

/* =============================================
   BENEFITS GRID
   ============================================= */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.benefit-card {
  display: flex;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid transparent;
  transition: all var(--transition);
  border-left-color: var(--teal-light);
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.benefit-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--light-blue);
  line-height: 1;
  min-width: 44px;
  font-weight: 400;
}

.benefit-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.benefit-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* =============================================
   GAPS
   ============================================= */

.gaps-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 8px;
}

.gap-item {
  display: flex;
  gap: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background var(--transition);
}

.gap-item:hover {
  background: rgba(255, 255, 255, 0.09);
}

.gap-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.gap-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}

.gap-body>p {
  color: rgba(247, 250, 252, 0.75);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.gap-callout {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
}

.callout-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
}

.callout-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--amber);
}

.compare-mini {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compare-mini-row {
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.compare-mini-row.bad {
  background: rgba(229, 92, 92, 0.12);
  border-left: 3px solid var(--red-soft);
}

.compare-mini-row.good {
  background: rgba(39, 174, 96, 0.12);
  border-left: 3px solid var(--green-soft);
}

.cmr-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}

.cmr-desc {
  font-size: 0.85rem;
  color: rgba(247, 250, 252, 0.7);
  line-height: 1.5;
}

.gap-list {
  list-style: none;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gap-list li {
  color: rgba(247, 250, 252, 0.72);
  font-size: 0.93rem;
  padding-left: 20px;
  position: relative;
}

.gap-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red-soft);
  font-weight: 700;
}

.gap-vs {
  font-size: 0.93rem;
  color: var(--teal-light);
  font-weight: 500;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =============================================
   COMPARISON TABLE
   ============================================= */

.comp-table {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  margin-bottom: 36px;
}

.comp-header {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  background: var(--navy);
  padding: 14px 20px;
}

.comp-col-header {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.socso-header {
  color: var(--grey-mid);
}

.private-header {
  color: var(--teal);
}

.comp-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  padding: 14px 20px;
  border-bottom: 1px solid var(--grey-light);
  align-items: center;
  transition: background var(--transition);
}

.comp-row:hover {
  background: #F0F6FF;
}

.comp-row:last-child {
  border-bottom: none;
}

.comp-feature {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
}

.comp-cell {
  text-align: center;
  font-size: 0.86rem;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  margin: 0 8px;
}

.comp-cell.good {
  color: var(--green-soft);
}

.comp-cell.warn {
  color: #c47a00;
}

.comp-cell.bad {
  color: var(--red-soft);
}

.bottom-line {
  background: linear-gradient(135deg, #f0faf8, #e8f7f4);
  border-left: 5px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 28px;
}

.bottom-line p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--navy);
  line-height: 1.5;
  font-style: italic;
}

/* =============================================
   LAYERS
   ============================================= */

.layers-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
}

.layer-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  position: relative;
  border-left: 5px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
}

.layer-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
}

.layer-1 {
  border-left-color: var(--grey-mid);
}

.layer-2 {
  border-left-color: var(--teal);
}

.layer-3 {
  border-left-color: var(--amber);
}

.layer-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.layer-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.layer-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.layer-tag {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 12px;
  background: var(--grey-light);
  color: var(--text-muted);
}

/* =============================================
   CTA
   ============================================= */

.cta-inner {
  text-align: center;
}

.cta-shield {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: #504538;
  text-align: center;
  padding: 24px;
  font-size: 0.8rem;
  color: rgba(247, 250, 252, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-body {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
}

/* =============================================
   SCROLL ANIMATION
   ============================================= */

.section-inner,
.rate-card,
.why-card,
.benefit-card,
.gap-item,
.layer-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.section-inner.visible,
.rate-card.visible,
.why-card.visible,
.benefit-card.visible,
.gap-item.visible,
.layer-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: none; cursor: pointer;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: 0 10px 24px rgba(243,156,58,0.35);
}
.btn-whatsapp {
  background: var(--google-form); color: #ffffff;
  box-shadow: 0 8px 36px rgba(133, 37, 211, 0.45);
}

.btn-whatsapp iconify-icon { font-size: 1.3rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-whatsapp,
.btn-whatsapp span {
    text-decoration: none !important;
}

/* Stagger children inside section-inner */
.section-inner.visible .rate-card,
.section-inner.visible .why-card,
.section-inner.visible .benefit-card,
.section-inner.visible .gap-item,
.section-inner.visible .layer-item {
  opacity: 1;
  transform: translateY(0);
}
.btn-whatsapp {
  background: var(--google-form); color: #fff;
  box-shadow: 0 8px 36px rgba(133, 37, 211, 0.45);
}
.btn-whatsapp iconify-icon { font-size: 1.3rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.cta-section {
  padding: 100px 0; text-align: center;
  background: linear-gradient(135deg, var(--primary-soft), var(--primary-strong));
  color: #1e1b1d;
}
.container {
  padding: 0 20px;
}
.cta-inner h2 { color: #000000; font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 14px; }
.cta-inner p { color: #000000; margin-bottom: 32px; font-size: 1.02rem; opacity: 0.85; max-width: 520px; margin-left: auto; margin-right: auto; }
/* .cta-section .btn-whatsapp { background: #1e1b1d; } */

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

@media (max-width: 900px) {
  .hero {
    padding: 56px 18px 0;
  }

  .hero-pills {
    flex-direction: column;
  }

  .section {
    padding: 52px 18px;
  }

  .lang-logo {
    height: 34px;
  }

  .logo-text {
    font-size: 0.7rem;
    text-align: center;
    padding-right: 10px;
  }

  .comp-header,
  .comp-row {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    padding: 12px 14px;
    font-size: 0.82rem;
  }

  .comp-cell {
    font-size: 0.78rem;
    margin: 0 4px;
  }

  .comp-feature {
    font-size: 0.82rem;
  }

  .gap-item {
    flex-direction: column;
    gap: 12px;
  }

  .gap-icon {
    font-size: 1.6rem;
  }

  .layer-tag {
    display: none;
  }

  .rate-value {
    font-size: 2rem;
  }
}

@media (max-width: 400px) {
  .hero-pills {
    flex-direction: column;
  }

  .comp-cell {
    font-size: 0.72rem;
  }
}