/* ============================================================
   TOTAL CONNECT GROUP — palette drawn from the TCG logo
   Primary blue #0C60A8 · aqua connector #5FCBDA · deep navy base
   ============================================================ */
:root {
  --ink: #0a2a4d; /* deep navy base */
  --ink-2: #0f3a63; /* dark panel */
  --ink-3: #1a4e80; /* lines on dark */
  --brand: #0c60a8; /* TCG blue — primary */
  --brand-deep: #094e89;
  --brand-bright: #1e7ac4;
  --cyan: #5fcbda; /* glowing connector — accent */
  --cyan-bright: #83dde9;
  --cyan-deep: #178ea3;
  --paper: #eff4fa; /* light background */
  --white: #ffffff;
  --text: #0a2a4d;
  --text-soft: #46618a;
  --line: #dce6f2;
  --on-dark: #e6f0fb;
  --on-dark-soft: #9db6d6;

  --maxw: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -24px rgba(10, 42, 77, 0.45);
  --shadow-soft: 0 10px 30px -18px rgba(10, 42, 77, 0.3);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 600;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cyan);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  font-weight: 700;
  z-index: 200;
}
.skip:focus {
  left: 0;
}
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--cyan-deep);
  opacity: 0.8;
}
.eyebrow.on-dark {
  color: var(--cyan);
}
.eyebrow.on-dark::before {
  background: var(--cyan);
  opacity: 0.7;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  border: 1.5px solid transparent;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}
.btn svg {
  width: 17px;
  height: 17px;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(12, 96, 168, 0.6);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--brand-bright);
  box-shadow: 0 12px 30px -10px rgba(95, 203, 218, 0.6);
}
.btn-ghost {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(255, 255, 255, 0.28);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}
.btn-line {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-line:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}

/* ============================================================
   Header — light, lets the logo sit naturally
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.site-header.scrolled {
  background: #fff;
  box-shadow: 0 10px 30px -18px rgba(10, 42, 77, 0.28);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  padding: 0;
}
.brand-logo {
  height: 60px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  background: none;
  border: none;
  color: var(--text-soft);
  font-size: 0.94rem;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 999px;
  position: relative;
  transition: color 0.18s ease;
}
.nav-link:hover {
  color: var(--brand);
}
.nav-link.active {
  color: var(--brand);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan);
}
.nav-cta {
  margin-left: 10px;
}

.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 46px;
  height: 42px;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
  transition: 0.25s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 78px 0 0;
  z-index: 90;
  background: #fff;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  animation: fade 0.2s ease;
}
.mobile-menu.show {
  display: flex;
}
.mobile-menu .nav-link {
  font-size: 1.12rem;
  text-align: left;
  padding: 16px 8px;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--text);
}
.mobile-menu .nav-link.active {
  color: var(--brand);
}
.mobile-menu .nav-link.active::after {
  display: none;
}
.mobile-menu .btn {
  margin-top: 18px;
  justify-content: center;
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================================
   Page shell
   ============================================================ */
.page {
  display: none;
}
.page.active {
  display: block;
  animation: pagein 0.35s ease;
}
@keyframes pagein {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.band {
  padding: 96px 0;
}
.band-tight {
  padding: 72px 0;
}
.band-paper {
  background: var(--paper);
}
.band-white {
  background: var(--white);
}
.band-ink {
  background: var(--ink);
  color: var(--on-dark);
}
.band-ink h2,
.band-ink h3 {
  color: #fff;
}

.section-head {
  max-width: 680px;
  margin-bottom: 54px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
}
.section-head p {
  color: var(--text-soft);
  font-size: 1.06rem;
  margin: 16px 0 0;
}
.band-ink .section-head p {
  color: var(--on-dark-soft);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--on-dark);
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(
    ellipse 80% 70% at 70% 20%,
    #000 30%,
    transparent 75%
  );
}
.hero-circuit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 110px 0 100px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  color: #fff;
  font-weight: 600;
}
.hero h1 .hl {
  color: var(--cyan);
}
.hero-sub {
  font-size: 1.18rem;
  color: var(--on-dark-soft);
  max-width: 540px;
  margin: 26px 0 34px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-mini {
  display: flex;
  gap: 26px;
  margin-top: 42px;
  flex-wrap: wrap;
}
.hero-mini div {
  display: flex;
  flex-direction: column;
}
.hero-mini b {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: #fff;
  line-height: 1;
}
.hero-mini span {
  font-size: 0.82rem;
  color: var(--on-dark-soft);
  margin-top: 6px;
}

.hero-visual {
  position: relative;
}
.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-chip {
  position: absolute;
  left: -18px;
  bottom: 30px;
  background: var(--white);
  color: var(--ink);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
}
.hero-chip .dot {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--cyan);
  display: grid;
  place-items: center;
  flex: none;
}
.hero-chip .dot svg {
  width: 18px;
  height: 18px;
}
.hero-chip b {
  font-family: var(--font-display);
  font-size: 0.95rem;
  display: block;
}
.hero-chip span {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.trust {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  position: relative;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 38px;
  justify-content: center;
  padding: 26px 0;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--on-dark-soft);
  font-size: 0.92rem;
  font-weight: 500;
}
.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
}

