/*
Theme Name: Straventis Global
Author: Straventis Global
Version: 1.0
*/
a.focus-area-link {
    color: #1e1e2e;
text-decoration: underline;
}
a.focus-area-link:Hover {
    color: #412795;
}
/*service page css*/
.sgf-accordion {
  width: 100%;
  max-width: 100%;
}

/* IMPORTANT: keep it inside its column */
.what-panel .sgf-accordion {
  width: 100%;
}

.sgf-accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e5e7eb;
}

.sgf-item {
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

/* HEADER */
.sgf-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  cursor: pointer;
}

/* DOT */
.sgf-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: all 0.3s ease;
}

/* TITLE */
.sgf-title {
  flex: 1;
  font-size: 15px;
  color: #1f2937;
  transition: color 0.3s;
}

/* ICON */
.sgf-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* CONTENT */
.sgf-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  padding-left: 20px;
  font-size: 14px;
  color: #4b5563;
}

/* ACTIVE */
.sgf-item.active .sgf-content {
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 12px;
}

.sgf-item.active .sgf-icon {
  transform: rotate(45deg);
}

.sgf-item.active .sgf-dot {
  background: #6d28d9;
  transform: scale(1.4);
}

.sgf-item.active .sgf-title {
  color: #6d28d9;
}

/* LIST */
.sgf-content ul {
  margin: 8px 0;
  padding-left: 18px;
}

.sgf-result {
  margin-top: 8px;
  font-weight: 500;
}
.sgf-item.active .sgf-content {
  border-left: 2px solid #412795;       /* purple left-rail — brand accent */
  background: #f8f6ff;                   /* very faint purple wash */
  border-radius: 0 4px 4px 0;
  padding: 12px 16px 16px 20px;         /* slightly more breathing room */
  margin-top: 2px;
}
 
 
/* ════════════════════════════════════════════
   INTRO PARAGRAPH inside active content
════════════════════════════════════════════ */
.sgf-item.active .sgf-content > p {
  font-size: 14px;
  font-weight: 500;                      /* slightly bolder than default 400 */
  color: #1e1e2e;                        /* near-black — high contrast */
  margin-bottom: 10px;
  line-height: 1.65;
  letter-spacing: -0.01em;
}
 
 
/* ════════════════════════════════════════════
   LIST — container
════════════════════════════════════════════ */
.sgf-item.active .sgf-content ul {
  margin: 4px 0 0 0;
  padding-left: 0;                       /* remove default indent — we use custom */
  list-style: none;                      /* remove browser bullets */
  display: flex;
  flex-direction: column;
  gap: 0;
}
 
 
/* ════════════════════════════════════════════
   EACH LIST ITEM
   Custom bullet: purple dot + indented text
   Hover state so each line is individually readable
════════════════════════════════════════════ */
.sgf-item.active .sgf-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 10px 7px 4px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 400;
  color: #374151;                        /* readable dark gray */
  line-height: 1.55;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.25s ease;
  cursor: default;
  position: relative;
}
 
/* Custom bullet pseudo-element */
.sgf-item.active .sgf-content ul li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #412795;                   /* brand purple */
  flex-shrink: 0;
  margin-top: 7px;                       /* vertically centered against first line */
  transition: transform 0.2s ease, background 0.2s ease;
}
 
/* Hover — highlight individual line */
.sgf-item.active .sgf-content ul li:hover {
  background: #ede9fe;                   /* light purple tint */
  color: #412795;                        /* purple text on hover */
  padding-left: 10px;                    /* subtle indent animation */
}
 
