/* ================================================================
   HFT PRIME MARKETING — pages.css  v1.0
   Shared component styles for all inner pages.
   Builds on top of styles.css — load AFTER it.
   ================================================================ */

/* ----------------------------------------------------------------
   INNER PAGE HERO
   ---------------------------------------------------------------- */
.page-hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  background: var(--bg-1);
  overflow: hidden;
}

.page-hero-bg { position: absolute; inset: 0; z-index: 0; }

.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, black 45%, transparent 88%);
}

.page-hero-orb-1 {
  position: absolute;
  width: 520px; height: 520px;
  background: rgba(29,78,216,0.09);
  border-radius: 50%;
  filter: blur(110px);
  top: -160px; right: -80px;
  pointer-events: none;
}

.page-hero-orb-2 {
  position: absolute;
  width: 360px; height: 360px;
  background: rgba(99,102,241,0.06);
  border-radius: 50%;
  filter: blur(100px);
  bottom: -80px; left: -60px;
  pointer-events: none;
}

.page-hero > .container {
  position: relative; z-index: 1; width: 100%;
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-16);
}

.page-hero-inner {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}

.page-hero-headline {
  font-family: var(--f-head);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--t1);
  margin-bottom: var(--sp-5);
}

.page-hero-sub {
  font-size: var(--fs-body);
  color: var(--t2);
  line-height: 1.72;
  max-width: 560px;
  margin: 0 auto var(--sp-8);
}

.page-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

[data-theme="light"] .page-hero-grid {
  background-image:
    linear-gradient(rgba(59,130,246,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.07) 1px, transparent 1px);
}

/* ----------------------------------------------------------------
   BREADCRUMB
   ---------------------------------------------------------------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  color: var(--t3);
  margin-bottom: var(--sp-5);
  justify-content: center;
}
.breadcrumb a { color: var(--t3); transition: color var(--t-fast) var(--ease); }
.breadcrumb a:hover { color: var(--t2); }
.breadcrumb-sep { opacity: 0.4; }
.breadcrumb-current { color: var(--t2); }

/* ----------------------------------------------------------------
   TWO-COLUMN CONTENT
   ---------------------------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}
.two-col-text .section-sub { max-width: none; margin-bottom: var(--sp-6); }

/* ----------------------------------------------------------------
   STORY / NARRATIVE BLOCK
   ---------------------------------------------------------------- */
.story-block p {
  font-size: var(--fs-body);
  color: var(--t2);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
}
.story-block p:last-child { margin-bottom: 0; }

.story-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  padding: var(--sp-8);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  margin-top: var(--sp-10);
}
.story-stat { text-align: center; }
.story-stat-num {
  font-family: var(--f-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--t1);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.story-stat-lbl { font-size: var(--fs-xs); color: var(--t3); font-weight: 500; }

/* ----------------------------------------------------------------
   CORE VALUES
   ---------------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  box-shadow: var(--sh-card);
  transition: transform var(--t-slow) var(--ease-out),
              box-shadow var(--t-slow) var(--ease-out),
              border-color var(--t-base) var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--sh-hover); border-color: var(--border-hi); }
.value-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-dim);
  border: 1px solid var(--blue-line);
  color: var(--blue); flex-shrink: 0;
}
.value-icon svg { width: 20px; height: 20px; }
.value-card h3 { font-size: var(--fs-small); font-weight: 700; letter-spacing: -0.02em; color: var(--t1); margin: 0; }
.value-card p { font-size: var(--fs-small); color: var(--t2); line-height: 1.65; margin: 0; }

/* ----------------------------------------------------------------
   TEAM GRID
   ---------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-card);
  transition: transform var(--t-slow) var(--ease-out), border-color var(--t-base) var(--ease);
}
.team-card:hover { transform: translateY(-4px); border-color: var(--border-hi); }
.team-avatar-wrap {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-card-hi), var(--bg-1));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head);
  font-size: 2.5rem; font-weight: 800;
  color: var(--blue); letter-spacing: -0.04em;
  border-bottom: 1px solid var(--border);
}
.team-info { padding: var(--sp-5); }
.team-name { font-size: var(--fs-small); font-weight: 700; color: var(--t1); letter-spacing: -0.02em; margin-bottom: 3px; }
.team-role { font-size: var(--fs-xs); color: var(--blue); font-weight: 600; margin-bottom: var(--sp-3); }
.team-bio { font-size: var(--fs-xs); color: var(--t3); line-height: 1.6; }

/* ----------------------------------------------------------------
   PROCESS STEPS
   ---------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 27px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--blue-line), var(--border));
  z-index: 0;
}
.process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 var(--sp-4);
  position: relative; z-index: 1;
}
.process-num {
  width: 54px; height: 54px;
  background: var(--bg-card);
  border: 1px solid var(--border-hi);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head);
  font-size: var(--fs-small); font-weight: 800;
  color: var(--t1);
  margin-bottom: var(--sp-5);
  box-shadow: var(--sh-card); flex-shrink: 0;
}
.process-step.active .process-num {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-color: var(--blue); color: #fff;
  box-shadow: 0 4px 20px var(--blue-shadow);
}
.process-title {
  font-family: var(--f-head);
  font-size: var(--fs-small); font-weight: 700;
  color: var(--t1); margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}
.process-desc { font-size: var(--fs-xs); color: var(--t3); line-height: 1.6; }

/* ----------------------------------------------------------------
   FAQ ACCORDION
   ---------------------------------------------------------------- */
.faq-list {
  display: flex; flex-direction: column;
  gap: var(--sp-3); max-width: 760px; margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color var(--t-base) var(--ease);
}
.faq-item.open { border-color: var(--border-hi); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer; gap: var(--sp-4); user-select: none;
}
.faq-question-text {
  font-family: var(--f-head);
  font-size: var(--fs-small); font-weight: 600;
  color: var(--t1); letter-spacing: -0.015em; line-height: 1.4;
}
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--t3);
  transition: all var(--t-base) var(--ease);
}
.faq-item.open .faq-icon { background: var(--blue-dim); color: var(--blue); transform: rotate(45deg); }
.faq-icon svg { width: 12px; height: 12px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--fs-small); color: var(--t2); line-height: 1.75;
}

