/* ============================================================
   FINOIC — Apple-Style Stylesheet
   Brand: Teal #0E5F75 | Blue Accent #4E78BB
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- DESIGN TOKENS ----------------------------------------- */
:root {
  --teal:          #0E5F75;
  --teal-dark:     #0A3F50;
  --teal-light:    #1A7A95;
  --teal-pale:     #E8F4F8;
  --blue:          #4E78BB;
  --blue-light:    #6B93D6;
  --blue-pale:     #EBF1FA;

  --black:         #1D1D1F;
  --gray-50:       #FBFBFD;
  --gray-100:      #F5F5F7;
  --gray-200:      #E8E8ED;
  --gray-300:      #D2D2D7;
  --gray-400:      #A1A1A6;
  --gray-500:      #86868B;
  --gray-600:      #6E6E73;
  --white:         #FFFFFF;

  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h:         68px;

  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:     0 8px 24px rgba(0,0,0,0.09);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.11);
  --shadow-xl:     0 24px 72px rgba(0,0,0,0.13);
  --shadow-teal:   0 8px 32px rgba(14,95,117,0.28);

  --r-sm:  12px;
  --r:     16px;
  --r-lg:  20px;
  --r-xl:  28px;

  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur:      0.3s;
}

/* --- RESET -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font); }

/* --- LAYOUT ------------------------------------------------- */
.container      { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.section        { padding: 96px 0; }
.section-sm     { padding: 64px 0; }

/* --- TYPOGRAPHY -------------------------------------------- */
.eyebrow {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); display: block;
}
.display {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800; line-height: 1.03; letter-spacing: -0.04em;
}
.headline {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.025em;
}
.title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700; letter-spacing: -0.015em; line-height: 1.2;
}
.subheadline {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400; line-height: 1.65; color: var(--gray-600);
}
.text-center { text-align: center; }
.text-teal   { color: var(--teal); }

/* Gradient text */
.grad-text {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- BUTTONS ----------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 980px;
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
  transition: all var(--dur) var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn-primary  { background: var(--teal); color: var(--white); }
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}
.btn-secondary { background: var(--gray-100); color: var(--black); }
.btn-secondary:hover { background: var(--gray-200); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--teal);
  border: 1.5px solid rgba(14,95,117,0.4);
}
.btn-outline:hover {
  background: var(--teal-pale); border-color: var(--teal);
  transform: translateY(-2px);
}
.btn-white  { background: var(--white); color: var(--teal); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }
.btn-ghost  { background: rgba(255,255,255,0.12); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.btn-lg     { padding: 18px 36px; font-size: 17px; }
.btn svg    { width: 18px; height: 18px; }

/* --- NAVBAR ------------------------------------------------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: all var(--dur) var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.navbar .container {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%;
}
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--gray-600);
  transition: color var(--dur) var(--ease);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--teal);
  transform: scaleX(0); transform-origin: center;
  transition: transform var(--dur) var(--ease);
  border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border-radius: 8px;
  transition: background var(--dur);
}
.nav-toggle:hover { background: var(--gray-100); }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 24px 24px;
  z-index: 999; box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 15px 0;
  font-size: 17px; font-weight: 500; color: var(--black);
  border-bottom: 1px solid var(--gray-200);
  transition: color var(--dur);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* --- HERO (Home) ------------------------------------------- */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--white);
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(14,95,117,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 60% 60% at 90% 60%, rgba(78,120,187,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(14,95,117,0.05) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(14,95,117,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,95,117,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  text-align: center; padding: 80px 0 60px; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-pale); color: var(--teal);
  padding: 8px 18px; border-radius: 980px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  margin-bottom: 36px; border: 1px solid rgba(14,95,117,0.18);
}
.hero-badge-dot {
  width: 7px; height: 7px; background: var(--teal);
  border-radius: 50%; animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}
.hero-title {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800; line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--black); margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(16px, 2.2vw, 21px);
  line-height: 1.65; color: var(--gray-600);
  max-width: 580px; margin: 0 auto 44px;
}
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-top: 72px; flex-wrap: wrap;
  border-top: 1px solid var(--gray-200); padding-top: 48px;
}
.hero-stat { text-align: center; padding: 0 40px; position: relative; }
.hero-stat + .hero-stat::before {
  content: ''; position: absolute; left: 0; top: 10%; bottom: 10%;
  width: 1px; background: var(--gray-200);
}
.stat-num {
  font-size: 44px; font-weight: 800;
  letter-spacing: -0.04em; color: var(--teal); line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: var(--gray-500); font-weight: 500; }