.sgf-item.active .sgf-content ul li:hover::before {
  background: #5535c4;                   /* slightly brighter purple */
  transform: scale(1.5);
}
 
 
/* ════════════════════════════════════════════
   .sgf-result (the closing result/outcome line)
   Already has font-weight:500 in base CSS.
   We add colour + a top separator to make it
   stand out as a summary/outcome statement.
════════════════════════════════════════════ */
.sgf-item.active .sgf-content .sgf-result {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #ddd6fe;        /* faint purple divider */
  font-size: 13px;
  font-weight: 600;
  color: #412795;                        /* full purple — signals outcome */
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
 
/* Small arrow icon before result text */
.sgf-item.active .sgf-content .sgf-result::before {
  content: '→';
  font-size: 13px;
  color: #5535c4;
  flex-shrink: 0;
}
 
 
/* ════════════════════════════════════════════
   TRANSITION — smooth entry for content children
   Staggers the paragraph + list so they
   feel like they animate in sequentially.
   Uses animation-delay on children.
════════════════════════════════════════════ */
 
/* Paragraph fades in first */
.sgf-item.active .sgf-content > p {
  animation: sgf-fade-up 0.3s ease both;
  animation-delay: 0.05s;
}
 
/* List fades in slightly after */
.sgf-item.active .sgf-content ul {
  animation: sgf-fade-up 0.35s ease both;
  animation-delay: 0.12s;
}
 
/* Result line last */
.sgf-item.active .sgf-content .sgf-result {
  animation: sgf-fade-up 0.35s ease both;
  animation-delay: 0.2s;
}
 
@keyframes sgf-fade-up {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 
 
/* ════════════════════════════════════════════
   INACTIVE items — slightly dim content area
   so active one visually pops by contrast
════════════════════════════════════════════ */
.sgf-item:not(.active) .sgf-header {
  opacity: 0.75;
  transition: opacity 0.25s ease;
}
.sgf-item:not(.active):hover .sgf-header {
  opacity: 1;
}
/* ── PAGE HERO ── */
#page-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 60px 100px;
  background: var(--black);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(65,39,149,0.18), transparent 60%),
              radial-gradient(ellipse at 10% 80%, rgba(85,53,196,0.1), transparent 50%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-line {
  position: absolute; left: 60px; top: 0; bottom: 0;
  width: 1px; background: rgba(255,255,255,0.05);
}
.page-hero-line-right {
  position: absolute; right: 60px; top: 0; bottom: 0;
  width: 1px; background: rgba(255,255,255,0.05);
}
.breadcrumb {
  position: absolute; top: 120px; left: 60px;
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  opacity: 0;
}
.breadcrumb a { color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.6); }
.breadcrumb-sep { opacity: 0.3; }
.breadcrumb-current { color: var(--purple-light); }
.page-hero-content { position: relative; z-index: 2; max-width: 860px; }
.page-service-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(65,39,149,0.4);
  background: rgba(65,39,149,0.1);
  border-radius: 2px;
  color: var(--purple-light); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 36px; opacity: 0;
}
.page-service-tag span { width: 4px; height: 4px; background: var(--purple-light); border-radius: 50%; display: block; }
.page-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800; color: var(--white);
  line-height: 1.0; letter-spacing: -0.03em;
  margin-bottom: 36px;
}
.page-hero-headline .line { display: block; overflow: hidden; }
.page-hero-headline .line span { display: block; transform: translateY(110%); }
.page-hero-headline em { color: var(--purple-light); font-style: normal; }
.page-hero-sub {
  font-size: clamp(15px, 1.4vw, 18px); color: rgba(255,255,255,0.4);
  max-width: 540px; line-height: 1.8; font-weight: 300;
  margin-bottom: 52px; opacity: 0;
}
.page-hero-actions { display: flex; align-items: center; gap: 24px; opacity: 0; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: var(--purple); color: var(--white);
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  border: none; border-radius: 4px; cursor: none;
  letter-spacing: 0.02em; text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(65,39,149,0.4); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary svg { transition: transform 0.3s var(--ease-out); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  color: rgba(255,255,255,0.35); font-size: 13px; font-weight: 400;
  letter-spacing: 0.03em; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }
.page-hero-scroll {
  position: absolute; bottom: 40px; right: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.2); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; opacity: 0;
}
.scroll-track {
  width: 1px; height: 60px; background: rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.scroll-track::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 30px; background: linear-gradient(to bottom, var(--purple-light), transparent);
  animation: scrollDown 2s ease-in-out infinite 1.5s;
}
@keyframes scrollDown { 0% { transform: translateY(-100%); } 100% { transform: translateY(250%); } }

/* ── SHARED SECTION STYLES ── */
section { position: relative; }
.section-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--purple);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 20px; height: 1.5px; background: var(--purple); }
.section-label.light { color: rgba(255,255,255,0.3); }
.section-label.light::before { background: rgba(255,255,255,0.2); }
.section-heading {
  font-family: var(--font-display); font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; color: var(--black);
}
.section-heading.light { color: var(--white); }
.reveal-text { overflow: hidden; }
.reveal-text span { display: block; transform: translateY(100%); }