/* ----------------------------------------------------------------
   CONTACT FORM & LAYOUT
   ---------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: var(--sp-16); align-items: start;
}
.contact-info-item {
  display: flex; align-items: flex-start;
  gap: var(--sp-3); margin-bottom: var(--sp-5);
}
.contact-info-icon {
  width: 38px; height: 38px;
  background: var(--blue-dim); border: 1px solid var(--blue-line);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}
.contact-info-icon svg { width: 16px; height: 16px; }
.contact-info-label { font-size: var(--fs-xs); color: var(--t3); margin-bottom: 2px; font-weight: 500; }
.contact-info-value { font-size: var(--fs-small); color: var(--t1); font-weight: 500; }
.contact-info-value a { color: var(--t1); }
.contact-info-value a:hover { color: var(--blue); }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--sh-card);
}
.contact-form-title { font-family: var(--f-head); font-size: var(--fs-h3); font-weight: 700; color: var(--t1); letter-spacing: -0.025em; margin-bottom: var(--sp-2); }
.contact-form-sub { font-size: var(--fs-small); color: var(--t3); margin-bottom: var(--sp-8); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-group.full { grid-column: span 2; }
.form-label { font-size: var(--fs-xs); font-weight: 600; color: var(--t2); letter-spacing: 0.02em; }

.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-md);
  padding: 0.75rem var(--sp-4);
  font-size: var(--fs-small); color: var(--t1);
  font-family: var(--f-body); outline: none; width: 100%;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--t3); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue-line);
  background: rgba(59,130,246,0.03);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A6A80' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px; cursor: pointer;
}
.form-select option { background: var(--bg-card); color: var(--t1); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-submit-wrap { margin-top: var(--sp-6); }
.form-submit-wrap .btn-primary { width: 100%; justify-content: center; }
.form-note { font-size: var(--fs-xs); color: var(--t3); text-align: center; margin-top: var(--sp-3); }

[data-theme="light"] .form-input,
[data-theme="light"] .form-select,
[data-theme="light"] .form-textarea {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.12); color: var(--t1);
}

/* ----------------------------------------------------------------
   PORTFOLIO / FILTER
   ---------------------------------------------------------------- */
