/*
Theme Name: Crocodic V3
Theme URI: https://crocodic.com
Author: Wildan Rozaqi
Author URI: https://crocodic.com
Description: Enterprise Custom Software Development theme for Crocodic.
Version: 1.2.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: crocodic
*/

/* ===========================
   DESIGN TOKENS
=========================== */
:root {
  --gradient-color: linear-gradient(288deg, #0C7DFA -1.61%, #9BCAFD 62.97%, #F0A8A8 86%, #DEE357 112.28%);
  --linier-blue: linear-gradient(196deg, #F5FAFF 49.6%, #B2D9FF 182.05%);
  --color-primary: #1080FB;
  --color-primary-dark: #0C7DFA;
  --color-navy: #192363;
  --color-black: #070707;
  --color-dark: #212121;
  --color-gray: #706F72;
  --color-charcoal: #434343;
  --color-dark-text: #050505;
  --color-border: #D1EBFA;
  --color-bg-light: #F6FAFC;
  --color-bg-blue: #F6FBFE;
  --color-bg-white: #fff;
  --font-geist: 'Geist', -apple-system, Roboto, Helvetica, sans-serif;
  --font-inter: 'Inter', -apple-system, Roboto, Helvetica, sans-serif;
  --font-onest: 'Onest', -apple-system, Roboto, Helvetica, sans-serif;
  /* spacing scale */
  --space-xs: 12px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 72px;
  /* section padding */
  --section-x: clamp(20px, 4.2vw, 60px);
  --section-y: clamp(48px, 5vw, 72px);
}

/* ===========================
   PAGE LOADER
=========================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.page-loader.is-active {
  opacity: 1;
  visibility: visible;
}

.page-loader-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: loader-spin 0.7s linear infinite;
}

@keyframes loader-spin {
  to { transform: rotate(360deg); }
}

/* ===========================
   BACK TO TOP
=========================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-dark);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary);
}

@media (max-width: 640px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-inter);
  color: var(--color-black);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ponytail: sr-only utility — accessible hiding for screen readers */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.skip-link:focus {
  clip: auto;
  clip-path: none;
  height: auto;
  width: auto;
  margin: 0;
  padding: 12px 24px;
  background: var(--color-dark);
  color: #fff;
  z-index: 99999;
  position: fixed;
  top: 8px;
  left: 8px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===========================
   LAYOUT HELPERS
=========================== */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--section-x);
}

/* ===========================
   TYPOGRAPHY UTILITIES
=========================== */
.heading-xl {
  font-family: var(--font-geist);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 120%;
}

.heading-lg {
  font-family: var(--font-geist);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 600;
  line-height: 130%;
}

.heading-md {
  font-family: var(--font-geist);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 600;
  line-height: 125%;
}

.body-lg {
  font-family: var(--font-inter);
  font-size: clamp(15px, 1.1vw, 16px);
  font-weight: 400;
  line-height: 130%;
  color: var(--color-gray);
}

/* ===========================
   BADGES & LABELS
=========================== */
.badge-pill {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
}

.section-label {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.ai-badge {
  display: inline-flex;
  padding: 4px 16px;
  border-radius: 100px;
  background: var(--gradient-color);
  color: #fff;
  font-family: var(--font-inter);
  font-size: 10px;
  font-weight: 600;
  line-height: 24px;
  align-self: flex-start;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary-dark {
  display: inline-flex;
  padding: 12px 32px;
  border-radius: 12px;
  background: var(--color-dark);
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  min-height: 48px;
  transition: opacity 0.2s;
}

.btn-primary-dark:hover {
  opacity: 0.88;
}

.btn-outline {
  display: inline-flex;
  padding: 12px 32px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-dark);
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  min-height: 48px;
  background: transparent;
  transition: background 0.2s;
}

.btn-outline:hover {
  background: var(--color-bg-blue);
}

/* ===========================
   SITE HEADER
=========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 201; /* ponytail: increased to stay above mobile nav */
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.07);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--section-x);
}

