/* ==========================================================================
   GangZe — Computer Systems Design & Integrated Systems
   DARK theme. Teal-mint accent (#2DD4BF family), deep teal #115E59,
   warm gold #E3B25C. Body background #0B1513, text #E6F5F1.
   ========================================================================== */

:root {
  --bg: #0B1513;
  --bg-2: #0F1C19;
  --bg-3: #12201D;
  --surface: #14231F;
  --surface-2: #182A25;
  --line: #20342E;
  --line-2: #2A403A;
  --text: #E6F5F1;
  --text-soft: #BFD6D0;
  --text-mute: #8FB0A8;
  --teal: #2DD4BF;
  --teal-bright: #5EEAD4;
  --teal-dark: #115E59;
  --teal-deep: #0F4A46;
  --gold: #E3B25C;
  --gold-soft: #F0C87E;
  --danger: #F87171;
  --rail-w: 250px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px; /* literal 16px, not rem, not inherited */
  line-height: 1.7;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  color: var(--teal-bright);
}

/* ==========================================================================
   LEFT VERTICAL SIDEBAR (.rail-nav) — fixed left rail on desktop
   ========================================================================== */

.rail-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--rail-w);
  height: 100vh;
  background-color: var(--bg-2);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 32px 22px 24px;
  z-index: 60;
}

.rail-brand {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--teal);
  margin-bottom: 6px;
}

.rail-brand .rail-brand-dot {
  color: var(--gold);
}

.rail-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 34px;
}

.rail-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rail-links a {
  display: block;
  padding: 11px 14px;
  border-left: 3px solid transparent;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 0 8px 8px 0;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.rail-links a:hover {
  background-color: var(--surface);
  border-left-color: var(--teal);
  color: var(--text);
}

.rail-links a.active {
  background-color: var(--surface);
  border-left-color: var(--teal);
  color: var(--teal);
}

.rail-cta {
  margin-top: auto;
  display: inline-block;
  text-align: center;
  background-color: var(--teal);
  color: #05231F;
  font-weight: 800;
  padding: 13px 18px;
  border-radius: 10px;
  letter-spacing: 0.02em;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.rail-cta:hover {
  background-color: var(--teal-bright);
  color: #05231F;
  transform: translateY(-2px);
}

/* ==========================================================================
   TOP BAR (mobile only) with hamburger button
   ========================================================================== */

.mobile-bar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--bg-2);
  border-bottom: 1px solid var(--line);
  height: 62px;
  align-items: center;
  padding: 0 18px;
  justify-content: space-between;
}

.mobile-bar .mobile-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--teal);
}

.menu-toggle {
  background-color: var(--surface);
  border: 1px solid var(--line-2);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 9px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.menu-toggle:hover {
  background-color: var(--surface-2);
}

/* overlay backdrop — shorthand rgba, no opacity state class */
.overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 55;
  display: none;
}

.overlay-backdrop.show {
  display: block;
}

/* ==========================================================================
   MAIN CONTENT AREA — explicitly placed to the right of the rail
   ========================================================================== */

.main-content {
  margin-left: var(--rail-w);
  min-height: 100vh;
}

/* ==========================================================================
   HERO — centered typographic hero with floating stat card cluster
   ========================================================================== */

.cluster-hero {
  position: relative;
  padding: 120px 48px 140px;
  text-align: center;
  overflow: visible;
  background-color: var(--bg);
  background-image: radial-gradient(rgba(45, 212, 191, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  border-bottom: 1px solid var(--line);
}

.cluster-hero .hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(227, 178, 92, 0.35);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.cluster-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.9rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 900px;
  margin: 0 auto 24px;
}

.cluster-hero h1 .accent {
  color: var(--teal);
}

.cluster-hero .hero-sub {
  font-size: 1.12rem;
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background-color: var(--teal);
  color: #05231F;
}

.btn-primary:hover {
  background-color: var(--teal-bright);
  color: #05231F;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid var(--teal-dark);
  color: var(--teal);
  background-color: transparent;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal-bright);
  transform: translateY(-2px);
}

/* floating stat cards */
.hero-stat-card {
  position: absolute;
  background-color: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  text-align: left;
  min-width: 158px;
}

.hero-stat-card .stat-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1.1;
}

.hero-stat-card .stat-label {
  font-size: 0.82rem;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}

.hero-stat-card.gold .stat-num {
  color: var(--gold);
}

.hero-stat-card.gold {
  border: 1px solid rgba(227, 178, 92, 0.4);
}

.hero-stat-card.stat-tl {
  top: 70px;
  left: 7%;
  transform: rotate(-4deg);
}

.hero-stat-card.stat-tr {
  top: 96px;
  right: 8%;
  transform: rotate(3deg);
}

