/* ============================================================
   NATURI GLOBAL — pages.css
   Shared sub-page styles (used by all pages except index.html)
============================================================ */

/* -----------------------------------------------------------
   1. PAGE HERO BANNER
----------------------------------------------------------- */
.page-hero {
  padding-top: 72px; /* account for fixed header */
  min-height: 340px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--teal) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(87,191,217,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  padding: 48px 32px 32px;
  position: relative;
  z-index: 1;
}
.page-hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.page-hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a {
  color: var(--teal-light);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.5); }
.page-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 0 32px 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* -----------------------------------------------------------
   2. PAGE SECTIONS
----------------------------------------------------------- */
.page-section { padding: 72px 0; }
.bg-white      { background: var(--bg-white); }
.bg-light      { background: var(--bg-light); }
.bg-gradient-dark {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 40%, var(--teal) 100%);
}
.text-center   { text-align: center; }

.section-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.section-lead {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Reveal animation */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--d, 0s);
}
.reveal-item.visible { opacity: 1; transform: translateY(0); }

/* -----------------------------------------------------------
   3. SERVICES SHOWCASE (services.html)
----------------------------------------------------------- */
.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.showcase-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px 24px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  color: inherit;
  transition-delay: var(--d, 0s);
}
.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}
.sc-icon-wrap { width: 80px; height: 80px; margin-bottom: 20px; }
.sc-icon-wrap svg { width: 100%; height: 100%; }
.showcase-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.showcase-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; flex: 1; }
.sc-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.showcase-card:hover .sc-link { color: var(--primary); }

/* -----------------------------------------------------------
   4. ABOUT PAGE
----------------------------------------------------------- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.about-text p { color: var(--text-muted); line-height: 1.8; }
.ceo-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--teal);
}
.ceo-avatar { font-size: 2.4rem; }
.ceo-title { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.ceo-name  { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--primary); margin-top: 4px; }
.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.visual-globe { font-size: 8rem; text-align: center; animation: floatAnim 4s ease-in-out infinite; }
.stat-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; width: 100%; }
.stat-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 8px;
  background: linear-gradient(135deg, var(--teal), var(--primary));
  border-radius: var(--radius-md);
  color: #fff;
}
.stat-num { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.5rem; }
.stat-badge span:last-child { font-size: 0.75rem; opacity: 0.85; margin-top: 2px; }

/* TIMELINE */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--teal), var(--primary));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 48px;
  transition-delay: var(--d, 0s);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--bg-light);
  box-shadow: 0 0 0 3px var(--teal);
}
.timeline-year {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--teal);
  margin-bottom: 8px;
}
.timeline-content {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.timeline-content h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 14px;
}
.timeline-content ul { padding-left: 0; }
.timeline-content li {
  position: relative;
  padding: 4px 0 4px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  list-style: none;
}
.timeline-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* -----------------------------------------------------------
   5. INTERPRETING / FEATURE CARDS
----------------------------------------------------------- */
.feature-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  transition-delay: var(--d, 0s);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.feature-card p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; }

/* DETAIL CARDS (interpreting services) */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.detail-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
  transition-delay: var(--d, 0s);
}
.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
}
.dc-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 16px;
}
.detail-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.detail-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.dc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.dc-tags span {
  background: var(--accent-light);
  color: var(--teal);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition-delay: var(--d, 0s);
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
}
.step-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  text-align: center;
  max-width: 100px;
}
.process-arrow { font-size: 1.5rem; color: rgba(255,255,255,0.4); }

/* LANGUAGES GRID */
.lang-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.lang-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 12px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  transition-delay: var(--d, 0s);
}
.lang-item:hover {
  background: var(--accent-light);
  border-color: var(--teal);
  transform: translateY(-3px);
}
.lang-flag-em { font-size: 2.2rem; }
.lang-item span:last-child { font-size: 0.875rem; font-weight: 600; color: var(--primary); }

/* -----------------------------------------------------------
   6. TRANSLATION PAGE
----------------------------------------------------------- */
.trans-service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trans-item {
  display: flex;
  gap: 20px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
  transition-delay: var(--d, 0s);
}
.trans-item:hover {
  transform: translateX(6px);
  border-color: var(--teal-light);
  box-shadow: var(--shadow-sm);
}
.trans-icon { font-size: 2rem; flex-shrink: 0; margin-top: 4px; }
.trans-content h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.trans-content p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; }