.site-logo img {
  width: 127px;
  height: 33px;
  object-fit: contain;
}

/* ===========================
   PRIMARY NAV (DESKTOP)
=========================== */
.primary-nav {
  display: none;
}

.primary-menu-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu-list > li {
  position: relative;
}

.primary-menu-list > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  min-height: 44px;
}

.primary-menu-list > li > a:hover {
  background: var(--color-bg-blue);
  color: var(--color-primary);
}

/* dropdown arrow for items with children */
.primary-menu-list > li.menu-item-has-children > a::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.5;
  transition: transform 0.2s;
}

.primary-menu-list > li.is-open > a::after {
  transform: rotate(180deg);
}

/* submenu */
.primary-menu-list .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 8px;
  margin: 0;
  list-style: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-border);
  z-index: 150;
}

.primary-menu-list > li.is-open > .sub-menu {
  display: block;
}

.sub-menu li a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.sub-menu li a:hover {
  background: var(--color-bg-blue);
  color: var(--color-primary);
}

/* show at ≥992px */
@media (min-width: 992px) {
  .primary-nav {
    display: flex;
  }

  .header-menu-toggle {
    display: none;
  }
}

/* hide primary-nav on mobile (mobile-nav handles it) */
@media (max-width: 991px) {
  .primary-nav {
    display: none !important;
  }
}

/* language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-inter), sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.lang-item {
  color: var(--color-gray, #64748b);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 2px 4px;
}

.lang-item:hover {
  color: var(--color-primary, #0c7dfa);
}

.lang-item.active {
  color: var(--color-primary, #0c7dfa);
  font-weight: 600;
}

.lang-divider {
  color: var(--color-border, #e2e8f0);
  user-select: none;
}

/* hamburger toggle - visible on all sizes, hidden on desktop */
.header-menu-toggle {
  display: flex;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-blue);
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
  margin-left: auto;
}

.header-menu-toggle:hover {
  background: #e8f4fe;
  border-color: var(--color-primary);
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
  position: relative;
}

.hamburger-icon span {
  display: block;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
  transform-origin: center;
}

/* hamburger → X animation */
.header-menu-toggle.active .hamburger-icon span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.header-menu-toggle.active .hamburger-icon span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.header-menu-toggle.active {
  border-color: var(--color-dark);
  background: #fff;
}

/* ===========================
   MOBILE NAV OVERLAY
=========================== */
.mobile-nav {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 40px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  will-change: opacity, visibility;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  margin: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.mobile-nav.open li {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: calc(var(--i, 0) * 0.05s);
}

.mobile-nav.closing li {
  transition-delay: calc((var(--total, 1) - 1 - var(--i, 0)) * 0.04s);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

.mobile-nav a {
  color: var(--color-dark);
  font-family: var(--font-inter);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  min-height: 44px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 4px;
}

.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.25s;
  border-radius: 1px;
}

.mobile-nav a:hover {
  color: var(--color-primary);
}

.mobile-nav a:hover::after {
  width: 100%;
}

/* ponytail: removed redundant mobile-nav-close CSS */

/* mobile submenu */
.mobile-menu-list .sub-menu {
  display: none;
  list-style: none;
  padding: 0 0 0 24px;
  margin: 0;
}

.mobile-menu-list .sub-menu.is-open {
  display: block;
}

.mobile-menu-list .sub-menu li a {
  font-size: 22px;
  opacity: 0.8;
}

.mobile-submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 4px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.mobile-submenu-toggle:hover {
  background: rgba(0, 0, 0, 0.06);
}

.mobile-submenu-toggle.is-open {
  transform: rotate(180deg);
}

/* ===========================
   SECTION SHARED
=========================== */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto 51px;
  text-align: center;
}

.section-heading {
  font-family: var(--font-geist);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 600;
  line-height: 130%;
  color: #000;
}

.section-subtext {
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: var(--color-gray);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 0 0;
  min-width: 80px;
}