.hero-stat-card.stat-bl {
  bottom: 44px;
  left: 12%;
  transform: rotate(2.5deg);
}

.hero-stat-card.stat-br {
  bottom: 30px;
  right: 13%;
  transform: rotate(-2.5deg);
}

/* ==========================================================================
   SECTION SHARED
   ========================================================================== */

.section {
  padding: 96px 48px;
}

.section-label {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-title .accent {
  color: var(--teal);
}

/* ==========================================================================
   STATEMENT ROW
   ========================================================================== */

.statement-row {
  background-color: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 84px 48px;
}

.statement-row .statement-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.statement-row .statement-text {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
}

.statement-row .statement-text .accent {
  color: var(--teal);
}

.statement-row .statement-text .gold {
  color: var(--gold);
}

/* ==========================================================================
   NUMBERED FEATURE ROWS (two-column, alternating)
   ========================================================================== */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: center;
  padding: 72px 48px;
  border-bottom: 1px solid var(--line);
}

.feature-row .feature-num {
  font-size: clamp(3.4rem, 7vw, 5.4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 18px;
}

.feature-row .feature-num::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  background-color: var(--gold);
}

.feature-row.feature-reversed {
  direction: rtl;
}

.feature-row.feature-reversed > * {
  direction: ltr;
}

.feature-row .feature-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 14px;
}

.feature-row .feature-body p {
  color: var(--text-soft);
  font-size: 1.02rem;
}

/* ==========================================================================
   HORIZONTAL SCROLL SERVICES STRIP
   ========================================================================== */

.scroll-strip-section {
  background-color: var(--bg-2);
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--line);
}

.scroll-strip-section .strip-head {
  padding: 0 48px;
  margin-bottom: 40px;
}

.scroll-strip {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 48px 30px;
  scrollbar-width: thin;
  scrollbar-color: #2A3540 transparent;
}

.scroll-strip::-webkit-scrollbar {
  height: 10px;
}

.scroll-strip::-webkit-scrollbar-track {
  background: #12201D;
}

.scroll-strip::-webkit-scrollbar-thumb {
  background-color: #2A3540;
  border-radius: 999px;
}