/* --- SECTION HEADERS --------------------------------------- */
.sec-header { text-align: center; margin-bottom: 64px; }
.sec-header .eyebrow { margin-bottom: 14px; }
.sec-header .headline { margin-bottom: 16px; }
.sec-header .subheadline { max-width: 600px; margin: 0 auto; }

/* --- SERVICE OVERVIEW GRID (Home) -------------------------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: all var(--dur) var(--ease);
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--blue) 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-6px);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 52px; height: 52px;
  background: var(--teal-pale); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--teal);
  transition: all var(--dur) var(--ease);
}
.svc-card:hover .svc-icon { background: var(--teal); color: var(--white); }
.svc-icon svg { width: 24px; height: 24px; }
.svc-card h3 {
  font-size: 18px; font-weight: 700;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.svc-card p { font-size: 14px; line-height: 1.7; color: var(--gray-500); }
.svc-card .card-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 20px; font-size: 14px; font-weight: 600;
  color: var(--teal); transition: gap var(--dur) var(--ease);
}
.svc-card:hover .card-link { gap: 8px; }

/* --- WHY FINOIC ------------------------------------------- */
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.why-card {
  background: var(--gray-100); border-radius: var(--r-lg);
  padding: 40px; transition: all var(--dur) var(--ease);
}
.why-card:hover { background: var(--teal-pale); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 56px; height: 56px; background: var(--white);
  border-radius: var(--r-sm); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--teal); box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
}
.why-card:hover .why-icon { background: var(--teal); color: var(--white); }
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
.why-card p  { font-size: 15px; line-height: 1.7; color: var(--gray-600); }

/* --- PROCESS STEPS ---------------------------------------- */
.process-wrap {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative;
}
.process-wrap::before {
  content: ''; position: absolute;
  top: 32px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--blue) 100%);
}
.process-step { text-align: center; position: relative; z-index: 1; }
.p-num {
  width: 64px; height: 64px; background: var(--teal); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(14,95,117,0.35);
}
.process-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.process-step p  { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* --- TESTIMONIALS ------------------------------------------ */
.test-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.test-card {
  background: var(--gray-100); border-radius: var(--r-lg);
  padding: 36px; transition: all var(--dur) var(--ease);
}
.test-card:hover {
  background: var(--white); box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.test-stars { display: flex; gap: 4px; margin-bottom: 20px; color: #F59E0B; }
.test-stars svg { width: 16px; height: 16px; fill: currentColor; }
.test-text {
  font-size: 15px; line-height: 1.8;
  color: var(--gray-600); margin-bottom: 28px; font-style: italic;
}
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: var(--white);
  font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.test-name  { font-weight: 700; font-size: 15px; }
.test-role  { font-size: 13px; color: var(--gray-500); }

/* --- CTA BANNER ------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 88px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 90% at 90% 50%, rgba(78,120,187,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(255,255,255,0.06) 0%, transparent 55%);
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner .headline { color: var(--white); margin-bottom: 16px; }
.cta-inner .subheadline { color: rgba(255,255,255,0.72); margin-bottom: 40px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* --- FOOTER ------------------------------------------------- */
.footer { background: #0F0F0F; color: var(--white); padding: 72px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand .footer-logo { height: 34px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p {
  font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.45);
  margin: 18px 0 24px; max-width: 260px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px; display: flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--dur) var(--ease);
}
.footer-social a:hover { background: var(--teal); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,0.55);
  transition: color var(--dur);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--dur); }
