/* ==========================================================================
   Iconia Tech — Main Stylesheet
   Brand: Primary #365C9C | Accent #FF834F | Light Orange #FFAE78 | Dark #313131
   Fonts: Gugi (brand/headings) | Inter (body)
   ========================================================================== */

/* ------------------------------------------------------------------
   1. CSS Custom Properties
------------------------------------------------------------------ */
:root {
  --primary:        #365C9C;
  --primary-dark:   #2a4778;
  --primary-light:  #4a75c4;
  --primary-bg:     #EEF3FB;
  --accent:         #FF834F;
  --accent-hover:   #e8693a;
  --accent-light:   #FFAE78;
  --accent-pale:    #FFF0E8;
  --accent-red:     #FF4949;
  --dark:           #313131;
  --white:          #FFFFFF;
  --off-white:      #F8FAFC;
  --light-bg:       #F0F5FC;
  --border:         #E2E8F0;
  --text-body:      #4A5568;
  --text-light:     #718096;
  --text-dark:      #1A202C;

  --font-brand: 'Gugi', sans-serif;
  --font-body:  'Inter', system-ui, -apple-system, sans-serif;

  --shadow-xs: 0 1px 3px rgba(54,92,156,.08);
  --shadow-sm: 0 2px 8px rgba(54,92,156,.10);
  --shadow-md: 0 4px 20px rgba(54,92,156,.14);
  --shadow-lg: 0 8px 40px rgba(54,92,156,.18);

  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  --transition:      all .3s ease;
  --transition-fast: all .15s ease;

  --max-width:      1200px;
  --section-pad:    96px;
  --section-pad-sm: 56px;
}

/* ------------------------------------------------------------------
   2. 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-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ------------------------------------------------------------------
   3. Typography
------------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-brand);
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.125rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* ------------------------------------------------------------------
   4. Layout
------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section--light { background: var(--light-bg); }
.section--dark  { background: var(--primary); color: var(--white); }
.section--white { background: var(--white); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-pale);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-header h2 { margin-bottom: 16px; }

.section-header p {
  font-size: 1.05rem;
  color: var(--text-body);
}

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ------------------------------------------------------------------
   5. Buttons
------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn-lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm  { padding: 9px  20px; font-size: .875rem; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,131,79,.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ------------------------------------------------------------------
   6. Navigation
------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar { padding: 0; }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.custom-logo-link img { height: 48px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links li a {
  display: block;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .25s ease;
  border-radius: var(--radius-full);
}

.nav-links li a:hover,
.nav-links li.current-menu-item a {
  color: var(--primary);
}
.nav-links li a:hover::after,
.nav-links li.current-menu-item a::after { transform: scaleX(1); }

.nav-cta { margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.hamburger:hover { background: var(--light-bg); }
.hamburger .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.hamburger[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 999;
  opacity: 0;
  transition: opacity .3s;
}

/* ------------------------------------------------------------------
   7. Hero Section
------------------------------------------------------------------ */
.hero {
  position: relative;
  background: var(--primary);
  overflow: hidden;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

/* Animated dot-grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.12) 1px, transparent 0);
  background-size: 36px 36px;
  animation: gridFloat 25s linear infinite;
  pointer-events: none;
}

/* Gradient accent blob */
.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,131,79,.25) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

@keyframes gridFloat {
  0%   { background-position: 0 0; }
  100% { background-position: 36px 36px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-text { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(255,174,120,.15);
  border: 1px solid rgba(255,174,120,.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-light);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-brand);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--accent-light);
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

.hero-trust-dots {
  display: flex;
  gap: 4px;
}
.hero-trust-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: var(--white);
  font-weight: 700;
}

/* Dashboard Mockup */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-mockup {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  animation: floatCard 6s ease-in-out infinite;
}

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

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dot.red    { background: #FF4949; }
.mockup-dot.yellow { background: #FFAE78; }
.mockup-dot.green  { background: #48BB78; }

.mockup-title {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-light);
  margin-left: 8px;
  letter-spacing: .02em;
}

.mockup-body { padding: 16px; display: grid; gap: 12px; }

.workflow-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.workflow-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--off-white);
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-dark);
}