/* PROCESS FLOW */
.process-flow {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.pf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 140px;
  transition-delay: var(--d, 0s);
}
.pf-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.pf-step h4 { color: #fff; font-weight: 700; font-size: 0.9rem; }
.pf-step p  { color: rgba(255,255,255,0.65); font-size: 0.78rem; line-height: 1.5; }
.pf-arrow { font-size: 1.5rem; color: rgba(255,255,255,0.35); margin-top: 20px; }

/* -----------------------------------------------------------
   7. EMCEE PAGE
----------------------------------------------------------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.lang-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.lang-badge {
  padding: 8px 20px;
  background: var(--accent-light);
  border: 1.5px solid var(--teal-light);
  border-radius: var(--radius-xl);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}
.emcee-visual-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.25s;
}
.emcee-visual-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.ev-icon { font-size: 2rem; flex-shrink: 0; }
.ev-title { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.ev-desc  { color: var(--text-muted); font-size: 0.875rem; line-height: 1.5; }

/* MC GRID */
.mc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.mc-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.25s ease;
  transition-delay: var(--d, 0s);
}
.mc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
}
.mc-flag { font-size: 3rem; margin-bottom: 14px; display: block; }
.mc-card h3 { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.mc-card p  { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; margin-bottom: 16px; }
.mc-skills  { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.mc-skills span {
  background: var(--accent-light);
  color: var(--teal);
  border-radius: 12px;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* OFFER GRID */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.offer-item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
  transition-delay: var(--d, 0s);
}
.offer-item:hover { background: rgba(255,255,255,0.14); }
.offer-icon { font-size: 2.4rem; display: block; margin-bottom: 14px; }
.offer-item h4 { color: #fff; font-weight: 700; margin-bottom: 8px; }
.offer-item p  { color: rgba(255,255,255,0.7); font-size: 0.875rem; }

/* -----------------------------------------------------------
   8. VIDEO PAGE
----------------------------------------------------------- */
.video-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.video-service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.25s ease;
  transition-delay: var(--d, 0s);
}
.video-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}
.vs-icon { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.video-service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.vs-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  border-radius: 2px;
  margin: 0 auto 16px;
}
.video-service-card ul { text-align: left; }
.video-service-card li {
  padding: 5px 0 5px 18px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.875rem;
  list-style: none;
}
.video-service-card li::before { content: '›'; position: absolute; left: 2px; color: var(--teal); font-weight: 700; }

/* -----------------------------------------------------------
   9. PRICING PAGE
----------------------------------------------------------- */
.pricing-header-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 16px;
  flex-wrap: wrap;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.25s ease;
  transition-delay: var(--d, 0s);
}
.pricing-card.featured {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(26,155,170,0.18);
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.pc-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.pricing-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 24px;
  text-align: center;
}
.pc-prices { display: flex; flex-direction: column; gap: 12px; }
.pc-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.pc-duration { color: var(--text-muted); font-weight: 600; font-size: 0.9rem; }
.pc-amount {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
}
.pc-amount small { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); margin-left: 4px; }
.pc-inquiry-notice {
  padding: 20px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--teal);
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.pricing-guide-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 0;
}
.pricing-guide-box h4 { color: var(--primary); font-weight: 700; margin-bottom: 12px; }
.pricing-guide-box li {
  padding: 5px 0 5px 20px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  list-style: none;
}
.pricing-guide-box li::before { content: '•'; position: absolute; left: 6px; color: var(--teal); }

/* PRICING TABLE */
.pricing-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--bg-white);
}
.pricing-table thead tr {
  background: linear-gradient(90deg, var(--primary), var(--teal));
  color: #fff;
}
.pricing-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.pricing-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--accent-light); }
.table-section-header td {
  background: var(--bg-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 20px;
}
.price-cell {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--primary);
  font-size: 1rem;
}
.pricing-note {
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* -----------------------------------------------------------
   10. MEMBERS PAGE
----------------------------------------------------------- */
.join-intro {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.join-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.join-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  background: linear-gradient(135deg, var(--teal), var(--primary));
  border-radius: var(--radius-lg);
  color: #fff;
}
.js-num { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 2rem; }
.js-label { font-size: 0.8rem; opacity: 0.85; margin-top: 4px; font-weight: 500; }

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.role-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  transition-delay: var(--d, 0s);
}
.role-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
}
.role-icon { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.role-card h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--primary); margin-bottom: 10px; }
.role-card > p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.role-reqs { flex: 1; padding-left: 0; margin-bottom: 0; }
.role-reqs li {
  padding: 4px 0 4px 20px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.875rem;
  list-style: none;
}
.role-reqs li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-item {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
  transition-delay: var(--d, 0s);
}
.benefit-item:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.benefit-icon { font-size: 2.4rem; display: block; margin-bottom: 14px; }
.benefit-item h4 { color: #fff; font-weight: 700; margin-bottom: 8px; }
.benefit-item p  { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.6; }

/* -----------------------------------------------------------
   11. CTA BUTTONS GROUP
----------------------------------------------------------- */
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* -----------------------------------------------------------
   12. RESPONSIVE
----------------------------------------------------------- */
@media (max-width: 1100px) {
  .services-showcase-grid, .feature-grid-4, .offer-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .video-services-grid, .mc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-intro-grid, .split-section, .join-intro { grid-template-columns: 1fr; }
  .feature-grid-3, .roles-grid { grid-template-columns: 1fr; }
  .services-detail-grid, .pricing-cards { grid-template-columns: 1fr; }
  .trans-service-list { grid-template-columns: 1fr; }
  .lang-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps, .process-flow { flex-direction: column; align-items: center; }
  .process-arrow, .pf-arrow { transform: rotate(90deg); }
}
@media (max-width: 600px) {
  .services-showcase-grid, .video-services-grid, .mc-grid { grid-template-columns: 1fr; }
  .feature-grid-4, .offer-grid, .benefits-grid { grid-template-columns: 1fr; }
  .lang-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-badges, .join-stat-grid { grid-template-columns: repeat(3, 1fr); }
  .page-hero-title { font-size: 2rem; }
}