/* ── INTRO ── */
#page-intro {
  padding: 120px 60px;
  display: grid; grid-template-columns: 5fr 4fr; gap: 100px; align-items: start;
  background: var(--white);
}
.intro-lead {
  font-size: clamp(19px, 2vw, 24px); color: var(--gray-800);
  font-weight: 300; line-height: 1.7; margin-bottom: 32px;
  border-left: 3px solid var(--purple); padding-left: 28px;
  opacity: 0; transform: translateX(-20px);
}
.intro-body {
  font-size: 16px; color: var(--gray-600); line-height: 1.85; font-weight: 300;
  opacity: 0;
}
.intro-right-panel {
  padding: 48px; background: var(--black); border-radius: 4px;
  position: sticky; top: 120px;
  opacity: 0; transform: translateY(30px);
}
.intro-panel-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 28px;
}
.intro-panel-stat {
  margin-bottom: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.intro-panel-stat:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.stat-big {
  font-family: var(--font-display); font-size: 48px; font-weight: 800;
  color: var(--white); line-height: 1; letter-spacing: -0.04em; margin-bottom: 8px;
}
.stat-big span { color: var(--purple-light); }
.stat-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6; font-weight: 300; }
.intro-panel-cta {
  margin-top: 40px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.panel-cta-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: var(--purple); color: var(--white);
  font-size: 13px; font-weight: 500; border-radius: 4px;
  text-decoration: none; width: 100%; justify-content: center;
  transition: background 0.25s, transform 0.2s;
}
.panel-cta-link:hover { background: var(--purple-light); transform: translateY(-1px); }

/* ── CEILING ── */
#ceiling {
  padding: 120px 60px;
  background: var(--black);
  overflow: hidden;
}
.ceiling-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-bottom: 80px; align-items: end;
}
.ceiling-subtext {
  color: rgba(255,255,255,0.35); font-size: 16px; line-height: 1.75; font-weight: 300;
}
.ceiling-items {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ceiling-item {
  display: grid; grid-template-columns: 60px 1fr 40px;
  align-items: center; gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: default; position: relative; overflow: hidden;
  transition: padding-left 0.4s var(--ease-out);
  opacity: 0; transform: translateX(-40px);
}
.ceiling-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--purple);
  transform: scaleY(0); transition: transform 0.4s var(--ease-out);
  transform-origin: top;
}
.ceiling-item:hover { padding-left: 16px; }
.ceiling-item:hover::before { transform: scaleY(1); }
.ceiling-num {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.15); letter-spacing: 0.1em;
  transition: color 0.3s;
}
.ceiling-item:hover .ceiling-num { color: var(--purple-light); }
.ceiling-text {
  font-family: var(--font-display); font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: -0.01em;
  transition: color 0.3s;
}
.ceiling-item:hover .ceiling-text { color: var(--white); }
.ceiling-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.ceiling-item:hover .ceiling-icon { border-color: var(--purple); background: var(--purple); }
.ceiling-crit {
  margin-top: 60px; padding: 40px 48px;
  background: rgba(65,39,149,0.08); border: 1px solid rgba(65,39,149,0.2);
  border-radius: 4px; opacity: 0;
}
.ceiling-crit-text {
  font-family: var(--font-display); font-size: clamp(18px, 2vw, 26px);
  font-weight: 700; color: var(--white); line-height: 1.4; letter-spacing: -0.02em;
}
.ceiling-crit-text em { color: var(--purple-light); font-style: normal; }

/* ── WHAT WE DO ── */
#what-we-do {
  padding: 120px 60px;
  background: var(--gray-100);
}
.what-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-bottom: 80px; align-items: end;
}
.what-subtext {
  font-size: 16px; color: var(--gray-600); line-height: 1.8; font-weight: 300;
}
.what-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--gray-200);
}
.what-panel {
  background: var(--white); padding: 60px 48px;
  position: relative; overflow: hidden;
}
.what-panel-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--purple);
  margin-bottom: 32px; display: flex; align-items: center; gap: 8px;
}
.what-panel-label::before { content: ''; width: 16px; height: 1.5px; background: var(--purple); }
.what-panel-body {
  font-size: 17px; color: var(--gray-600); line-height: 1.8; font-weight: 300;
  margin-bottom: 40px;
}
.focus-areas { display: flex; flex-direction: column; gap: 0; }
.focus-area {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--gray-200);
  cursor: default; position: relative;
  transition: padding-left 0.35s var(--ease-out);
  opacity: 0; transform: translateX(-20px);
}
.focus-area:first-child { border-top: 1px solid var(--gray-200); }
.focus-area:hover { padding-left: 12px; }
.focus-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gray-200); flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}
.focus-area:hover .focus-dot { background: var(--purple); transform: scale(1.4); }
.focus-area-text {
  font-size: 15px; font-weight: 400; color: var(--gray-800);
  transition: color 0.3s;
}
.focus-area:hover .focus-area-text { color: var(--purple); }