.footer-bottom a:hover { color: var(--white); }

/* --- WHATSAPP FLOAT ---------------------------------------- */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 998; display: flex; align-items: center; gap: 12px;
}
.wa-label {
  background: var(--black); color: var(--white);
  padding: 10px 16px; border-radius: 10px; position: relative;
  font-size: 13px; font-weight: 500; white-space: nowrap;
  opacity: 0; transform: translateX(10px);
  transition: all var(--dur) var(--ease); pointer-events: none;
}
.wa-label::after {
  content: ''; position: absolute;
  right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none; border-left-color: var(--black);
}
.wa-float:hover .wa-label { opacity: 1; transform: translateX(0); }
.wa-btn {
  width: 58px; height: 58px; background: #25D366;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  color: white; transition: all var(--dur) var(--ease);
  animation: wa-pulse 3.5s ease-in-out infinite;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.55); animation: none; }
.wa-btn svg { width: 28px; height: 28px; }
@keyframes wa-pulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

/* --- BACK TO TOP ------------------------------------------- */
.back-top {
  position: fixed; bottom: 100px; right: 28px;
  width: 42px; height: 42px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600); box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(16px);
  transition: all var(--dur) var(--ease);
  z-index: 997; cursor: pointer;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--teal); color: var(--white); border-color: transparent; }
.back-top svg { width: 18px; height: 18px; }

/* --- SCROLL REVEAL ----------------------------------------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-up  { opacity: 0; transform: translateY(40px); transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out); }
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.26s; }
.d4 { transition-delay: 0.34s; }
.d5 { transition-delay: 0.42s; }
.d6 { transition-delay: 0.50s; }

/* --- PAGE HERO (inner pages) ------------------------------- */
.page-hero {
  background: var(--gray-100); padding: 120px 0 80px;
  margin-top: var(--nav-h); text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 120% at 50% 0%, rgba(14,95,117,0.07) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero .headline { margin-bottom: 16px; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 13px; color: var(--gray-500); margin-top: 16px;
}
.breadcrumb a { color: var(--gray-500); transition: color var(--dur); }
.breadcrumb a:hover { color: var(--teal); }
.bc-sep { opacity: 0.4; }

/* --- SERVICES PAGE ----------------------------------------- */
.cat-section { margin-bottom: 72px; }
.cat-section:last-child { margin-bottom: 0; }
.cat-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.cat-icon {
  width: 48px; height: 48px; background: var(--teal-pale);
  border-radius: var(--r-sm); display: flex;
  align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0;
}
.cat-icon svg { width: 22px; height: 22px; }
.cat-header h2 { font-size: 24px; font-weight: 700; letter-spacing: -0.015em; }
.svc-items {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.svc-item {
  background: var(--gray-100); border-radius: var(--r-sm);
  padding: 24px; border: 1.5px solid transparent;
  transition: all var(--dur) var(--ease);
}
.svc-item:hover {
  background: var(--white); border-color: var(--teal);
  box-shadow: var(--shadow-md); transform: translateY(-3px);
}
.svc-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.svc-item p  { font-size: 13px; line-height: 1.65; color: var(--gray-500); }

/* --- ABOUT PAGE -------------------------------------------- */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.story-visual {
  background: var(--gray-100); border-radius: var(--r-xl);
  aspect-ratio: 4/3; overflow: hidden; position: relative;
}
.story-visual-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--teal-pale) 0%, var(--blue-pale) 100%);
  display: flex; align-items: center; justify-content: center; padding: 36px;
}
.stat-boxes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%;
}
.stat-box {
  background: var(--white); border-radius: var(--r); padding: 24px;
  text-align: center; box-shadow: var(--shadow-md);
}
.stat-box .s-num {
  font-size: 36px; font-weight: 800; color: var(--teal);
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px;
}
.stat-box .s-lbl { font-size: 12px; color: var(--gray-500); font-weight: 500; }
.story-text .eyebrow { margin-bottom: 14px; }
.story-text h2  { font-size: clamp(30px, 3.5vw, 44px); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 20px; }
.story-text p   { font-size: 16px; line-height: 1.8; color: var(--gray-600); margin-bottom: 16px; }
.story-text p:last-child { margin-bottom: 0; }