.filter-bar {
  display: flex; align-items: center; gap: var(--sp-2);
  flex-wrap: wrap; margin-bottom: var(--sp-10); justify-content: center;
}
.filter-btn {
  padding: 0.4375rem 1rem;
  font-size: var(--fs-xs); font-weight: 600;
  color: var(--t3); background: transparent;
  border: 1px solid var(--border); border-radius: var(--r-pill);
  cursor: pointer; transition: all var(--t-fast) var(--ease);
  font-family: var(--f-body);
}
.filter-btn:hover { color: var(--t1); border-color: var(--border-hi); }
.filter-btn.active { color: var(--blue); background: var(--blue-dim); border-color: var(--blue-line); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-card);
  transition: transform var(--t-slow) var(--ease-out),
              border-color var(--t-base) var(--ease),
              box-shadow var(--t-slow) var(--ease-out);
}
.portfolio-card:hover { transform: translateY(-5px); border-color: var(--border-hi); box-shadow: var(--sh-hover); }
.portfolio-card-header {
  padding: var(--sp-6) var(--sp-8);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card-hi);
  display: flex; align-items: center; gap: var(--sp-4);
}
.portfolio-initials {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-size: var(--fs-small); font-weight: 800;
  color: #fff; flex-shrink: 0;
}
.portfolio-brand { font-size: var(--fs-small); font-weight: 600; color: var(--t1); }
.portfolio-industry { font-size: var(--fs-xs); color: var(--t3); }
.portfolio-card-body { padding: var(--sp-6) var(--sp-8); }
.portfolio-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4); margin-bottom: var(--sp-5);
}
.portfolio-metric-val {
  font-family: var(--f-head); font-size: 1.5rem; font-weight: 800;
  color: var(--t1); line-height: 1; letter-spacing: -0.04em; margin-bottom: 3px;
}
.portfolio-metric-lbl { font-size: var(--fs-xxs); color: var(--t3); font-weight: 500; }
.portfolio-services { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.portfolio-service-tag {
  font-size: 0.6875rem; font-weight: 600; color: var(--t3);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  padding: 2px 8px; border-radius: var(--r-pill);
}

/* ----------------------------------------------------------------
   BLOG GRID
   ---------------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-card);
  display: flex; flex-direction: column;
  transition: transform var(--t-slow) var(--ease-out),
              border-color var(--t-base) var(--ease),
              box-shadow var(--t-slow) var(--ease-out);
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--border-hi); box-shadow: var(--sh-hover); }
.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-card-hi), var(--bg-1));
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
}
.blog-image-icon { width: 40px; height: 40px; color: var(--t3); opacity: 0.35; }
.blog-card-body { padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.blog-category {
  font-size: var(--fs-xxs); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue);
}
.blog-card-title {
  font-family: var(--f-head); font-size: var(--fs-small); font-weight: 700;
  color: var(--t1); line-height: 1.35; letter-spacing: -0.02em;
  transition: color var(--t-fast) var(--ease);
}
.blog-card:hover .blog-card-title { color: var(--blue); }
.blog-card-excerpt { font-size: var(--fs-xs); color: var(--t3); line-height: 1.65; flex: 1; }
.blog-card-meta {
  display: flex; align-items: center; gap: var(--sp-3);
  padding-top: var(--sp-4); border-top: 1px solid var(--border);
  font-size: var(--fs-xxs); color: var(--t3);
}
.blog-author-avatar {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.45rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.blog-read-time { margin-left: auto; }

/* Article page */
.article-header { max-width: 760px; margin: 0 auto; text-align: center; padding-bottom: var(--sp-12); border-bottom: 1px solid var(--border); margin-bottom: var(--sp-12); }
.article-category { display: inline-block; font-size: var(--fs-xxs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: var(--sp-4); }
.article-title { font-family: var(--f-head); font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; color: var(--t1); line-height: 1.12; letter-spacing: -0.035em; margin-bottom: var(--sp-5); }
.article-meta { display: flex; align-items: center; justify-content: center; gap: var(--sp-5); font-size: var(--fs-xs); color: var(--t3); flex-wrap: wrap; }
.article-author-info { display: flex; align-items: center; gap: var(--sp-2); }
.article-featured-image {
  aspect-ratio: 16/9; background: linear-gradient(135deg, var(--bg-card-hi), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-12); max-width: 880px; margin-left: auto; margin-right: auto;
}
.article-content { max-width: 700px; margin: 0 auto; }
.article-content h2 { font-size: 1.625rem; font-weight: 700; color: var(--t1); letter-spacing: -0.03em; margin-top: var(--sp-10); margin-bottom: var(--sp-4); }
.article-content h3 { font-size: var(--fs-h3); font-weight: 700; color: var(--t1); letter-spacing: -0.025em; margin-top: var(--sp-8); margin-bottom: var(--sp-3); }
.article-content p { font-size: var(--fs-body); color: var(--t2); line-height: 1.8; margin-bottom: var(--sp-5); }
.article-content ul, .article-content ol { padding-left: var(--sp-6); margin-bottom: var(--sp-5); }
.article-content li { font-size: var(--fs-body); color: var(--t2); line-height: 1.75; margin-bottom: var(--sp-2); }
.article-content li::marker { color: var(--blue); }
.article-content blockquote { border-left: 3px solid var(--blue); padding: var(--sp-4) var(--sp-6); background: var(--blue-dim); border-radius: 0 var(--r-md) var(--r-md) 0; margin: var(--sp-8) 0; }
.article-content blockquote p { color: var(--t1); font-style: italic; margin: 0; }
.article-content strong { color: var(--t1); font-weight: 600; }

/* ----------------------------------------------------------------
   SERVICE PAGES — SPECIFIC
   ---------------------------------------------------------------- */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
.deliverable-item {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-4); background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--r-md);
  transition: border-color var(--t-fast) var(--ease);
}
.deliverable-item:hover { border-color: var(--border-hi); }
.deliverable-check {
  width: 20px; height: 20px;
  background: var(--blue-dim); border: 1px solid var(--blue-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0; margin-top: 1px;
}
.deliverable-check svg { width: 10px; height: 10px; }
.deliverable-text { font-size: var(--fs-small); color: var(--t2); line-height: 1.5; }
.deliverable-text strong { color: var(--t1); font-weight: 600; display: block; margin-bottom: 2px; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.problem-card {
  padding: var(--sp-6); background: var(--bg-card);
  border: 1px solid var(--border); border-left: 3px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
}
.problem-card h4 { font-size: var(--fs-small); font-weight: 700; color: var(--t1); margin-bottom: var(--sp-2); letter-spacing: -0.02em; }
.problem-card p { font-size: var(--fs-small); color: var(--t2); line-height: 1.6; margin: 0; }

.solution-points { display: flex; flex-direction: column; gap: var(--sp-4); }
.solution-point {
  display: flex; gap: var(--sp-4); padding: var(--sp-5);
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg);
  transition: border-color var(--t-fast) var(--ease);
}
.solution-point:hover { border-color: var(--border-hi); }
.solution-point-icon {
  width: 40px; height: 40px;
  background: var(--blue-dim); border: 1px solid var(--blue-line);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}
.solution-point-icon svg { width: 18px; height: 18px; }
.solution-point h4 { font-size: var(--fs-small); font-weight: 700; color: var(--t1); margin-bottom: var(--sp-1); letter-spacing: -0.02em; }
.solution-point p { font-size: var(--fs-small); color: var(--t2); line-height: 1.6; margin: 0; }

/* Inline stats */
.inline-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5); margin: var(--sp-10) 0;
}
.inline-stat { text-align: center; padding: var(--sp-6); background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); }
.inline-stat-val { font-family: var(--f-head); font-size: 2rem; font-weight: 800; color: var(--t1); line-height: 1; letter-spacing: -0.04em; margin-bottom: 6px; }
.inline-stat-lbl { font-size: var(--fs-xs); color: var(--t3); font-weight: 500; }

/* ----------------------------------------------------------------
   SECTION UTILITIES
   ---------------------------------------------------------------- */
.section-alt { background: var(--bg-2); }

.pull-quote {
  background: var(--blue-dim);
  border: 1px solid var(--blue-line);
  border-radius: var(--r-xl);
  padding: var(--sp-8); text-align: center; margin: var(--sp-10) 0;
}
.pull-quote p { font-family: var(--f-head); font-size: 1.375rem; font-weight: 700; color: var(--t1); line-height: 1.4; letter-spacing: -0.025em; margin: 0; }

.content-block { max-width: 880px; margin: 0 auto; }

/* ----------------------------------------------------------------
   RESPONSIVE — TABLET ≤ 1024px
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: var(--sp-12); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-8) var(--sp-6); }
  .process-grid::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: var(--sp-10); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .story-stat-row { grid-template-columns: repeat(3, 1fr); }
  .deliverables-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .inline-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .page-hero > .container { padding-top: var(--sp-16); padding-bottom: var(--sp-12); }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .story-stat-row { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: var(--sp-6); }
  .inline-stats { grid-template-columns: 1fr; }
}
