/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --primary:        #0f1f3d;
  --primary-dark:   #080f20;
  --bg:             #050e1c;
  --accent:         #e07b39;
  --accent-light:   #f09050;
  --accent-dark:    #bf6220;
  --text:           #f1f5f9;
  --text-muted:     rgba(241,245,249,.70);
  --text-subtle:    rgba(241,245,249,.45);
  --text-faint:     rgba(241,245,249,.20);
  --surface:        rgba(255,255,255,.04);
  --surface-md:     rgba(255,255,255,.07);
  --border:         rgba(255,255,255,.10);
  --border-subtle:  rgba(255,255,255,.06);
  --font-heading:   'Space Grotesk', system-ui, sans-serif;
  --font-body:      'Inter', system-ui, sans-serif;
  --max-w:          1280px;
  --px:             1.5rem;
  --r:              .5rem;
  --r-lg:           .75rem;
  --r-xl:           1rem;
  --shadow-glow:    0 0 40px rgba(224,123,57,.12);
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p  { color: var(--text-muted); }

.eyebrow {
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: .75rem;
}
.text-accent { color: var(--accent); }

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r);
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(224,123,57,.35);
}
.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 6px 24px rgba(224,123,57,.5);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text-muted);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(224,123,57,.06);
}
.btn-lg { padding: .9rem 2.2rem; font-size: 1rem; }

/* ═══════════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════════ */
.announce-bar {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: .45rem 1rem;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
}
.announce-bar span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.75rem;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: .15rem;
}
.logo-main {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
}
.logo-sub {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-subtle);
  font-weight: 500;
}
.nav-links {
  display: none;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  padding: .45rem 1rem;
  border-radius: var(--r);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all .15s ease;
}
.nav-link:hover   { color: var(--text); background: var(--surface-md); }
.nav-link.active  { background: var(--accent); color: #fff; }
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--r);
  color: var(--text-muted);
  transition: all .15s ease;
}
.nav-toggle:hover { color: var(--text); background: var(--surface-md); }
.mobile-nav {
  display: none;
  padding: .75rem var(--px) 1rem;
  border-top: 1px solid var(--border-subtle);
  flex-direction: column;
  gap: .25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: .6rem 1rem; }

@media (min-width: 768px) {
  .nav-links  { display: flex; }
  .nav-toggle { display: none; }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  background: radial-gradient(ellipse at 65% 45%, #1a3060 0%, #050e1c 65%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 5.5rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(5,14,28,.8) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-text { max-width: 580px; }
.hero-title { margin-bottom: 1.25rem; }
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* hero widget wrapper */
.hero-widget-wrap {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero { padding: 6rem 0 7rem; }
  .hero-inner {
    grid-template-columns: 1fr 440px;
    gap: 5rem;
  }
  .hero-widget-wrap { max-width: none; margin: 0; }
}

/* ═══════════════════════════════════════════
   HERO ANIMATION WIDGET
═══════════════════════════════════════════ */
.hw {
  background: rgba(15,31,61,.85);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: 1.25rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0,0,0,.5), var(--shadow-glow);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  user-select: none;
}

/* header */
.hw-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 .125rem;
}
.hw-live {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hw-live-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: #4ade80;
  animation: hw-blink 1.4s ease-in-out infinite;
}
@keyframes hw-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .25; }
}
.hw-live-label {
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hw-network {
  font-family: 'Courier New', monospace;
  font-size: .6rem;
  color: var(--text-faint);
}

/* stats row */
.hw-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}
.hw-stat {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: .6rem .75rem;
  overflow: hidden;
}
.hw-stat-accent {
  background: rgba(224,123,57,.15);
  border-color: rgba(224,123,57,.35);
}
.hw-stat-icon {
  width: .9rem;
  height: .9rem;
  margin-bottom: .25rem;
  color: var(--text-faint);
  display: block;
}
.hw-stat-accent .hw-stat-icon { color: var(--accent); }
.hw-stat-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}
.hw-stat-accent .hw-stat-value { color: var(--accent); }
.hw-stat-lbl {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-faint);
  margin-top: .2rem;
  white-space: nowrap;
}