.stat-value {
  font-family: var(--font-geist);
  font-size: clamp(26px, 2.2vw, 32px);
  font-weight: 600;
  line-height: 125%;
  color: var(--color-navy);
}

.stat-label {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  color: var(--color-gray);
}

.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: underline;
  min-height: 44px;
}

.case-study-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: underline;
  min-height: 44px;
}



/* ===========================
   FAQ SECTION
=========================== */
.faq-section {
  padding: var(--section-y) 0;
  background: #fff;
}

.faq-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--section-x);
  display: flex;
  flex-direction: column;
  gap: 51px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

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

.faq-question-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.faq-question {
  font-family: var(--font-geist);
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  color: #000;
  flex: 1 0 0;
}

.faq-toggle {
  display: flex;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.faq-toggle:hover {
  background: var(--color-bg-blue);
}

.faq-answer {
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: var(--color-gray);
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease, opacity 0.25s ease;
  opacity: 0;
}

.faq-answer.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-divider {
  width: 100%;
  height: 1px;
  background: var(--color-border);
  border: none;
}



/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: url('assets/images/footer-bg.webp') lightgray 0px -61.285px / 100% 124.818% no-repeat;
  overflow: hidden;
  position: relative;
  padding: var(--section-y) 0;
  min-height: 400px;
}

.footer-blur {
  position: absolute;
  left: 41px;
  top: 78px;
  pointer-events: none;
  z-index: 0;
  max-width: 100%;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--section-x);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo img {
  width: 127px;
  height: 33px;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #fff;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-certifications {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-cert-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 1 280px;
}

.footer-col-title {
  font-family: var(--font-geist);
  font-size: 16px;
  font-weight: 600;
  line-height: 125%;
  color: #fff;
}

.footer-cert-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-cert-logos img {
  object-fit: contain;
  max-height: 28px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(209, 235, 250, 0.5);
  border: none;
}

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-company-name {
  font-family: var(--font-geist);
  font-size: 16px;
  font-weight: 600;
  line-height: 125%;
  color: #fff;
}