.strip-card {
  flex: 0 0 290px;
  scroll-snap-align: start;
  background-color: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 30px 26px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.strip-card:hover {
  border-color: var(--teal-dark);
  transform: translateY(-4px);
}

.strip-card .strip-index {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 14px;
}

.strip-card h4 {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.strip-card p {
  color: var(--text-mute);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ==========================================================================
   TABBED CONTENT
   ========================================================================== */

.tabs-section {
  padding: 96px 48px;
}

.tabs-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.tab-btn {
  background-color: var(--surface);
  border: 1px solid var(--line-2);
  color: var(--text-soft);
  padding: 12px 22px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tab-btn:hover {
  border-color: var(--teal-dark);
  color: var(--text);
}

.tab-btn.active {
  background-color: var(--teal);
  color: #05231F;
  border-color: var(--teal);
}

.tab-panel {
  display: none;
  background-color: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 34px 36px;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 16px;
}

.tab-panel p {
  color: var(--text-soft);
  margin-bottom: 14px;
}

.tab-panel p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-section {
  background-color: var(--bg-2);
  padding: 96px 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background-color: transparent;
  border: none;
  color: var(--text);
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question .faq-icon {
  color: var(--teal);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--text-soft);
  font-size: 0.98rem;
}

/* ==========================================================================
   SPLIT CTA BAND (teal background, dark text)
   ========================================================================== */

.cta-band {
  background-color: var(--teal);
  color: #05231F;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 72px 48px;
}

.cta-band h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  color: #05231F;
  line-height: 1.2;
  margin-bottom: 12px;
}

.cta-band p {
  color: #0B3A34;
  font-size: 1.05rem;
}

.cta-band .cta-band-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-band .btn-dark {
  background-color: #05231F;
  color: #E6F5F1;
}

.cta-band .btn-dark:hover {
  background-color: #0B3A34;
  transform: translateY(-2px);
}

.cta-band .btn-ghost-dark {
  border: 1.5px solid #0B3A34;
  color: #05231F;
}

.cta-band .btn-ghost-dark:hover {
  background-color: #0B3A34;
  color: #E6F5F1;
  transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER — TWO-TONE SPLIT FOOTER (.split-footer)
   ========================================================================== */

.split-footer .footer-upper {
  background-color: var(--bg-3);
  padding: 64px 48px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  border-top: 1px solid var(--line);
}

.footer-brand h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 10px;
}

.footer-brand p {
  color: var(--text-mute);
  font-size: 0.95rem;
  max-width: 340px;
}

.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.footer-col ul li a:hover {
  color: var(--teal);
}

.footer-col .contact-line {
  color: var(--text-mute);
  font-size: 0.92rem;
  line-height: 1.65;
}

.footer-col .contact-line a {
  color: var(--teal);
}

.split-footer .footer-lower {
  background-color: var(--bg);
  padding: 20px 48px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-mute);
}

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

.footer-lower .lower-links a {
  color: var(--text-soft);
  font-size: 0.85rem;
}

.footer-lower .lower-links a:hover {
  color: var(--teal);
}

/* ==========================================================================
   INNER PAGE HERO (services / contact)
   ========================================================================== */

.page-hero {
  background-color: var(--bg);
  background-image: radial-gradient(rgba(45, 212, 191, 0.10) 1px, transparent 1px);
  background-size: 26px 26px;
  border-bottom: 1px solid var(--line);
  padding: 90px 48px 72px;
  text-align: center;
}

.page-hero .page-eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 18px;
}

.page-hero h1 .accent {
  color: var(--teal);
}

.page-hero p {
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.08rem;
}

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */

.service-detail {
  padding: 88px 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-detail .section-intro {
  grid-column: 1 / -1;
  max-width: 820px;
}

.service-detail .section-intro p {
  color: var(--text-soft);
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.service-block {
  background-color: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 34px 32px;
  border-top: 3px solid var(--teal);
}

.service-block.gold-top {
  border-top-color: var(--gold);
}

.service-block h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 14px;
}

.service-block.gold-top h3 {
  color: var(--gold-soft);
}

.service-block p {
  color: var(--text-soft);
  font-size: 0.99rem;
}

.process-section {
  background-color: var(--bg-2);
  padding: 88px 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.process-intro {
  color: var(--text-soft);
  max-width: 760px;
  margin-top: 10px;
}

.process-step {
  background-color: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 28px 24px;
}

.process-step .step-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

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

.process-step p {
  color: var(--text-mute);
  font-size: 0.92rem;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  padding: 88px 48px;
}

.contact-info h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.contact-info h2 .accent {
  color: var(--teal);
}

.contact-detail {
  margin-bottom: 22px;
}

.contact-detail .detail-label {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-detail p {
  color: var(--text-soft);
}

.contact-detail p a {
  color: var(--teal);
}

.contact-form {
  background-color: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 36px 34px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background-color: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 9px;
  padding: 13px 14px;
  color: var(--text);
  font-size: 0.98rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  margin-top: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal);
  min-height: 1.5em;
}

.contact-faq {
  padding: 72px 48px 96px;
  background-color: var(--bg-2);
  border-top: 1px solid var(--line);
}

.contact-faq .faq-list {
  max-width: 820px;
}

/* ==========================================================================
   SCROLL REVEAL (safe without JS)
   ========================================================================== */

.fade-up {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-animate .fade-up {
  opacity: 0;
  transform: translateY(24px);
}

.js-animate .fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-stat-card.stat-tl {
    left: 4%;
  }
  .hero-stat-card.stat-tr {
    right: 4%;
  }
  .split-footer .footer-upper {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .rail-nav {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    width: 260px;
  }
  .rail-nav.open {
    transform: translateX(0);
  }
  .mobile-bar {
    display: flex;
  }
  .main-content {
    margin-left: 0;
  }
  .cluster-hero {
    padding: 80px 28px 110px;
  }
  .hero-stat-card {
    position: static;
    transform: none;
    display: inline-block;
    margin: 8px;
  }
  .cluster-hero .hero-stats-cluster {
    margin-top: 30px;
    text-align: center;
  }
  .hero-stat-card.stat-tl,
  .hero-stat-card.stat-tr,
  .hero-stat-card.stat-bl,
  .hero-stat-card.stat-br {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .feature-row,
  .feature-row.feature-reversed {
    grid-template-columns: 1fr;
    gap: 20px;
    direction: ltr;
    padding: 52px 28px;
  }
  .feature-row .feature-num {
    font-size: 3rem;
  }
  .section,
  .tabs-section,
  .faq-section,
  .service-detail,
  .process-section,
  .contact-layout,
  .contact-faq {
    padding-left: 28px;
    padding-right: 28px;
  }
  .scroll-strip-section .strip-head {
    padding-left: 28px;
    padding-right: 28px;
  }
  .scroll-strip {
    padding-left: 28px;
    padding-right: 28px;
  }
  .cta-band {
    grid-template-columns: 1fr;
    padding: 56px 28px;
  }
  .cta-band .cta-band-actions {
    justify-content: flex-start;
  }
  .split-footer .footer-upper {
    grid-template-columns: 1fr;
    padding: 48px 28px 36px;
  }
  .split-footer .footer-lower {
    padding: 18px 28px;
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .service-detail {
    grid-template-columns: 1fr;
  }
}