/* stat flip animation */
@keyframes hw-stat-flip {
  0%   { opacity: 1; transform: translateY(0); }
  49%  { opacity: 0; transform: translateY(-4px); }
  50%  { opacity: 0; transform: translateY(4px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hw-stat-flip { animation: hw-stat-flip .3s ease; }

/* middle row */
.hw-middle {
  display: flex;
  gap: .5rem;
  min-height: 140px;
}
.hw-section-label {
  font-family: var(--font-heading);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: .5rem;
}
.hw-panel {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: .65rem .75rem;
}

/* agent grid */
.hw-agents { flex: 1; display: flex; flex-direction: column; }
.hw-agent-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .3rem;
  flex: 1;
}
.hw-agent-dot {
  aspect-ratio: 1;
  border-radius: 2px;
  transition: background-color .5s ease;
}
.hw-dot-available { background: #4ade80; }
.hw-dot-oncall    { background: var(--accent); animation: hw-blink 1.8s ease-in-out infinite; }
.hw-dot-wrap      { background: #facc15; }
.hw-dot-offline   { background: rgba(255,255,255,.15); }

.hw-legend {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .75rem;
  margin-top: .5rem;
  padding-top: .45rem;
  border-top: 1px solid var(--border-subtle);
}
.hw-legend-item {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.hw-legend-dot {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
}
.hw-legend-label {
  font-size: .6rem;
  color: var(--text-faint);
}

/* feed */
.hw-feed-panel { width: 44%; display: flex; flex-direction: column; overflow: hidden; }
.hw-feed { flex: 1; display: flex; flex-direction: column; gap: .35rem; overflow: hidden; }
.hw-feed-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .35s ease, transform .35s ease;
}
.hw-feed-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.hw-feed-item.exiting {
  opacity: 0;
  transition: opacity .3s ease;
}
.hw-feed-dot {
  width: .35rem;
  height: .35rem;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hw-feed-text {
  font-size: .65rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* volume bars */
.hw-volume { display: flex; flex-direction: column; }
.hw-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 2rem;
}
.hw-bar {
  flex: 1;
  background: rgba(224,123,57,.65);
  border-radius: 2px 2px 0 0;
  transition: height .6s ease-in-out;
  min-height: 15%;
}

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar {
  background: var(--primary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-item-lbl {
  font-size: .8rem;
  color: var(--text-subtle);
  margin-top: .35rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════ */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p   { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════ */
.services-section { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.service-card:hover {
  border-color: rgba(224,123,57,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.3), 0 0 0 1px rgba(224,123,57,.1);
  transform: translateY(-2px);
}
.svc-icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: var(--r-lg);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.service-card h3 { margin-bottom: .6rem; font-size: 1.1rem; }
.service-card p  { font-size: .875rem; line-height: 1.6; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  font-family: var(--font-heading);
  letter-spacing: .02em;
  transition: gap .2s ease;
}
.svc-link:hover { gap: .6rem; }

@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

/* ═══════════════════════════════════════════
   SERVICE ICON SVGS
═══════════════════════════════════════════ */
.svc-arc {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* animations applied via JS with Web Animations API */

/* ═══════════════════════════════════════════
   TEAM / ABOUT SECTION
═══════════════════════════════════════════ */
.about-section { background: var(--primary-dark); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p  { margin-bottom: 1rem; font-size: .95rem; }
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
}
.about-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: .4rem 1rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font-heading);
}
.about-badge span { color: var(--accent); font-weight: 700; }

@media (min-width: 1024px) {
  .about-inner { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

/* ═══════════════════════════════════════════
   FEATURE BULLETS
═══════════════════════════════════════════ */
.features-section { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--r-lg);
  background: rgba(224,123,57,.15);
  border: 1px solid rgba(224,123,57,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.feature-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.feature-card p  { font-size: .85rem; color: var(--text-subtle); line-height: 1.6; }

@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

/* ═══════════════════════════════════════════
   BLOG / NEWS SECTION
═══════════════════════════════════════════ */
.news-section { background: var(--primary-dark); }
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.news-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: border-color .2s ease, transform .2s ease;
}
.news-card:hover {
  border-color: rgba(224,123,57,.25);
  transform: translateY(-2px);
}
.news-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .72rem;
  color: var(--text-subtle);
}
.news-meta-dot {
  width: .25rem;
  height: .25rem;
  border-radius: 50%;
  background: var(--text-faint);
}
.news-card h3 { font-size: 1rem; line-height: 1.4; color: var(--text); }
.news-card h3 a:hover { color: var(--accent); }
.news-card p  { font-size: .85rem; color: var(--text-subtle); line-height: 1.6; flex: 1; }
.news-footer  { display: flex; align-items: center; gap: 1rem; }
.news-views, .news-likes {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  color: var(--text-faint);
}

@media (min-width: 768px)  { .news-grid { grid-template-columns: repeat(3, 1fr); } }

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #162d5a 100%);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: .75rem; }
.cta-section p  { color: var(--text-muted); font-size: 1rem; margin-bottom: 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--primary);
  border-top: 1px solid var(--border-subtle);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: .6rem;
  letter-spacing: -.01em;
}
.footer-brand-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .875rem;
  color: var(--text-muted);
  transition: color .15s ease;
}
.footer-links a:hover { color: var(--accent); }
.footer-contact-list { display: flex; flex-direction: column; gap: .75rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--text-muted);
}
.footer-contact-item svg  { flex-shrink: 0; margin-top: .15rem; color: var(--accent); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
  text-align: center;
  font-size: .75rem;
  color: var(--text-faint);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
}

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .75rem; }
.page-hero p  { font-size: 1rem; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.timeline { margin-top: 2rem; }
.timeline-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.75rem;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 1.1rem;
  top: 2rem;
  bottom: 0;
  width: 1px;
  background: var(--border-subtle);
}
.timeline-dot {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(224,123,57,.2);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 700;
  color: var(--accent);
}
.timeline-content h3 { font-size: .95rem; margin-bottom: .3rem; }
.timeline-content p  { font-size: .85rem; color: var(--text-subtle); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  text-align: center;
}
.team-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .75rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}
.team-card h3 { font-size: .95rem; margin-bottom: .2rem; }
.team-card p  { font-size: .78rem; color: var(--text-subtle); }

@media (min-width: 768px)  { .team-grid { grid-template-columns: repeat(4, 1fr); } }

/* Extended team cards — for bios and contact links */
.team-grid-lg {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .team-grid-lg { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid-lg { grid-template-columns: repeat(3, 1fr); } }

.team-card-lg {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: border-color .2s ease, transform .2s ease;
}
.team-card-lg:hover {
  border-color: rgba(224,123,57,.2);
  transform: translateY(-2px);
}
.team-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.team-card-header .team-avatar { margin: 0; flex-shrink: 0; }
.team-card-header h3 { font-size: .95rem; margin-bottom: .15rem; line-height: 1.3; }
.team-card-header .team-role { font-size: .78rem; color: var(--accent); font-weight: 600; }
.team-card-bio {
  font-size: .82rem;
  color: var(--text-subtle);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}
.team-contact {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--border-subtle);
}
.team-contact a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--text-subtle);
  text-decoration: none;
  transition: color .2s;
  overflow: hidden;
}
.team-contact a:hover { color: var(--accent); }
.team-contact a svg { flex-shrink: 0; transition: color .2s; }
.team-contact a:hover svg { color: var(--accent); }
.team-contact span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ═══════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-content h2 { margin-bottom: .75rem; font-size: 1.75rem; }
.service-detail-content p  { margin-bottom: 1.25rem; line-height: 1.75; }
.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem .75rem;
  margin-top: 1rem;
}
.service-feature-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-muted);
}
.service-feature-item::before {
  content: '';
  width: .4rem;
  height: .4rem;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.service-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon-lg {
  width: 9rem;
  height: 9rem;
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .service-detail { grid-template-columns: 1fr 200px; align-items: start; }
  .service-detail:nth-child(even) .service-detail-content { order: 1; }
  .service-detail:nth-child(even) .service-detail-icon { order: 0; }
}

/* ═══════════════════════════════════════════
   NEWS PAGE
═══════════════════════════════════════════ */
.news-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.news-full-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  transition: border-color .2s ease;
}
.news-full-card:hover { border-color: rgba(224,123,57,.25); }
.news-full-card h2 { font-size: 1.25rem; line-height: 1.35; }
.news-full-card h2 a:hover { color: var(--accent); }
.news-full-card p { font-size: .9rem; line-height: 1.7; color: var(--text-muted); }
.news-stats {
  display: flex;
  gap: 1rem;
  font-size: .75rem;
  color: var(--text-faint);
}
.news-stats span { display: flex; align-items: center; gap: .3rem; }