/* HOW WE WORK PANEL */
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 20px; padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
  opacity: 0; transform: translateY(20px);
}
.how-step:first-child { border-top: 1px solid var(--gray-200); }
.how-step-num {
  width: 40px; height: 40px;
  background: var(--gray-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 12px; font-weight: 800;
  color: var(--purple-light); flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}
.how-step:hover .how-step-num { background: var(--purple); color: var(--white); }
.how-step-title {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  color: var(--black); letter-spacing: -0.01em; margin-bottom: 6px;
}
.how-step-desc {
  font-size: 13px; color: var(--gray-400); line-height: 1.65; font-weight: 300;
}
.how-contrast {
  margin-top: 32px; padding: 24px 28px;
  background: var(--black); border-radius: 4px;
}
.how-contrast-text {
  font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; font-weight: 300;
}
.how-contrast-text strong { color: var(--white); font-weight: 500; }

/* ── OUTCOMES ── */
#outcomes {
  padding: 120px 60px;
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
.outcomes-left {}
.outcomes-intro {
  font-size: 16px; color: var(--gray-600); line-height: 1.8;
  font-weight: 300; margin-top: 24px; margin-bottom: 35px; opacity: 0;
}
.outcomes-list { display: flex; flex-direction: column; }
.outcome-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid var(--gray-200);
  opacity: 0; transform: translateX(-30px);
}
.outcome-check {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1.5px solid var(--gray-200); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px; transition: background 0.3s, border-color 0.3s;
}
.outcome-item:hover .outcome-check { background: var(--purple); border-color: var(--purple); }
.outcome-check svg { opacity: 0.4; transition: opacity 0.3s; }
.outcome-item:hover .outcome-check svg { opacity: 1; }
.outcome-item:hover .outcome-check svg path { stroke: var(--white); }
.outcome-text { font-size: 16px; color: var(--gray-800); font-weight: 400; line-height: 1.5; }
.outcomes-right {
  position: relative; height: 600px;
}
.outcomes-visual-main {
  position: absolute; inset: 0;
  background: var(--gray-800); border-radius: 4px; overflow: hidden;
}
.outcomes-visual-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(65,39,149,0.3), transparent 60%);
}
.outcomes-visual-content {
  position: absolute; inset: 0; padding: 60px;
  display: flex; flex-direction: column; justify-content: flex-end; margin-bottom: 50px;
}
.outcomes-visual-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 16px;
}
.outcomes-visual-quote {
  font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700; color: var(--white); line-height: 1.3; letter-spacing: -0.02em;
}
.outcomes-visual-quote em { color: var(--purple-light); font-style: normal; }
.outcomes-float-top {
  position: absolute; top: -20px; right: -20px;
  background: var(--purple); border-radius: 4px;
  padding: 20px 24px; z-index: 2;
  box-shadow: 0 20px 60px rgba(65,39,149,0.3);
}
.float-num {
  font-family: var(--font-display); font-size: 36px; font-weight: 800;
  color: var(--white); line-height: 1; letter-spacing: -0.04em;
}
.float-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.outcomes-float-bottom {
  position: absolute; bottom: 40px; left: -24px;
  background: var(--white); border-radius: 4px;
  padding: 16px 20px; z-index: 2;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border: 1px solid var(--gray-200);
}
.float-b-label { font-size: 11px; color: var(--gray-400); margin-bottom: 6px; letter-spacing: 0.04em; }
.float-b-val {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--black); letter-spacing: -0.03em;
}
.float-b-val span { color: var(--purple); }

