*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #c8102e;
  --red-dark: #9e0b22;
  --red-light: #e8192f;
  --dark: #0f0f0f;
  --dark-2: #1a1a1a;
  --dark-3: #242424;
  --mid: #3a3a3a;
  --light: #f7f5f2;
  --warm-white: #fDfAf7;
  --gold: #b89a5a;
  --text-muted: #888;
  --border: rgba(255,255,255,0.08);
  --text: #e8e4df;
  --dim: #aaa;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font: 16px "DM Sans", sans-serif;
  line-height: 1.6;
}

/* ==========================================================================
   General Content
   ========================================================================== */

h2 {
  color: #fff;
  font: 400 clamp(34px,4.5vw,52px) "DM Serif Display", serif;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

h2 em {
  color: var(--red);
  font-style: italic;
}

img { vertical-align: middle; }

section { padding: 90px 52px; }

.section-intro {
  font-size: 17px;
  font-weight: 300;
  color: var(--dim);
  line-height: 1.75;
  max-width: 640px;
}

.section-intro p { margin-top: 20px; }

.tag {
  align-items: center;
  color: var(--red);
  display: inline-flex;
  font-size: 11px;
  font-weight: 600;
  gap: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.tag::before {
  background: var(--red);
  content: '';
  height: 2px;
  width: 28px;
}

/* ==========================================================================
   Nav
   ========================================================================== */

nav {
  align-items: center;
  background: rgba(15,15,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  height: 72px;
  justify-content: space-between;
  padding: 0 48px;
  position: fixed;
    top: 0;
    right: 0;
    left: 0;
  z-index: 100;
}

.nav-logo {
  align-items: center;
  display: flex;
  gap: 12px;
  text-decoration: none;
}

.nav-mark {
  align-items: center;
  background: var(--red);
  color: #fff;
  display: flex;
  font: 700 14px "Playfair Display", serif;
  height: 38px;
  justify-content: center;
  letter-spacing: 0.02em;
  width: 38px;
}

.nav-logo-text {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.nav-logo-text span {
  color: var(--text-muted);
  display: block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 200ms;
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  background: var(--red);
  color: #fff !important;
  letter-spacing: 0.05em;
  padding: 9px 22px !important;
  transition: background 200ms !important;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
  color: #fff !important;
}

/* ==========================================================================
   Banner
   ========================================================================== */

.banner {
  background: var(--dark-2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  padding: 0 52px;
  position: relative;
  overflow:hidden;
}

.banner h1 {
  animation: fadeUp 700ms ease 200ms both;
  color: #fff;
  font: 700 clamp(42px, 6vw, 82px) "DM Serif Display", serif;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 28px;
}

.banner h1 span {
  color: var(--red);
  font-style: italic;
}

.banner-bg {
  background: radial-gradient(ellipse 60% 65% at 82% 30%,rgba(200,16,46,.18) 0%,transparent 65%), radial-gradient(ellipse 40% 45% at 18% 80%,rgba(200,16,46,.05) 0%,transparent 55%);
  position: absolute;
    inset: 0;
}

.banner-image {
  background: url("../images/diverse-office-workers.jpg") center/cover no-repeat;
  height: 100%;
  mask-image: linear-gradient(to left,black 0%,black 25%,transparent 90%);
  opacity: 0.5;
  position: absolute;
    top: 0;
    right: 0;
  width: 58%;
  -webkit-mask-image: linear-gradient(to left,black 0%,black 25%,transparent 90%);
}

.banner-image::after {
  background: linear-gradient(135deg,rgba(13,13,13,.45) 0%,rgba(13,13,13,.2) 50%,rgba(200,16,46,.15) 100%);
  content: '';
  position: absolute;
    inset: 0;
}

.banner-grid {
  background-image: linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,black 20%,transparent 75%);
  position: absolute;
    inset: 0;
}

.banner-inner {
  max-width: 780px;
  padding: 130px 0 50px;
  position: relative;
}

.banner-inner .tag { animation: fadeUp 600ms ease 100ms both; }

.banner-inner .text {
  animation: fadeUp 600ms ease 100ms both;
  color: #aaa;
	font-size: 17px;
	font-weight: 300;
	line-height: 1.7;
	margin-bottom: 44px;
	position: relative;
}

.banner-inner .text strong {
  color: var(--text);
  font-weight: 500;
}

.banner-inner .actions {
  align-items: center;
  animation: fadeUp 600ms ease 520ms both;
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
}

.btn {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  gap: 10px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-p {
  background: var(--red);
  color: #fff;
  font-weight: 600;
  padding: 15px 32px;
  transition: background 200ms, transform 150ms;
}

.btn-p:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-g {
  border-bottom: 1px solid rgba(255,255,255,0.14);
  color: var(--dim);
  font-weight: 500;
  padding-bottom: 2px;
  transition: color 200ms, border-color 200ms;
}

.btn-g:hover {
  border-color:rgba(255,255,255,0.4);
  color:#fff;
}

.banner-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: absolute;
    right: 48px;
    bottom: 80px;
  text-align: right;
}

.banner-stats .stat-num {
  color: #fff;
  font: 700 36px "DM Serif Display", serif;
  line-height: 1;
}

.banner-stats .stat-num span { color: var(--red); }

.banner-stats .stat-label {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 4px;
  text-transform: uppercase;
}

.banner-stats .divider {
  background: rgba(255,255,255,0.08);
  height: 16px;
  margin-left: auto;
  width: 1px;
}

/* ==========================================================================
   Identity Bar
   ========================================================================== */

.id-bar {
  align-items: center;
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-flow: row nowrap;
  padding: 20px 52px;
}

.id-item {
  align-items: center;
  border-right:1px solid var(--border);
  display: flex;
  flex: 1;
  gap: 12px;
  padding: 0 24px;
}

.id-item:first-child{ padding-left: 0; }

.id-item:last-child { border-right: none; }

.id-ico {
  background-color: var(--red);
  border-radius: 30px;
  display: inline-block;
  line-height: normal;
  padding: 15px;
}

.id-text strong {
  color: var(--text);
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em
}

.id-text span {
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.05em
}

/* ==========================================================================
   About
   ========================================================================== */

.about { background: var(--dark); }

.about-grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 50px;
}

.about .text p {
  color: #b0aba4;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about .text p strong {
  color: var(--text);
  font-weight: 500;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin-top: 36px;
}

.credentials li {
  align-items: center;
  color: var(--dim);
  display: flex;
  font-size: 14px;
  gap: 12px;
}

.credentials li::before {
  background-color: var(--red);
  content: '';
  flex-shrink: 0;
  height: 6px;
  width: 6px;
}

.about-highlight {
  background: var(--dark-3);
  border: 1px solid var(--border);
  padding: 44px;
  overflow: hidden;
  position: relative;
}

.about-highlight::before {
  background: var(--red);
  content: '';
  height: 100%;
  position: absolute;
    top: 0;
    left: 0;
  width: 4px;
}

.about-highlight blockquote {
  color: var(--text);
  font: 22px "DM Serif Display", serif;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 24px;
}

.about-highlight cite {
  color: var(--text-muted);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-highlight .links {
  border-top: 1px solid var(--border);
  margin-top: 30px;
  padding-top: 30px;
}

.about-highlight .links-title {
  color: var(--text-muted);
  font-size: 13px;
  font-weight:600;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  text-transform: uppercase; 
}

.about-highlight .links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin-top: 16px;
}

.about-highlight .links-list a {
  align-items: center;
  color: #ccc;
  display: flex;
  font-size: 14px;
  gap: 10px;
  text-decoration: none;
  transition: color 200ms;
}

.about-highlight .links-list a:hover { color: var(--red); }

/* ==========================================================================
   Industries
   ========================================================================== */

.industries {
  background: var(--dark-3);
  padding: 80px 48px;
}

.industries .section-intro a {
  color: var(--red);
  text-decoration: none;
}

.industries-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
}

.industry-card {
  align-items: center;
  background: var(--dark-2);
  border-bottom: 3px solid transparent;
  display: flex;
  flex: 1;
  flex-flow: row nowrap;
  gap: 12px;
  padding: 28px 24px;
  transition: border-color 200ms, background 200ms;
}

.industry-card:hover {
  background: #202020;
  border-color: var(--red);
}

.industry-ico {
  background-color: var(--red);
  border-radius: 30px;
  display: inline-block;
  line-height: normal;
  padding: 15px;
}

.industry-name {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.industry-code {
  color: #666;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.industries-note {
  color: #555;
  font-size: 12px;
  margin-top: 28px;
}

.industries-note a {
  color: #666;
  text-decoration: underline;
}

/* ==========================================================================
   Services
   ========================================================================== */

.services { background: var(--dark-2); }

.services-header {
  align-items: flex-end;
  display: flex;
  flex-flow: row wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 60px;
}

.services .section-intro { max-width: 800px; }

.services-tabs {
  border: 1px solid var(--border);
  display: flex;
  flex-flow: row wrap;
  gap: 0;
  overflow: hidden;
}

.tab-btn {
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 12px 22px;
  text-transform: uppercase;
  transition: all 200ms;
}

.tab-btn:last-child { border-right: none; }

.tab-btn.active {
  background: var(--red);
  color: #fff;
}

.tab-btn:not(.active):hover {
  background: var(--dark-3);
  color: var(--text);
}

.service-panel { display: none; }

.service-panel.active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--dark-3);
  padding: 40px;
  position: relative;
  transition: background 200ms;
}

.service-card:hover { background: var(--dark-3); }

.service-card-num {
  color: rgba(200,16,46,0.2);
  font: 700 48px "DM Serif Display", serif;
  position: absolute;
    top: 24px;
    right: 30px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.service-card h3 {
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  padding-right: 40px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-tag {
  border: 1px solid rgba(200,16,46,0.35);
  color: var(--red);
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  text-transform: uppercase;
}

/* ==========================================================================
   Who We Serve
   ========================================================================== */

.who { background: var(--dark); }

.who-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
}

.who-card {
  background: var(--dark-3);
  overflow: hidden;
  padding: 40px 32px;
  position: relative;
  transition: background 0.2s;
}

.who-card::after {
  background: var(--red);
  content: '';
  height: 3px;
  position: absolute;
    bottom: 0;
    left: 0;
  transition: width 300ms ease;
  width: 0;
}

.who-card:hover::after { width: 100%; }

.who-card:hover { background: #222; }

.who-ico {
  background-color: var(--red);
  border-radius: 50px;
  display: inline-block;
  line-height: normal;
  margin-bottom: 24px;
  padding: 20px;
}

.who-card h3 {
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.who-card p {
  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.who-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin-top: 20px;
}

.who-card ul li {
  align-items: flex-start;
  color: #999;
  display: flex;
  font-size: 13px;
  gap: 8px;
}

.who-card ul li::before {
  content: "\2192";
  color: var(--red);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ==========================================================================
   Process
   ========================================================================== */

.process {
  background: var(--dark-2);
  overflow: hidden;
  position: relative;
}

.process-header {
  justify-content: center;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  background: var(--border);
  content: '';
  height: 1px;
  position: absolute;
    top: 28px;
    right: 10%;
    left: 10%;
}

.process-step {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 0 16px;
  text-align: center;
}

.step-num {
  align-items: center;
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--red);
  display: flex;
  font: 700 20px "DM Serif Display", serif;
  height: 56px;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: background 200ms, border-color 200ms;
  width: 56px;
  z-index: 1;
}

.process-step:hover .step-num {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.process-step h4 {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  color: #666;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
}

/* ==========================================================================
   Frequently Asked Questions
   ========================================================================== */

.faq {
  background: var(--dark-2);
  padding: 100px 48px;
}

.faq-wrap {
  margin: 0 auto;
  max-width: 860px;
}

.faq .section-intro { margin-bottom: 56px; }

.faq-group { margin-bottom: 56px; }

.faq-group-label {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  margin-bottom: 32px;
  padding: 10px 20px;
}

.faq-group-label.business { background: var(--red); }

.faq-group-label.business span { color: #fff; }

.faq-group-label.immigration {
  background: var(--dark-3);
  border: 1px solid var(--red);
}

.faq-group-label.immigration span { color: var(--red); }

.faq-group-label span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-item summary {
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  list-style: none;
  padding-right: 36px;
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  color: var(--red);
  content: '+';
  font-size: 22px;
  font-weight: 300;
  position: absolute;
    top: 50%;
    right: 0;
  transform: translateY(-50%);
  transition: transform 200ms ease;
}

.faq-item[open] summary::after { content: '\2212'; }

.faq-item summary:hover { color: var(--red); }

.faq-answer {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  padding-top: 16px;
}

.faq-answer p { margin: 0 0 12px; }

.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer ul + p { margin-top: 12px; }

.faq-answer ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.faq-answer li {
  color: var(--text-muted);
  margin-bottom: 6px;
}

.faq-answer strong {
  color: #ccc;
  font-weight: 600;
}

/* ==========================================================================
   Call to Action
   ========================================================================== */

.book-cta {
  background: var(--red);
  padding: 60px 48px;
  text-align: center;
}

.book-cta .cta {
  margin: 0 auto;
  max-width: 680px;
}

.book-cta .tag { color: rgba(255,255,255,0.7); }

.book-cta .tag::before { background: rgba(255,255,255,0.7); }

.book-cta h2 { margin-bottom: 16px; }

.book-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
}

.btn-on-red {
  align-items: center;
  background: #fff;
  color: var(--red);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700; 
  gap: 10px;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 200ms;
}

.btn-on-red:hover { background: #f0f0f0; }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact { background: var(--dark); }

.contact-grid {

display: grid; grid-template-columns: 1fr 1fr; gap: 80px;

margin-top: 60px; align-items: start;

}

.contact-info h3 {

font-size: 14px; font-weight: 600; letter-spacing: 0.08em;

text-transform: uppercase; color: #C8102E; margin-bottom: 32px;

}

.contact-detail {

display: flex; align-items: flex-start; gap: 16px;

margin-bottom: 28px;

}

.contact-ico {
  background-color: var(--red);
  border-radius: 30px;
  display: inline-block;
  line-height: 16px;
  padding: 8px;
}

.contact-detail-body strong {
  color: var(--text-muted);
  display: block;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 2px;
}

.contact-detail-body a,
.contact-detail-body p {
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
}

.contact-detail-body a:hover { color: var(--red); }

.contact-portals {
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  padding-top: 40px;
}

.contact-portals-label {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.portal-link {
  align-items: center;
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  font-size: 13px;
  font-weight: 500;
  justify-content: space-between;
  padding: 14px 18px;
  text-decoration: none;
  transition: border-color 200ms, background 200ms;
}

.portal-link:hover {
  background: #222;
  border-color: var(--red);
}

.portal-link span {
  color: var(--text-muted);
  font-size: 11px;
}

/*****************************/

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.contact-form-heading {

font-size: 14px; font-weight: 600; letter-spacing: 0.08em;

text-transform: uppercase; color: #C8102E; margin-bottom: 32px;

}

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {

font-size: 11px; font-weight: 600; letter-spacing: 0.1em;

text-transform: uppercase; color: #888;

}

.form-group input, .form-group textarea, .form-group select {

background: #242424; border: 1px solid rgba(255,255,255,0.08);

color: #E8E4DF; padding: 12px 16px;

font-family: "DM Sans", sans-serif; font-size: 14px;

outline: none; transition: border-color 0.2s;

appearance: none;

}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {

border-color: #C8102E;

}

.form-group textarea { height: 120px; resize: vertical; }

.form-submit {

display: flex; align-items: center; gap: 12px;

margin-top: 8px;

}

.btn-submit {

background: #C8102E; color: #fff;

border: none; padding: 15px 36px;

font-family: "DM Sans", sans-serif;

font-size: 13px; font-weight: 600; letter-spacing: 0.08em;

text-transform: uppercase; cursor: pointer;

transition: background 0.2s;

}

.btn-submit:hover { background: #9E0B22; }

.form-note { font-size: 12px; color: #555; }

 /*****************************/

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  align-items: center;
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  display: flex;
  flex-flow: row wrap;
  gap: 24px;
  justify-content: space-between;
  padding: 48px;
}

.footer-left {
  align-items: center;
  display: flex;
  gap: 16px;
}

.footer-logo-mark {
  align-items: center;
  background: var(--red);
  color: #fff;
  display: flex;
  font: 700 13px "Playfair Display", serif;
  height: 38px;
  justify-content: center;
  width: 38px; 
}

.footer-name {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.copyright {
  color: #444;
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #555;
  font-size: 12px;
  text-decoration: none;
  transition: color 200ms;
}

.footer-links a:hover { color: #999; }

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {

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

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

.process-steps {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-steps::before { display: none; }

.banner-stats { display: none; }

}

@media (max-width: 768px) {

nav { padding: 0 20px; }

.nav-links { display: none; }

section,
.faq,
.book-cta,
.industries { padding: 72px 20px; }

.banner { padding: 0 20px 72px; }

.banner h1 { font-size: 38px; }

.about-grid,
.contact-grid,
.service-panel.active {
  grid-template-columns: 1fr;
  gap: 40px;
}

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

.who-grid,
.industries-grid { grid-template-columns: 1fr; }

.process-steps { grid-template-columns: 1fr 1fr; }

.id-bar {
  flex-direction: column;
  padding: 24px 20px;
}

.id-item {
  border-right: none;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.id-item:last-child { border-bottom: none; }

footer { padding: 32px 20px; }

.services-header {
  align-items: flex-start;
  flex-direction: column;
}

}