@media (min-width: 768px) {
  .news-page-grid { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
}

/* ═══════════════════════════════════════════
   NEWS PAGE v2
═══════════════════════════════════════════ */

.news2-featured-wrap { margin-bottom: 3.5rem; }
.news2-featured-wrap .eyebrow { margin-bottom: 1rem; }

.news2-featured {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.news2-featured:hover {
  border-color: rgba(224,123,57,.3);
  box-shadow: 0 8px 40px rgba(0,0,0,.3), 0 0 0 1px rgba(224,123,57,.08);
}
.news2-featured-bar {
  height: 5px;
  background: var(--accent);
}
.news2-featured-body { padding: 1.75rem; }
.news2-featured-title {
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  line-height: 1.25;
  margin: .75rem 0 1rem;
  color: var(--text);
}
.news2-featured-excerpt {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 72ch;
}
.news2-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}
.news2-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .6rem;
}
.news2-badge {
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: var(--r);
}
.news2-badge--company-news {
  background: rgba(224,123,57,.18);
  color: var(--accent-light);
  border: 1px solid rgba(224,123,57,.3);
}
.news2-badge--technology {
  background: rgba(56,139,253,.14);
  color: #7bb8ff;
  border: 1px solid rgba(56,139,253,.22);
}
.news2-badge--case-study {
  background: var(--surface-md);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.news2-date {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  color: var(--text-subtle);
}
.news2-stats {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.news2-stats span {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  color: var(--text-faint);
}
.news2-all-wrap .eyebrow { margin-bottom: 1.25rem; }
.news2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.news2-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.news2-card:hover {
  border-color: rgba(224,123,57,.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.news2-card-bar { height: 3px; }
.news2-card-bar--0 { background: var(--accent); }
.news2-card-bar--1 { background: #388bfd; }
.news2-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news2-card-title {
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--text);
  margin: .7rem 0 .6rem;
  transition: color .15s ease;
}
.news2-card:hover .news2-card-title { color: var(--accent); }
.news2-card-excerpt {
  font-size: .875rem;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
}
.news2-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}
.news2-read-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-heading);
  font-size: .825rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap .15s ease, color .15s ease;
}
.news2-read-more:hover {
  color: var(--accent-light);
  gap: .55rem;
}

@media (min-width: 768px) {
  .news2-featured-body { padding: 2.5rem; }
  .news2-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.contact-info h2 { font-size: 1.5rem; margin-bottom: .75rem; }
.contact-info > p { font-size: .92rem; margin-bottom: 0; line-height: 1.7; }

/* Person cards */
.contact-persons {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: 1.5rem 0;
}
.contact-person-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: .9rem 1rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-person-card:hover {
  border-color: rgba(224,123,57,.25);
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.contact-person-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--r);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: background .2s ease, color .2s ease;
}
.contact-person-card:hover .contact-person-icon {
  background: var(--accent);
  color: #fff;
}
.contact-person-text { min-width: 0; }
.contact-person-meta {
  font-size: .72rem;
  color: var(--text-subtle);
  font-weight: 500;
  margin-bottom: .15rem;
}
.contact-person-value {
  font-size: .875rem;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-heading);
  transition: color .15s ease;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contact-person-value:hover { color: var(--accent); }

/* Same-day callout */
.contact-callout {
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.35rem 1.5rem;
}
.contact-callout-title {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: .4rem;
}
.contact-callout p {
  font-size: .83rem;
  color: var(--text-subtle);
  margin: 0;
  line-height: 1.65;
}

/* form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 2rem;
}
.contact-form h3 { margin-bottom: .4rem; font-size: 1.15rem; }
.form-intro {
  font-size: .85rem;
  color: var(--text-subtle);
  margin-bottom: 1.5rem;
}
.form-required { color: #f87171; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: .4rem;
  font-family: var(--font-heading);
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: .7rem 1rem;
  color: var(--text);
  font: inherit;
  font-size: .9rem;
  transition: border-color .15s ease, box-shadow .15s ease;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224,123,57,.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group select option { background: var(--primary); }

/* Success state */
#form-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
}
.form-success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #4ade80;
}
#form-success h3 { margin-bottom: .5rem; }
#form-success p  { font-size: .9rem; color: var(--text-subtle); max-width: 300px; }

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1.4fr; align-items: start; }
}

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.text-center { text-align: center; }
.mt-1  { margin-top: .5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: .5rem; }