/* ── WHO THIS IS FOR ── */
#who-for {
  padding: 120px 60px;
  background: var(--gray-100);
}
.who-header { margin-bottom: 72px; }
.who-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--gray-200);
}
.who-item {
  background: var(--white); padding: 48px 40px;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(40px);
  transition: all 0.3s;
}
.who-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--purple);
  transform: scaleX(0); transition: transform 0.4s var(--ease-out);
  transform-origin: left;
}
.who-item:hover::after { transform: scaleX(1); }
.who-item-num {
  font-family: var(--font-display); font-size: 40px; font-weight: 800;
  color: var(--gray-200); line-height: 1; letter-spacing: -0.04em;
  margin-bottom: 24px; transition: color 0.3s;
}
.who-item:hover .who-item-num { color: var(--purple-faint); }
.who-item-text {
  font-size: 15px; font-weight: 400; color: var(--gray-800);
  line-height: 1.6;
}

/* ════════════════════════════════
   related pages
   ════════════════════════════════ */

.related-services {
  padding: 120px 60px;
}

.rs-inner {
  margin: 0 auto;
}

.rs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .rs-grid { grid-template-columns: 1fr; }
  .related-services {
  padding: 64px 24px;
}
}

.rs-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #5a5a6e;
  border-radius: 0;
  padding: 28px 24px;
  text-decoration: none;
  display: block;
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
}

.rs-card:hover {
  border-color: gray;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.rs-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: --purple;
  margin-bottom: 12px;
}

.rs-title {
  font-size: 16px;
  font-weight: 700;
  color: black;
  line-height: 1.3;
  margin-bottom: 10px;
}

.rs-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: --purple;
  transition: gap 0.18s ease;
}

.rs-card:hover .rs-cta { gap: 12px; }

/* ── CTA SECTION ── */
#page-cta {
  padding: 160px 60px;
  background: var(--purple);
  text-align: center; overflow: hidden; position: relative;
}
.page-cta-circle-1 {
  position: absolute; width: 700px; height: 700px;
  border-radius: 50%; background: rgba(255,255,255,0.04);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.page-cta-circle-2 {
  position: absolute; width: 420px; height: 420px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.06);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.page-cta-content { position: relative; z-index: 2; }
.page-cta-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 28px;
}
.page-cta-heading {
  font-family: var(--font-display); font-size: clamp(34px, 5vw, 64px);
  font-weight: 800; color: var(--white);
  line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 24px;
}
.page-cta-sub {
  font-size: 17px; color: rgba(255,255,255,0.5); line-height: 1.7;
  font-weight: 300; max-width: 480px; margin: 0 auto 52px;
}
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 44px; background: var(--white); color: var(--purple);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  border: none; border-radius: 4px; cursor: none;
  text-decoration: none; transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 20px 60px rgba(0,0,0,0.2); background: var(--black); color: var(--white); }
.btn-white svg { transition: transform 0.3s var(--ease-out); }
.btn-white:hover svg { transform: translateX(4px); }