.badge {
  display: inline-flex;
  align-items: center;
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}
.badge-active    { background: #EBF8FF; color: #2B6CB0; }
.badge-submitted { background: #F0FFF4; color: #276749; }
.badge-pending   { background: #FFFAF0; color: #9C4221; }

.workflow-card-body { padding: 10px 14px; display: grid; gap: 8px; }

.workflow-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .73rem;
  color: var(--text-body);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.workflow-item:last-child { border-bottom: none; }
.workflow-item i { color: var(--accent); font-size: .8rem; flex-shrink: 0; }
.workflow-item-label { flex: 1; }

.progress-wrap {
  padding: 6px 14px 12px;
}
.progress-bar-track {
  height: 4px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transition: width .8s ease;
}

/* ------------------------------------------------------------------
   8. Stats Bar
------------------------------------------------------------------ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}

.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.3rem;
  color: var(--accent);
}

.stat-number {
  font-family: var(--font-brand);
  font-size: 2.4rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ------------------------------------------------------------------
   9. Services Section
------------------------------------------------------------------ */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.service-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.service-card p {
  font-size: .9rem;
  color: var(--text-body);
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap .2s;
}
.service-link:hover { gap: 10px; }

/* ------------------------------------------------------------------
   10. Jipange Spotlight
------------------------------------------------------------------ */
.jipange-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.jipange-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 40px 40px;
}

.jipange-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.jipange-text .section-eyebrow {
  background: rgba(255,174,120,.2);
  color: var(--accent-light);
  border: 1px solid rgba(255,174,120,.3);
}

.jipange-text h2 { color: var(--white); margin-bottom: 16px; }

.jipange-text p { color: rgba(255,255,255,.8); margin-bottom: 28px; }

.feature-list { display: grid; gap: 14px; margin-bottom: 36px; }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,131,79,.25);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-check i { font-size: .6rem; color: var(--accent-light); }

.feature-item-text strong {
  display: block;
  font-size: .95rem;
  color: var(--white);
  margin-bottom: 2px;
}
.feature-item-text span {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}

.jipange-visual { display: flex; align-items: center; justify-content: center; }

.product-screen {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  overflow: hidden;
  width: 100%;
}

.product-screen-header {
  padding: 12px 16px;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-screen-header span {
  font-size: .7rem;
  color: rgba(255,255,255,.7);
  font-family: var(--font-body);
}
.ps-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); }

.product-screen-body { padding: 20px; }

.ps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .78rem;
  color: var(--text-body);
}
.ps-row:last-child { border-bottom: none; }

.ps-step {
  font-weight: 700;
  color: var(--primary);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ------------------------------------------------------------------
   11. How It Works
------------------------------------------------------------------ */
.how-it-works-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.how-it-works-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.66% + 36px);
  right: calc(16.66% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
}

.step-block {
  text-align: center;
  padding: 0 32px;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-brand);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--accent);
}

.step-block h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.step-block p {
  font-size: .9rem;
  color: var(--text-body);
}

/* ------------------------------------------------------------------
   12. Pain Points / Why Iconia
------------------------------------------------------------------ */
.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.pain-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pain-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.pain-card h4 { font-size: 1rem; margin-bottom: 8px; }
.pain-card p  { font-size: .875rem; color: var(--text-body); }

/* ------------------------------------------------------------------
   13. CTA Banner
------------------------------------------------------------------ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0);
  background-size: 30px 30px;
}

.cta-blob-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,131,79,.2);
  top: -150px;
  left: -100px;
  pointer-events: none;
}
.cta-blob-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,174,120,.15);
  bottom: -100px;
  right: -50px;
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.cta-banner p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------------
   14. Contact Form
------------------------------------------------------------------ */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info p   { margin-bottom: 32px; }