/* ═══════════════════════════════════════════
   RESPONSIVE PADDING
═══════════════════════════════════════════ */
@media (min-width: 640px) {
  :root { --px: 2rem; }
  .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  :root { --px: 2.5rem; }
}

/* ═══════════════════════════════════════════
   PAGE HERO — LEFT VARIANT
═══════════════════════════════════════════ */
.page-hero-left { text-align: left; }
.page-hero-left p { margin: 0; }

/* ═══════════════════════════════════════════
   CORE SERVICES GRID (services page)
═══════════════════════════════════════════ */
.core-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.core-svc-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.core-svc-card:hover {
  border-color: rgba(224,123,57,.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.core-svc-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--r-lg);
  background: var(--primary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
  transition: background .2s ease, border-color .2s ease;
}
.core-svc-card:hover .core-svc-icon {
  background: rgba(224,123,57,.15);
  border-color: rgba(224,123,57,.3);
}
.core-svc-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.core-svc-card p  { font-size: .875rem; line-height: 1.65; }

@media (min-width: 640px)  { .core-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .core-services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ═══════════════════════════════════════════
   INDUSTRIES GRID (services page)
═══════════════════════════════════════════ */
.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.industry-card:hover {
  border-color: rgba(224,123,57,.2);
  transform: translateY(-2px);
}
.industry-card-header { padding: 1rem 1.5rem; }
.industry-card-header.primary-bg {
  background: var(--primary);
  border-bottom: 1px solid var(--border);
}
.industry-card-header.accent-bg { background: var(--accent); }
.industry-card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}
.industry-card-body { padding: 1.5rem; }
.industry-list { display: flex; flex-direction: column; gap: .65rem; }
.industry-list-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .875rem;
  color: var(--text-muted);
}
.industry-bullet {
  width: .35rem;
  height: .35rem;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@media (min-width: 768px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════
   INDUSTRIES HUB PAGE
═══════════════════════════════════════════ */
.industries-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.industry-hub-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.industry-hub-card:hover {
  border-color: rgba(224,123,57,.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.industry-hub-card-top {
  padding: 1.75rem 1.75rem 1rem;
}
.industry-hub-card-top h2 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  margin-bottom: .6rem;
}
.industry-hub-card-top p {
  font-size: .875rem;
  line-height: 1.7;
}
.industry-hub-card-body {
  padding: 0 1.75rem 1.5rem;
  flex: 1;
}
.industry-hub-list {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}
.industry-hub-list-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .84rem;
  color: var(--text-subtle);
}
.industry-hub-card-footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid var(--border-subtle);
}
.industry-hub-card-footer .btn {
  width: 100%;
  justify-content: center;
}

/* Proof grid */
.industries-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.industries-proof-text h2 { margin-bottom: 1rem; }
.industries-proof-text p { line-height: 1.75; }
.industries-proof-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.proof-stat-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-align: center;
}
.proof-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: .5rem;
}
.proof-stat-label {
  font-size: .78rem;
  color: var(--text-subtle);
  line-height: 1.4;
}
.mt-3 { margin-top: 1.5rem; }