.footer-locations {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-location {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 180px;
}

.footer-location-name {
  font-family: var(--font-onest);
  font-size: 18px;
  font-weight: 500;
  line-height: 125%;
  color: #fff;
}

.footer-location-address {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  color: #fff;
}

.footer-social {
  display: flex;
  padding: 6px 0 8px;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-social a {
  display: flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  color: #fff;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
  color: #fff;
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* ===========================
   BLOG / INDEX
=========================== */
.blog-post-card a:hover h2 {
  color: var(--color-primary);
}

.site-main--blog {
  padding: 120px 60px 72px;
  max-width: 1440px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.blog-post-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #fff;
}

.blog-post-card__thumbnail {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-post-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-post-card__title {
  font-family: var(--font-geist);
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  color: #000;
}

.blog-post-card__excerpt {
  font-family: var(--font-inter);
  font-size: 15px;
  color: var(--color-gray);
  line-height: 130%;
}

.blog-post-card__link {
  color: var(--color-primary);
  font-size: 14px;
  text-decoration: underline;
}

.blog-pagination {
  margin-top: 48px;
  text-align: center;
}

.blog-no-posts {
  font-family: var(--font-inter);
  font-size: 16px;
  color: var(--color-gray);
}


/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  padding: var(--section-y) 0;
  background: #fff;
}

.cta-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--section-x);
}

.cta-card {
  width: 100%;
  padding: 48px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  border-radius: 12px;
  background: linear-gradient(84deg, #FFF -14.19%, rgba(255, 255, 255, 0.00) 65.27%), url('assets/images/cta-bg.webp') lightgray 50% / cover no-repeat;
  min-height: 320px;
}

.cta-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 32px;
  flex: 1 0 0;
  min-width: 0;
}

.cta-title {
  font-family: var(--font-geist);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 600;
  line-height: 125%;
  color: #000;
}

.cta-body {
  font-family: var(--font-inter);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 400;
  line-height: 130%;
  color: var(--color-gray);
}

.cta-visual {
  flex: 1 0 0;
}

/* ===========================
   RESPONSIVE — MOBILE (≤640px)
=========================== */
@media (max-width: 640px) {
  :root {
    --section-x: 20px;
    --section-y: 48px;
  }

  /* header */
  .site-header {
    height: 56px;
  }

  .site-logo img {
    width: 110px;
    height: auto;
  }

  .header-inner {
    padding: 0 20px;
  }

  .btn-primary-dark {
    width: 100%;
    justify-content: center;
  }

  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  /* section headers */
  .section-header {
    margin-bottom: 32px;
  }

  .section-heading {
    font-size: clamp(22px, 6vw, 30px);
  }

  .section-subtext {
    font-size: 15px;
  }

  /* stat items */
  .stat-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 120px;
  }

  .stat-value {
    font-size: 26px;
  }

  /* cta */
  .cta-section {
    padding: 40px 0;
  }

  .cta-card {
    padding: 32px 24px;
    flex-direction: column;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.9) 60%), url('assets/images/cta-bg.webp') lightgray 50% / cover no-repeat;
    min-height: auto;
  }

  .cta-visual {
    display: none;
  }

  .cta-title {
    font-size: clamp(22px, 5.5vw, 28px);
  }

  .cta-body {
    font-size: 15px;
  }

  .cta-content {
    gap: 24px;
  }

  /* faq */
  .faq-section {
    padding: 40px 0;
  }

  .faq-inner {
    gap: 32px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 15px;
  }

  /* footer */
  .site-footer {
    padding: 40px 0;
    min-height: auto;
  }

  .footer-inner {
    gap: 40px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
  }

  .footer-certifications {
    flex-direction: column;
    gap: 28px;
  }

  .footer-cert-col {
    flex: none;
    width: 100%;
  }

  .footer-cert-logos {
    gap: 16px;
  }

  .footer-locations {
    flex-direction: column;
    gap: 24px;
  }

  .footer-location {
    flex: none;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-links {
    gap: 20px;
  }

  .footer-company-name {
    font-size: 14px;
  }

  .footer-location-name {
    font-size: 16px;
  }

  .footer-blur {
    display: none;
  }
}

/* ===========================
   RESPONSIVE — SMALL MOBILE (≤380px)
=========================== */
@media (max-width: 380px) {
  .badge-pill {
    font-size: 12px;
    padding: 6px 14px;
    white-space: normal;
  }
}

/* ===========================
   PRINT
=========================== */
@media print {

  .site-header,
  .mobile-nav,
  .site-footer {
    display: none;
  }

  .cta-section {
    display: none;
  }

  .faq-section {
    padding: 24px 0;
  }
}

/* ===========================
   REDUCED MOTION
=========================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===========================
   CARA KERJA SECTION
=========================== */
.cara-kerja-section {
  padding: var(--section-y) 0;
  background: #fff;
}

.cara-kerja-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--section-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 51px;
}

/* ===========================
   CARA KERJA INFO BOXES
=========================== */
.ce-timeline-info-boxes {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px dashed var(--color-border);
}

.ce-info-box {
  flex: 1;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ce-info-box-waterfall {
  border: 1px solid var(--color-border);
  background: #fff;
}

.ce-info-box-waterfall .ce-info-box-title {
  font-family: var(--font-geist);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-navy);
}

.ce-info-box-waterfall .ce-info-box-desc {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 150%;
}

.ce-info-box-flexibility {
  background: linear-gradient(90deg, #1080FB 0%, #74B1FE 100%);
  color: #fff;
}

.ce-info-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ce-info-box-flexibility .ce-info-box-title {
  font-family: var(--font-geist);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.ce-info-box-flexibility .ce-info-box-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 150%;
}

.ce-info-box-flexibility .check-dot {
  display: inline-flex;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(146deg, #14D94C 31%, #0FA339 107%);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ce-timeline-info-boxes {
    flex-direction: column;
  }
}