.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.val-card {
  background: var(--gray-100); border-radius: var(--r-lg);
  padding: 32px 24px; text-align: center;
  transition: all var(--dur) var(--ease);
}
.val-card:hover { background: var(--teal-pale); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.val-icon {
  width: 64px; height: 64px; background: var(--white);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px;
  color: var(--teal); box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
}
.val-card:hover .val-icon { background: var(--teal); color: var(--white); }
.val-icon svg { width: 24px; height: 24px; }
.val-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.val-card p  { font-size: 14px; line-height: 1.7; color: var(--gray-600); }

/* Mission / Vision */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card {
  border-radius: var(--r-xl); padding: 48px 40px; position: relative; overflow: hidden;
}
.mv-card.mission { background: var(--teal); color: var(--white); }
.mv-card.vision  { background: var(--gray-100); color: var(--black); }
.mv-card.mission::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 100% 0%, rgba(78,120,187,0.4) 0%, transparent 60%);
}
.mv-card-inner { position: relative; z-index: 1; }
.mv-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; border-radius: var(--r-sm);
}
.mv-card.mission .mv-icon { background: rgba(255,255,255,0.15); color: var(--white); }
.mv-card.vision  .mv-icon { background: var(--teal-pale); color: var(--teal); }
.mv-icon svg { width: 24px; height: 24px; }
.mv-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; opacity: 0.65; }
.mv-card.mission .mv-label { color: var(--white); }
.mv-card.vision  .mv-label { color: var(--teal); }
.mv-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 14px; letter-spacing: -0.015em; }
.mv-card p  { font-size: 15px; line-height: 1.75; }
.mv-card.mission p { color: rgba(255,255,255,0.8); }
.mv-card.vision  p { color: var(--gray-600); }

/* Industries */
.ind-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.ind-tag {
  background: var(--gray-100); border-radius: 980px;
  padding: 10px 22px; font-size: 14px; font-weight: 500;
  color: var(--gray-600); border: 1.5px solid transparent;
  transition: all var(--dur) var(--ease);
}
.ind-tag:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-pale); }