@media (min-width: 768px) {
  .industries-hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .industries-hub-grid { grid-template-columns: repeat(4, 1fr); }
  .industries-proof-grid { grid-template-columns: 1fr 420px; gap: 5rem; }
}

/* ═══════════════════════════════════════════
   INDUSTRY DETAIL PAGE
═══════════════════════════════════════════ */

/* Breadcrumb */
.breadcrumb-nav {
  background: var(--primary-dark);
  border-bottom: 1px solid var(--border-subtle);
  padding: .65rem 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
  font-size: .78rem;
  color: var(--text-subtle);
}
.breadcrumb-list a {
  color: var(--text-subtle);
  transition: color .15s;
}
.breadcrumb-list a:hover { color: var(--accent); }
.breadcrumb-list li[aria-current="page"] { color: var(--text-muted); }

/* Intro */
.industry-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.industry-intro h2 { margin-bottom: .5rem; }
.industry-intro-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Services grid */
.industry-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.industry-svc-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
}
.industry-svc-card:hover {
  border-color: rgba(224,123,57,.2);
  transform: translateY(-2px);
}
.industry-svc-num {
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: .75rem;
}
.industry-svc-card h3 {
  font-size: 1.05rem;
  margin-bottom: .75rem;
  color: var(--text);
}
.industry-svc-card p {
  font-size: .875rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}