/* ============================================================
   Benefit cards
   ============================================================ */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.benefit-no {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--brand);
  letter-spacing: 0.1em;
}
.benefit h3 {
  font-size: 1.28rem;
  margin: 14px 0 12px;
}
.benefit p {
  color: var(--text-soft);
  font-size: 0.97rem;
  margin: 0;
}
.benefit .spark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--brand),
    var(--cyan-deep),
    var(--cyan)
  );
}

/* ============================================================
   Services
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.svc-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc:hover .svc-img img {
  transform: scale(1.06);
}
.svc-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 42, 77, 0.85);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.svc-tag i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}
.svc-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.svc-body p {
  color: var(--text-soft);
  font-size: 0.96rem;
  margin: 0 0 18px;
}
.svc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 9px;
}
.svc-list li {
  font-size: 0.92rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
}
.svc-list li svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
  flex: none;
  margin-top: 3px;
}
.svc-link {
  margin-top: auto;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
  background: none;
  border: none;
  padding: 0;
}
.svc-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}
.svc:hover .svc-link svg {
  transform: translateX(4px);
}

.dot-elec {
  background: var(--brand);
}
.dot-sec {
  background: var(--cyan);
}
.dot-comm {
  background: #2c86c4;
}
.dot-ev {
  background: #13a37a;
}

/* ============================================================
   Split / about
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow);
  position: relative;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-bottom: 18px;
}
.split p {
  color: var(--text-soft);
  margin: 0 0 16px;
}
.band-ink .split p {
  color: var(--on-dark-soft);
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
  display: grid;
  gap: 16px;
}
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-list .fi {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--ink);
  display: grid;
  place-items: center;
  flex: none;
}
.band-ink .feature-list .fi {
  background: rgba(255, 255, 255, 0.08);
}
.feature-list .fi svg {
  width: 19px;
  height: 19px;
  color: var(--cyan);
}
.feature-list h4 {
  font-size: 1.05rem;
  margin-bottom: 3px;
}
.feature-list p {
  margin: 0;
  font-size: 0.93rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
}
.stat {
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.stat b {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--cyan);
  display: block;
  line-height: 1;
}
.stat span {
  color: var(--on-dark-soft);
  font-size: 0.9rem;
  margin-top: 8px;
  display: block;
}

/* ============================================================
   Testimonials
   ============================================================ */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
}
.quote .stars {
  color: var(--cyan-deep);
  letter-spacing: 3px;
  font-size: 1rem;
  margin-bottom: 16px;
}
.quote p {
  font-size: 1.02rem;
  color: var(--text);
  margin: 0 0 22px;
  flex: 1;
}
.quote .who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cyan);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
}
.quote .who b {
  font-size: 0.96rem;
  display: block;
  font-family: var(--font-display);
}
.quote .who span {
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* ============================================================
   How it works
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.step {
  position: relative;
  padding-top: 8px;
}
.step-no {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  font-weight: 700;
}
.band-white .step-no,
.band-paper .step-no {
  color: var(--brand);
  background: #fff;
  border-color: var(--line);
}
.step h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.93rem;
  color: var(--text-soft);
  margin: 0;
}
.band-ink .step p {
  color: var(--on-dark-soft);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.faq-q .ic {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  transition: 0.25s;
  font-size: 1.1rem;
}
.faq-item.open .faq-q .ic {
  background: var(--cyan);
  color: var(--ink);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-soft);
}
.faq-a p {
  margin: 0;
  padding: 0 24px 24px;
}
.faq-item.open .faq-a {
  max-height: 320px;
}

/* ============================================================
   Listings
   ============================================================ */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.proj {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-soft);
  background: var(--ink);
}
.proj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.92;
}
.proj:hover img {
  transform: scale(1.07);
}
.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 42, 77, 0.92) 0%,
    rgba(10, 42, 77, 0.05) 55%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.proj-cat {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.proj-cat i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.proj h4 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.proj p {
  color: var(--on-dark-soft);
  font-size: 0.86rem;
  margin: 0;
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: 0.2s;
}
.filter:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.filter.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow-soft);
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.field label .req {
  color: var(--brand);
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--ink);
  background: var(--paper);
  transition: 0.18s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(95, 203, 218, 0.25);
}
.field textarea {
  resize: vertical;
  min-height: 130px;
}
.field .err {
  color: #d12f2f;
  font-size: 0.8rem;
  margin-top: 6px;
  display: none;
}
.field.invalid input,
.field.invalid textarea {
  border-color: #d12f2f;
}
.field.invalid .err {
  display: block;
}
.form-success {
  display: none;
  text-align: center;
  padding: 24px 10px;
}
.form-success.show {
  display: block;
}
.form-success .ok {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}
.form-success .ok svg {
  width: 30px;
  height: 30px;
  color: #fff;
}
.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.form-success p {
  color: var(--text-soft);
  margin: 0 auto;
  max-width: 340px;
}