.contact-details { display: grid; gap: 20px; margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-detail-text a,
.contact-detail-text span {
  font-size: .95rem;
  color: var(--text-dark);
  font-weight: 500;
}
.contact-detail-text a:hover { color: var(--accent); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

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

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group label span { color: var(--accent-red); }

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(54,92,156,.1);
}

textarea.form-control { resize: vertical; min-height: 140px; }

.form-message {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 16px;
}
.form-message.success { background: #F0FFF4; color: #276749; border: 1px solid #C6F6D5; display: block; }
.form-message.error   { background: #FFF5F5; color: #9B2C2C; border: 1px solid #FED7D7; display: block; }

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

/* ------------------------------------------------------------------
   15. About Page
------------------------------------------------------------------ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0);
  background-size: 32px 32px;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,.8); font-size: 1.1rem; }
.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}
.page-breadcrumb a { color: var(--accent-light); }
.page-breadcrumb span { color: rgba(255,255,255,.4); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-card-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p  { font-size: .875rem; color: var(--text-body); }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-story-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--primary-bg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-story-placeholder {
  text-align: center;
  padding: 40px;
}
.about-story-placeholder i { font-size: 4rem; color: var(--primary-light); margin-bottom: 16px; }
.about-story-placeholder p { color: var(--text-light); font-size: .85rem; }

/* ------------------------------------------------------------------
   16. Services Page
------------------------------------------------------------------ */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-full-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 24px;
  transition: var(--transition);
}
.service-full-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
  transform: translateY(-4px);
}
.service-full-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
  flex-shrink: 0;
}
.service-full-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-full-body p  { font-size: .9rem; color: var(--text-body); margin-bottom: 16px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--primary-bg);
  color: var(--primary);
}

/* ------------------------------------------------------------------
   17. Jipange Product Page
------------------------------------------------------------------ */
.jipange-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.jipange-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0);
  background-size: 36px 36px;
}
.jipange-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.jipange-hero-text h1 { color: var(--white); margin-bottom: 14px; }
.jipange-hero-text .lead { color: rgba(255,255,255,.8); margin-bottom: 32px; }

.problem-section { background: var(--light-bg); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-left: 4px solid var(--accent-red);
}
.problem-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--accent-red); }
.problem-card p  { font-size: .875rem; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--accent-light); }
.feature-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--accent-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent);
  margin-bottom: 16px;
}
.feature-card h4 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p  { font-size: .875rem; color: var(--text-body); }

/* Workflow diagram */
.workflow-diagram {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding: 20px 0;
}
.workflow-step-block {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.workflow-step-content {
  text-align: center;
  width: 180px;
}
.workflow-step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 12px;
  box-shadow: var(--shadow-md);
}
.workflow-step-content h4 { font-size: .9rem; margin-bottom: 6px; }
.workflow-step-content p  { font-size: .78rem; color: var(--text-body); }
.workflow-arrow {
  font-size: 1.5rem;
  color: var(--accent-light);
  margin: 0 8px;
  flex-shrink: 0;
  margin-top: -28px;
}

/* ------------------------------------------------------------------
   18. Footer
------------------------------------------------------------------ */
.site-footer {
  background: #1A2E50;
  color: rgba(255,255,255,.8);
}

.footer-top { padding: 72px 0 48px; }

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

.footer-logo { height: 40px; width: auto; margin-bottom: 16px; }