/* Why CTC Bar */
.why-ctc-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 0;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
}
.why-ctc-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 0 1rem;
}
.why-ctc-stat {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: .4rem;
}
.why-ctc-label {
  font-size: .78rem;
  color: var(--text-subtle);
  line-height: 1.4;
}
.why-ctc-divider {
  width: 1px;
  height: 3rem;
  background: var(--border-subtle);
  display: none;
}

/* Also Explore */
.also-explore-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.also-explore-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: border-color .2s ease, transform .2s ease;
  color: inherit;
}
.also-explore-card:hover {
  border-color: rgba(224,123,57,.25);
  transform: translateY(-2px);
}
.also-explore-card h3 { font-size: 1rem; color: var(--text); }
.also-explore-card p  { font-size: .84rem; line-height: 1.65; color: var(--text-subtle); flex: 1; }
.also-explore-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: .25rem;
  font-family: var(--font-heading);
  letter-spacing: .01em;
}

@media (min-width: 640px) {
  .industry-services-grid { grid-template-columns: repeat(2, 1fr); }
  .also-explore-grid { grid-template-columns: repeat(3, 1fr); }
  .why-ctc-divider { display: block; }
}
@media (min-width: 1024px) {
  .industry-intro { grid-template-columns: 340px 1fr; gap: 4rem; align-items: start; }
  .industry-services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── News article (detail) ─────────────────────────────────────── */
.news-article {
  max-width: 720px;
  margin: 0 auto;
}
.news-article p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-subtle);
  margin-bottom: 1.4rem;
}
.news-article p:first-of-type {
  font-size: 1.12rem;
  color: var(--text);
}
.news-article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}