.info-list {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}
.info {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}
.info .ii {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--ink);
  display: grid;
  place-items: center;
  flex: none;
}
.info .ii svg {
  width: 20px;
  height: 20px;
  color: var(--cyan);
}
.info b {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}
.info a,
.info span {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 600;
  font-family: var(--font-display);
}
.info a:hover {
  color: var(--brand);
}
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  height: 280px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: 0.2s;
}
.social:hover {
  background: var(--ink);
  transform: translateY(-3px);
}
.social svg {
  width: 20px;
  height: 20px;
  color: var(--ink);
  transition: 0.2s;
}
.social:hover svg {
  color: var(--cyan);
}

/* ============================================================
   Final CTA band
   ============================================================ */
.cta-band {
  position: relative;
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 64px 56px;
  overflow: hidden;
  text-align: center;
}
.cta-band .hero-grid {
  opacity: 0.4;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  position: relative;
}
.cta-band p {
  color: var(--on-dark-soft);
  max-width: 520px;
  margin: 16px auto 30px;
  position: relative;
  font-size: 1.08rem;
}
.cta-band .hero-cta {
  justify-content: center;
  position: relative;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #06182f;
  color: var(--on-dark-soft);
  padding: 64px 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.foot-logo-plate {
  display: inline-block;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.6);
}
.foot-logo {
  height: 56px;
  width: auto;
  display: block;
}
.foot-brand p {
  font-size: 0.93rem;
  max-width: 300px;
  margin: 0;
}
.foot-col h5 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 600;
}
.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}
.foot-col button,
.foot-col a {
  background: none;
  border: none;
  color: var(--on-dark-soft);
  font-size: 0.93rem;
  padding: 0;
  text-align: left;
  transition: color 0.18s ease;
  font-family: inherit;
  cursor: pointer;
}
.foot-col button:hover,
.foot-col a:hover {
  color: var(--cyan);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  font-size: 0.84rem;
}
.foot-bottom .lic {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #5d76a0;
}
.foot-socials {
  display: flex;
  gap: 10px;
}
.foot-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
}
.foot-socials a:hover {
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.04);
}
.foot-socials svg {
  width: 17px;
  height: 17px;
  color: var(--on-dark-soft);
}
.foot-socials a:hover svg {
  color: var(--cyan);
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 80px 0 70px;
  }
  .hero-visual {
    max-width: 420px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .nav-cta {
    display: none;
  }
  .cards-3,
  .svc-grid,
  .quotes,
  .proj-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .band {
    padding: 64px 0;
  }
  .band-tight {
    padding: 52px 0;
  }
  .wrap {
    padding: 0 18px;
  }
  .cards-3,
  .svc-grid,
  .quotes,
  .proj-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .cta-band {
    padding: 44px 26px;
  }
  .hero-mini {
    gap: 20px;
  }
  .form-card {
    padding: 26px 22px;
  }
  .hero-chip {
    left: 50%;
    transform: translateX(-50%);
    bottom: -22px;
  }
  .hero-visual {
    margin-bottom: 20px;
  }
  .brand-logo {
    height: 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* EC-BTN-104 + EC-NAV-121: Re-assert hero / CTA text-white on buttons & links.
   Uses class~= (word match) not class*= (substring) to avoid matching hover:text-white etc. */
button[class~='text-white/90'],
a[class~='text-white/90'] {
  color: rgba(255, 255, 255, 0.9);
}
button[class~='text-white/80'],
a[class~='text-white/80'] {
  color: rgba(255, 255, 255, 0.8);
}
button[class~='text-white/70'],
a[class~='text-white/70'] {
  color: rgba(255, 255, 255, 0.7);
}
button[class~='text-white/60'],
a[class~='text-white/60'] {
  color: rgba(255, 255, 255, 0.6);
}
button[class~='text-white/50'],
a[class~='text-white/50'] {
  color: rgba(255, 255, 255, 0.5);
}
button[class~='text-white/40'],
a[class~='text-white/40'] {
  color: rgba(255, 255, 255, 0.4);
}
button[class~='text-white'],
a[class~='text-white'] {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* EC-ANIM-008b / EC-ANIM-009: carousel-only override — scroll-reveal elements animate via IO in functions.php */
.scroll-fade-up:has([aria-roledescription='carousel']),
.scroll-fade-up:has([data-wpconvert-blog-filter-bar]),
.scroll-fade-left:has([aria-roledescription='carousel']),
.scroll-fade-right:has([aria-roledescription='carousel']),
.scroll-scale-in:has([aria-roledescription='carousel']) {
  opacity: 1 !important;
  transform: none !important;
}