@media (max-width: 1100px) {
 
  /* ── PAGE HERO ── */
  #page-hero {
    padding: 0 32px 80px;
    min-height: 80vh;
  }
  .page-hero-line        { left: 32px; }
  .page-hero-line-right  { right: 32px; }
  .breadcrumb            { left: 32px; top: 100px; }
  .page-hero-scroll      { right: 32px; }
 
  /* ── INTRO ── */
  #page-intro {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 32px;
  }
  .intro-right-panel {
    position: static;          /* remove sticky */
    transform: none;
  }
 
  /* ── CEILING ── */
  #ceiling {
    padding: 80px 32px;
  }
  .ceiling-header {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 52px;
  }
 
  /* ── WHAT WE DO ── */
  #what-we-do {
    padding: 80px 32px;
  }
  .what-header {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 52px;
  }
  .what-split {
    grid-template-columns: 1fr;
  }
 
  /* ── OUTCOMES ── */
  #outcomes {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 80px 32px;
  }
  .outcomes-right {
    height: 420px;
  }
  .outcomes-float-bottom {
    display: none;              /* prevent overflow on narrow screens */
  }
 
  /* ── WHO FOR ── */
  #who-for {
    padding: 80px 32px;
  }
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }
 
  /* ── CTA ── */
  #page-cta {
    padding: 100px 32px;
  }
 
  /* ── ACCORDION ── */
  .what-panel {
    padding: 48px 32px;
  }
 
}
 
 
/* ═══════════════════════════════════════════════════════════════
   BREAKPOINT 2 — TABLET PORTRAIT / LARGE PHONE  (max-width: 768px)
   ─ Further compress padding
   ─ who-grid goes full single-column
   ─ ceiling-item grid simplified
   ─ outcomes visual height reduced
   ─ Float badges hidden (they overflow at this width)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
 
  /* ── PAGE HERO ── */
  #page-hero {
    min-height: 88vh;
    padding: 0 24px 72px;
  }
  .page-hero-line        { left: 24px; }
  .page-hero-line-right  { right: 24px; }
  .breadcrumb            { left: 24px; top: 96px; }
  .page-hero-scroll      { right: 24px; }
 
  .page-hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .btn-ghost {
    align-self: flex-start;
  }
 
  /* ── INTRO ── */
  #page-intro {
    padding: 64px 24px;
    gap: 40px;
  }
  .intro-right-panel {
    padding: 36px 28px;
  }
 
  /* ── CEILING ── */
  #ceiling {
    padding: 64px 24px;
  }
  .ceiling-header {
    margin-bottom: 40px;
  }
  /* Remove third column (icon) — keep num + text only */
  .ceiling-item {
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 24px 0;
  }
  .ceiling-icon {
    display: none;
  }
  .ceiling-crit {
    padding: 28px 28px;
    margin-top: 40px;
  }
 
  /* ── WHAT WE DO ── */
  #what-we-do {
    padding: 64px 24px;
  }
  .what-panel {
    padding: 40px 24px;
  }
  .what-header {
    margin-bottom: 40px;
  }
 
  /* ── OUTCOMES ── */
  #outcomes {
    padding: 64px 24px;
    gap: 40px;
  }
  .outcomes-right {
    height: 340px;
  }
  .outcomes-float-top {
    display: none;              /* prevents overflow on mobile */
  }
  .outcomes-visual-content {
    padding: 32px;
  }
 
  /* ── WHO FOR ── */
  #who-for {
    padding: 64px 24px;
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
  .who-item {
    padding: 36px 28px;
    transform: none;            /* reset GSAP initial state to prevent flash */
    opacity: 1;
  }
 
  /* ── CTA ── */
  #page-cta {
    padding: 80px 24px;
  }
  .page-cta-sub {
    font-size: 15px;
  }
 
  /* ── ACCORDION ── */
  .what-panel {
    padding: 36px 20px;
  }
  
    .sgf-item.active .sgf-content {
    padding: 10px 12px 14px 16px;
  }
  .sgf-item.active .sgf-content > p {
    font-size: 13.5px;
  }
  .sgf-item.active .sgf-content ul li {
    font-size: 13px;
    padding: 6px 8px 6px 4px;
  }
 
}
 
 
/* ═══════════════════════════════════════════════════════════════
   BREAKPOINT 3 — STANDARD MOBILE  (max-width: 480px)
   ─ Minimum padding (20px gutters)
   ─ All oversized display elements compressed
   ─ Sticky panel stat numbers scale down
   ─ Float badges fully removed
   ─ Outcomes visual collapses to natural height
═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
 
  /* ── PAGE HERO ── */
  #page-hero {
    padding: 0 20px 60px;
    min-height: 90vh;
  }
  .page-hero-line        { left: 20px; }
  .page-hero-line-right  { right: 20px; }
  .breadcrumb            { left: 20px; top: 88px; }
  .page-hero-scroll      { right: 20px; }
 
  .page-hero-sub {
    margin-bottom: 36px;
  }
 
  /* ── INTRO ── */
  #page-intro {
    padding: 56px 20px;
    gap: 36px;
  }
  .intro-right-panel {
    padding: 28px 20px;
  }
  .stat-big {
    font-size: 36px;
  }
  .intro-panel-stat {
    margin-bottom: 28px;
    padding-bottom: 28px;
  }
 
  /* ── CEILING ── */
  #ceiling {
    padding: 56px 20px;
  }
  .ceiling-item {
    grid-template-columns: 40px 1fr;
    gap: 16px;
    padding: 20px 0;
  }
  .ceiling-crit {
    padding: 24px 20px;
  }
 
  /* ── WHAT WE DO ── */
  #what-we-do {
    padding: 56px 20px;
  }
  .what-panel {
    padding: 32px 20px;
  }
  .what-panel-body {
    font-size: 15px;
    margin-bottom: 28px;
  }
 
  /* ── HOW STEPS (inside what-we-do right panel) ── */
  .how-step {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 20px 0;
  }
  .how-step-num {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }
  .how-contrast {
    padding: 18px 20px;
  }
 
  /* ── OUTCOMES ── */
  #outcomes {
    padding: 56px 20px;
    gap: 32px;
  }
  .outcomes-right {
    height: 280px;
  }
  .outcomes-visual-content {
    padding: 24px;
  }
  .outcome-item {
    padding: 16px 0;
    transform: none;
    opacity: 1;
  }
 
  /* ── WHO FOR ── */
  #who-for {
    padding: 56px 20px;
  }
  .who-item {
    padding: 28px 20px;
  }
  .who-item-num {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .who-header {
    margin-bottom: 48px;
  }
 
  /* ── CTA ── */
  #page-cta {
    padding: 72px 20px;
  }
  .btn-white {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
  }
 
  /* ── ACCORDION ── */
  .sgf-header {
    padding: 12px 0;
  }
  .sgf-title {
    font-size: 14px;
  }
  .sgf-content {
    font-size: 13px;
  }
 
  /* ── FOCUS AREAS ── */
  .focus-area {
    padding: 12px 0;
    transform: none;
    opacity: 1;
  }
 
}
 
 
/* ═══════════════════════════════════════════════════════════════
   BREAKPOINT 4 — SMALL MOBILE  (max-width: 360px)
   ─ Ultra-tight gutters for smallest devices (Galaxy A series, etc.)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 360px) {
 
  #page-hero         { padding: 0 16px 52px; }
  .page-hero-line        { left: 16px; }
  .page-hero-line-right  { right: 16px; }
  .breadcrumb            { left: 16px; }
  .page-hero-scroll      { right: 16px; }
 
  #page-intro,
  #ceiling,
  #what-we-do,
  #outcomes,
  #who-for       { padding-left: 16px; padding-right: 16px; }
 
  #page-cta      { padding: 60px 16px; }
 
  .intro-right-panel,
  .what-panel,
  .ceiling-crit  { padding-left: 16px; padding-right: 16px; }
 
  .ceiling-item  { grid-template-columns: 36px 1fr; gap: 12px; }
 
  .who-item      { padding: 24px 16px; }
 
  .stat-big      { font-size: 32px; }
 
  .btn-white,
  .btn-primary   { font-size: 13px; padding: 14px 20px; }
 
}
 
 
/* ═══════════════════════════════════════════════════════════════
   GSAP INITIAL STATE SAFETY
   ─ On very small screens GSAP may not fire reliably
     if the element is already in the viewport on load.
   ─ These rules ensure items are visible even if GSAP
     doesn't animate them (e.g. reduced-motion, slow JS).
═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
 
  .ceiling-item,
  .focus-area,
  .how-step,
  .outcome-item,
  .who-item {
    opacity: 1 !important;
    transform: none !important;
  }
    .sgf-item.active .sgf-content {
    padding: 8px 10px 12px 14px;
  }
  .sgf-item.active .sgf-content ul li {
    font-size: 12.5px;
  }
  .sgf-item.active .sgf-content .sgf-result {
    font-size: 12px;
  }
 
}
 
/* Respect user prefers-reduced-motion globally */
@media (prefers-reduced-motion: reduce) {
 
  .ceiling-item,
  .focus-area,
  .how-step,
  .outcome-item,
  .who-item,
  .intro-lead,
  .intro-body,
  .intro-right-panel,
  .outcomes-intro,
  .ceiling-crit {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
 
  .scroll-track::after {
    animation: none !important;
  }
 
  .page-hero-headline .line span {
    transform: none !important;
  }
 
  .btn-primary,
  .btn-white,
  .btn-ghost {
    transition: none !important;
  }
  
    .sgf-item.active .sgf-content > p,
  .sgf-item.active .sgf-content ul,
  .sgf-item.active .sgf-content .sgf-result {
    animation: none !important;
  }
  .sgf-item.active .sgf-content ul li,
  .sgf-item.active .sgf-content ul li::before {
    transition: none !important;
  }
 
}

 