/* --- CONTACT PAGE ------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.ci-card {
  background: var(--gray-100); border-radius: var(--r);
  padding: 24px 26px; display: flex; gap: 18px; align-items: flex-start;
  transition: all var(--dur) var(--ease); border: 1px solid transparent;
}
.ci-card:hover { background: var(--teal-pale); border-color: rgba(14,95,117,0.2); transform: translateX(4px); }
.ci-icon {
  width: 44px; height: 44px; min-width: 44px; background: var(--teal);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: var(--white);
}
.ci-icon svg { width: 20px; height: 20px; }
.ci-text h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.ci-text p, .ci-text a { font-size: 14px; color: var(--gray-600); line-height: 1.55; transition: color var(--dur); }
.ci-text a:hover { color: var(--teal); }
.wa-direct {
  display: flex; align-items: center; gap: 14px;
  background: #ECFDF5; border-radius: var(--r); padding: 20px 24px;
  border: 1px solid #6EE7B7; cursor: pointer; transition: all var(--dur) var(--ease);
}
.wa-direct:hover { background: #D1FAE5; transform: translateX(4px); }
.wa-direct-icon {
  width: 44px; height: 44px; min-width: 44px; background: #25D366;
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: var(--white);
}
.wa-direct-icon svg { width: 22px; height: 22px; }
.wa-direct-text h4 { font-size: 14px; font-weight: 600; color: #065F46; }
.wa-direct-text p  { font-size: 13px; color: #047857; }

/* Form */
.cform-wrap {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-xl); padding: 48px;
  box-shadow: var(--shadow-md);
}
.cform-wrap h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.cform-wrap > p { font-size: 14px; color: var(--gray-600); margin-bottom: 32px; }
.fgroup { margin-bottom: 20px; }
.fgroup label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.fgroup input,
.fgroup select,
.fgroup textarea {
  width: 100%; background: var(--gray-100);
  border: 1.5px solid transparent; border-radius: var(--r-sm);
  padding: 14px 18px; font-size: 15px; font-family: var(--font);
  color: var(--black); transition: all var(--dur) var(--ease); outline: none;
}
.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
  border-color: var(--teal); background: var(--white);
  box-shadow: 0 0 0 4px rgba(14,95,117,0.1);
}
.fgroup input::placeholder,
.fgroup textarea::placeholder { color: var(--gray-400); }
.fgroup textarea { resize: vertical; min-height: 120px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  background: #ECFDF5; border: 1px solid #6EE7B7; color: #065F46;
  padding: 16px 20px; border-radius: var(--r-sm); font-size: 14px; font-weight: 500;
  display: none; align-items: center; gap: 10px; margin-bottom: 20px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* --- FAQ / ACCORDION --------------------------------------- */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc-item {
  background: var(--gray-100); border-radius: var(--r);
  overflow: hidden; border: 1.5px solid transparent;
  transition: border-color var(--dur), background var(--dur);
}
.acc-item.open { border-color: rgba(14,95,117,0.35); background: var(--white); }
.acc-trigger {
  width: 100%; padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; font-size: 16px; font-weight: 600;
  color: var(--black); text-align: left;
  transition: color var(--dur); background: none; border: none; font-family: var(--font);
}
.acc-trigger:hover { color: var(--teal); }
.acc-icon {
  width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
  background: var(--teal-pale); display: flex;
  align-items: center; justify-content: center;
  color: var(--teal); transition: all var(--dur) var(--ease);
}
.acc-icon svg { width: 14px; height: 14px; }
.acc-item.open .acc-icon { background: var(--teal); color: var(--white); transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.42s var(--ease-out); }
.acc-body-inner { padding: 0 28px 24px; font-size: 15px; line-height: 1.75; color: var(--gray-600); }
.acc-item.open .acc-body { max-height: 500px; }

/* --- DIVIDER ----------------------------------------------- */
.divider { height: 1px; background: var(--gray-200); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .svc-grid       { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .test-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: repeat(2, 1fr); }
  .values-grid    { grid-template-columns: repeat(4, 1fr); }
  .svc-items      { grid-template-columns: repeat(2, 1fr); }
  .process-wrap   { grid-template-columns: repeat(2, 1fr); }
  .process-wrap::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-primary { padding: 10px 20px; font-size: 14px; }

  .section { padding: 72px 0; }
  .section-sm { padding: 52px 0; }

  .hero-stats { gap: 0; }
  .hero-stat  { padding: 0 24px; }
  .stat-num   { font-size: 36px; }

  .svc-grid    { grid-template-columns: 1fr; }
  .why-grid    { grid-template-columns: 1fr; }
  .test-grid   { grid-template-columns: 1fr; }
  .svc-items   { grid-template-columns: 1fr; }

  .story-grid  { grid-template-columns: 1fr; gap: 40px; }
  .mv-grid     { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
  .cform-wrap   { padding: 28px 24px; }
  .frow         { grid-template-columns: 1fr; }

  .process-wrap { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; justify-content: center; max-width: 280px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; justify-content: center; max-width: 280px; }
}

@media (max-width: 480px) {
  .values-grid  { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .process-wrap { grid-template-columns: 1fr; }
  .hero-stat + .hero-stat::before { display: none; }
  .hero-stats { gap: 32px; flex-direction: column; }
  .sec-header { margin-bottom: 44px; }
}