.footer-tagline {
  font-family: var(--font-brand);
  font-size: .95rem;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.footer-about {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links { display: grid; gap: 10px; }
.footer-links li a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links li a:hover { color: var(--accent-light); }

.footer-contact { display: grid; gap: 14px; margin-bottom: 24px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}
.footer-contact li i {
  color: var(--accent-light);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: .85rem;
}
.footer-contact li a { color: rgba(255,255,255,.6); }
.footer-contact li a:hover { color: var(--accent-light); }

.footer-cta { margin-top: 8px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy, .footer-legal {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-legal a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-legal a:hover { color: var(--accent-light); }

/* ------------------------------------------------------------------
   19. Utilities & Helpers
------------------------------------------------------------------ */
.text-center  { text-align: center; }
.text-white   { color: var(--white) !important; }
.text-accent  { color: var(--accent) !important; }
.text-primary { color: var(--primary) !important; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-8  { margin-bottom: 2rem; }

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: var(--radius-full);
  margin: 20px auto 0;
}

/* Scroll-to-top button */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 900;
  border: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* 404 */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
}
.error-code {
  font-family: var(--font-brand);
  font-size: 8rem;
  color: var(--primary-bg);
  line-height: 1;
  margin-bottom: -20px;
}

/* ------------------------------------------------------------------
   20. Responsive Breakpoints
------------------------------------------------------------------ */

/* Tablet – 1024px */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .hero-content          { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual           { display: none; }
  .hero-text             { max-width: 100%; text-align: center; }
  .hero-actions          { justify-content: center; }
  .hero-trust            { justify-content: center; }

  .stats-bar-inner       { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2){ border-right: none; }

  .service-cards         { grid-template-columns: repeat(2, 1fr); }
  .jipange-grid          { grid-template-columns: 1fr; gap: 48px; }
  .jipange-visual        { display: none; }
  .how-it-works-steps    { grid-template-columns: 1fr; }
  .how-it-works-steps::before { display: none; }
  .pain-points-grid      { grid-template-columns: repeat(2, 1fr); }
  .contact-grid          { grid-template-columns: 1fr; }
  .footer-grid           { grid-template-columns: repeat(2, 1fr); }
  .about-story           { grid-template-columns: 1fr; }
  .about-story-img       { display: none; }
  .jipange-hero-inner    { grid-template-columns: 1fr; }
  .services-grid         { grid-template-columns: 1fr; }
  .features-grid         { grid-template-columns: repeat(2, 1fr); }
  .problem-grid          { grid-template-columns: repeat(2, 1fr); }
  .values-grid           { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile – 768px */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .hamburger  { display: flex; }

  .nav-menu {
    position: fixed;
    top: 72px;
    right: -100%;
    width: min(320px, 85vw);
    height: calc(100vh - 72px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transition: right .35s cubic-bezier(.4,0,.2,1);
    z-index: 1000;
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; }

  .nav-overlay.open {
    display: block;
    opacity: 1;
  }

  .nav-links { flex-direction: column; align-items: flex-start; width: 100%; gap: 2px; }
  .nav-links li { width: 100%; }
  .nav-links li a { font-size: 1rem; padding: 12px 16px; border-radius: var(--radius); }
  .nav-links li a::after { display: none; }
  .nav-cta { width: 100%; justify-content: center; margin-left: 0; margin-top: 12px; }

  .service-cards    { grid-template-columns: 1fr; }
  .stats-bar-inner  { grid-template-columns: repeat(2, 1fr); }
  .pain-points-grid { grid-template-columns: 1fr; }
  .features-grid    { grid-template-columns: 1fr; }
  .problem-grid     { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  .cta-banner-btns { flex-direction: column; align-items: center; }

  .contact-form-card { padding: 24px; }
  .section-header { margin-bottom: 40px; }

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

  .services-grid { grid-template-columns: 1fr; }
  .service-full-card { flex-direction: column; }
}

/* Small mobile – 480px */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stat-item { padding: 24px 12px; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .error-code { font-size: 5rem; }
}

/* ------------------------------------------------------------------
   21. New Components — Jipange Suite, Trusted By, Connect, Metrics
       (Snowflake-inspired design patterns)
------------------------------------------------------------------ */

/* Light Sections (formerly very-dark — now uses off-white) */
.section--very-dark {
  background: var(--off-white);
  color: var(--text-dark);
}
.section--very-dark .section-eyebrow {
  background: var(--accent-pale);
  color: var(--accent);
  border: 1px solid rgba(255,131,79,.25);
}
.section--very-dark .section-header h2 { color: var(--primary); }
.section--very-dark .section-header p  { color: var(--text-body); }
.section--very-dark .divider { background: linear-gradient(90deg, var(--accent), var(--accent-light)); }

/* Problem Cards — dark section */
.problem-dark-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.problem-dark-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border-top: 3px solid var(--accent-red);
  transition: var(--transition);
}
.problem-dark-card:hover {
  background: var(--light-bg);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.problem-dark-card .pain-icon {
  background: rgba(255,73,73,.08);
  color: var(--accent-red);
}
.problem-dark-card h4 { color: var(--primary); font-size: 1rem; margin-bottom: 8px; }
.problem-dark-card p  { font-size: .875rem; color: var(--text-body); }

/* Jipange Suite Two-Product Cards */
.suite-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.suite-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.suite-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.suite-card--ops   { border-top: 5px solid var(--accent); }
.suite-card--connect { border-top: 5px solid #25D366; }

.suite-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.suite-card--ops   .suite-card-badge { background: var(--accent-pale); color: var(--accent); }
.suite-card--connect .suite-card-badge { background: #F0FFF4; color: #276749; }

.suite-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.suite-card > p { font-size: 1rem; color: var(--text-body); margin-bottom: 24px; line-height: 1.7; }

.suite-feature-list { display: grid; gap: 10px; margin-bottom: 32px; }
.suite-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: var(--text-body);
}
.suite-feature-item i {
  font-size: .75rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.suite-card--ops   .suite-feature-item i { color: var(--accent); }
.suite-card--connect .suite-feature-item i { color: #25D366; }

.suite-card-label {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
  padding: 3px 10px;
  background: var(--light-bg);
  border-radius: var(--radius-full);
}

/* Metrics Row (Snowflake-style bold numbers) */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.metric-item {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid var(--border);
  position: relative;
}
.metric-item:last-child { border-right: none; }
.metric-number {
  font-family: var(--font-brand);
  font-size: 3.2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.metric-suffix {
  font-family: var(--font-brand);
  font-size: 1.8rem;
  color: var(--accent-light);
  vertical-align: super;
}
.metric-label {
  font-size: .85rem;
  color: var(--text-light);
  font-weight: 500;
}
.metric-sublabel {
  font-size: .75rem;
  color: var(--text-light);
  opacity: .6;
  margin-top: 4px;
}

/* Operational Truth Section */
.ops-truth-section { background: var(--light-bg); }

.ops-truth-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: center;
}

.ops-truth-text h2 { color: var(--primary); margin-bottom: 16px; }
.ops-truth-text p  { color: var(--text-body); margin-bottom: 28px; }

.ops-truth-visual {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.ops-ceo-box {
  background: var(--primary-bg);
  border: 1.5px solid rgba(54,92,156,.2);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.ops-ceo-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(54,92,156,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ops-ceo-label { font-size: .75rem; color: var(--text-light); }
.ops-ceo-value {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  color: #16a34a;
}
.ops-ceo-sublabel { font-size: .72rem; color: var(--text-light); opacity: .7; }

.ops-managers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.ops-manager-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
}
.ops-manager-value {
  font-family: var(--font-brand);
  font-size: 1.3rem;
  color: #16a34a;
  display: block;
}
.ops-manager-label { font-size: .65rem; color: var(--text-light); }

.ops-truth-tagline {
  text-align: center;
  font-size: .82rem;
  color: var(--text-light);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.ops-truth-tagline strong { color: #16a34a; }

/* Trusted By / Client Logos */
.trusted-section { background: var(--light-bg); }

.client-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.client-logo-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 28px;
  text-align: center;
  transition: var(--transition);
  min-width: 160px;
}
.client-logo-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.client-logo-name {
  font-family: var(--font-brand);
  font-size: .85rem;
  color: var(--primary);
  display: block;
  margin-bottom: 2px;
}
.client-logo-industry {
  font-size: .7rem;
  color: var(--text-light);
}

/* Testimonial */
.testimonial-block {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  box-shadow: var(--shadow-lg);
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}
.testimonial-block::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 8rem;
  color: var(--accent-pale);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 32px;
}
.testimonial-quote {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  padding-left: 12px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary-bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-brand);
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}
.testimonial-name  { font-weight: 700; color: var(--text-dark); font-size: .95rem; }
.testimonial-role  { font-size: .8rem; color: var(--text-light); }
.testimonial-company {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  background: var(--accent-pale);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* WhatsApp / Jipange Connect Section */
.connect-section { background: #F8FAFF; }

.connect-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #25D366;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.connect-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: center;
}

.connect-text h2 { color: var(--primary); margin-bottom: 14px; }
.connect-text p  { color: var(--text-body); margin-bottom: 28px; }

.whatsapp-steps {
  display: grid;
  gap: 14px;
}
.whatsapp-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #F0FFF4;
  border: 1px solid rgba(37,211,102,.25);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: var(--transition);
}
.whatsapp-step:hover {
  background: #E6FFEC;
  border-color: rgba(37,211,102,.45);
  box-shadow: var(--shadow-sm);
}
.whatsapp-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.whatsapp-step-body strong {
  display: block;
  color: var(--primary);
  font-size: .95rem;
  margin-bottom: 4px;
}
.whatsapp-step-body span { font-size: .85rem; color: var(--text-body); }

.connect-visual {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.connect-chat {
  display: grid;
  gap: 12px;
}
.connect-chat-bubble {
  max-width: 80%;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: .85rem;
}
.bubble-customer {
  background: #E8FFF0;
  color: var(--text-dark);
  border: 1px solid rgba(37,211,102,.2);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.bubble-system {
  background: var(--primary-bg);
  color: var(--text-dark);
  border: 1px solid rgba(54,92,156,.15);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  margin-left: auto;
}
.bubble-label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
  color: var(--text-light);
  opacity: .8;
}

/* MEASURE → MONITOR → IMPROVE */
.mmi-section { background: var(--primary); }
.mmi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.mmi-item {
  padding: 56px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
  position: relative;
}
.mmi-item:last-child { border-right: none; }
.mmi-arrow {
  display: none;
  font-size: 1.5rem;
  color: rgba(255,255,255,.3);
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: var(--primary);
}
.mmi-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-light);
  margin: 0 auto 20px;
}
.mmi-item h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.mmi-item p { color: rgba(255,255,255,.7); font-size: .9rem; }

/* ERP positioning strip */
.erp-strip {
  background: var(--primary-bg);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.erp-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .875rem;
  color: var(--text-body);
}
.erp-strip-inner strong { color: var(--primary); }
.erp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: .78rem;
  color: var(--text-dark);
}

/* ------------------------------------------------------------------
   22. Additional Responsive Rules for New Components
------------------------------------------------------------------ */
@media (max-width: 1024px) {
  .problem-dark-grid  { grid-template-columns: repeat(2, 1fr); }
  .suite-grid         { grid-template-columns: 1fr; }
  .ops-truth-inner    { grid-template-columns: 1fr; gap: 48px; }
  .connect-grid       { grid-template-columns: 1fr; gap: 48px; }
  .connect-visual     { display: none; }
  .metrics-row        { grid-template-columns: repeat(2, 1fr); }
  .metric-item:nth-child(2) { border-right: none; }
  .metric-item:nth-child(4) { border-right: none; }
  .mmi-grid           { grid-template-columns: 1fr; }
  .mmi-item           { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding: 36px 24px; }
  .mmi-item:last-child{ border-bottom: none; }
  .testimonial-block  { padding: 32px 24px; }
}

@media (max-width: 768px) {
  .problem-dark-grid  { grid-template-columns: 1fr; }
  .metrics-row        { grid-template-columns: repeat(2, 1fr); }
  .client-logos-row   { gap: 12px; }
  .client-logo-card   { min-width: 130px; padding: 12px 16px; }
  .testimonial-block  { padding: 28px 20px; }
  .testimonial-block::before { font-size: 5rem; top: 8px; left: 16px; }
  .suite-card         { padding: 28px 24px; }
  .mmi-item           { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .metrics-row        { grid-template-columns: 1fr 1fr; }
  .metric-number      { font-size: 2.4rem; }
}

/* Print styles */
@media print {
  .site-header, .site-footer, .cta-banner, .scroll-top { display: none; }
  body { color: #000; }
  a { color: #000; text-decoration: underline; }
}
