/* ===================================================================
   RC&T — RO COMMUNICATION & TECHNOLOGY LIMITED
   Design tokens: Deep Blue / Orange (brand-specified) + signal-arc motif
   =================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap");

:root {
  /* --- brand colour system (brief-specified) --- */
  --ink: #0a3d62; /* deep blue */
  --ink-2: #072a45; /* darker navy, hero/footer */
  --ink-3: #0d4d7a; /* mid blue, gradients */
  --accent: #f39c12; /* orange */
  --accent-2: #ffb648; /* light amber, hover/gradient */
  --paper: #ffffff;
  --mist: #f4f7fb; /* light grey background */
  --mist-2: #eaf0f7;
  --line: #dfe6ee;
  --slate: #4c5d70; /* secondary body text */
  --slate-2: #7c8ba0;

  /* --- type --- */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* --- shape / motion --- */
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 28px;
  --shadow-s: 0 2px 10px rgba(10, 61, 98, 0.06);
  --shadow-m: 0 12px 32px rgba(10, 61, 98, 0.1);
  --shadow-l: 0 24px 60px rgba(10, 61, 98, 0.16);
  --ease: cubic-bezier(0.22, 0.9, 0.32, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
p {
  margin: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}
section {
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  margin-top: 14px;
  color: var(--ink);
}
.section-head p {
  margin-top: 16px;
  color: var(--slate);
  font-size: 16.5px;
  line-height: 1.65;
}

.pad {
  padding: 96px 0;
}
.pad-s {
  padding: 64px 0;
}
.bg-mist {
  background: var(--mist);
}
.bg-ink {
  background: var(--ink);
  color: #fff;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent), #e08a08);
  color: #fff;
  box-shadow: 0 10px 24px rgba(243, 156, 18, 0.35);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(243, 156, 18, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--mist);
}
.btn-ghost-invert {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost-invert:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 18px;
  font-size: 13.5px;
}

/* ================= NAV ================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 6px 24px rgba(10, 61, 98, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  height: 45px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  transition:
    background 0.25s,
    color 0.25s;
}
.nav-links a:hover {
  background: var(--mist);
}
.nav-links a.active {
  background: var(--ink);
  color: #fff;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    inset: 64px 0 0 0;
    height: calc(100dvh - 64px);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    padding: 16px;
    font-size: 17px;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-cta .btn span.label {
    display: none;
  }
}

/* ================= SIGNATURE MOTIF: signal arcs ================= */
.arc-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.arc-field svg {
  position: absolute;
}

.circuit-divider {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 64px 0;
  color: var(--line);
}
.circuit-divider svg {
  width: 100%;
  height: 24px;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--ink-2);
  overflow: hidden;
  padding-top: 40px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(7, 42, 69, 0.97) 20%,
    rgba(7, 42, 69, 0.82) 48%,
    rgba(10, 61, 98, 0.55) 75%,
    rgba(243, 156, 18, 0.28) 130%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.hero-content {
  max-width: 680px;
  color: #fff;
}
.hero .eyebrow {
  color: var(--accent-2);
}
.hero h1 {
  font-size: clamp(38px, 6.2vw, 68px);
  margin-top: 20px;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent-2);
}
.hero p.lead {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 56px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-stats .stat b {
  font-family: var(--font-display);
  font-size: 28px;
  display: block;
  color: #fff;
}
.hero-stats .stat span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.hero-arc {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 640px;
  max-width: 60vw;
  opacity: 0.9;
  z-index: 1;
}

/* generic page hero (services/about/contact) */
.page-hero {
  position: relative;
  background: var(--ink-2);
  color: #fff;
  overflow: hidden;
  padding: 150px 0 90px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 42, 69, 0.55), var(--ink-2) 85%);
}
.page-hero .eyebrow {
  color: var(--accent-2);
}
.page-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  color: #fff;
  margin-top: 16px;
  max-width: 760px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 16px;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.65;
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
}
.breadcrumb a:hover {
  color: #fff;
}

/* ================= TRUST STRIP ================= */
.trust {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: space-between;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent-2);
  flex-shrink: 0;
}

/* ================= OVERVIEW (split) ================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-media {
  position: relative;
}
.split-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-l);
}
.split-media .tag-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: #fff;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-m);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}
.split-media .tag-card svg {
  width: 30px;
  height: 30px;
  color: var(--accent);
  flex-shrink: 0;
}
.split-media .tag-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
}
.split-media .tag-card span {
  font-size: 12.5px;
  color: var(--slate);
}
.split-body h2 {
  font-size: clamp(26px, 3.4vw, 38px);
}
.split-body p {
  margin-top: 18px;
  color: var(--slate);
  line-height: 1.75;
  font-size: 16px;
}
.split-list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.split-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
}
.split-list svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 880px) {
  .split {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .split-media .tag-card {
    left: 16px;
  }
}

/* ================= WHY CHOOSE US ================= */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 30px 24px;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-m);
  border-color: transparent;
}
.why-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ink), var(--ink-3));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-card .ic svg {
  width: 26px;
  height: 26px;
  color: var(--accent-2);
}
.why-card h3 {
  font-size: 16.5px;
}
.why-card p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .grid-cards {
    grid-template-columns: 1fr;
  }
}

/* ================= SERVICE CARDS ================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.svc-card {
  border-radius: var(--radius-m);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-l);
}
.svc-media {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.svc-card:hover .svc-media img {
  transform: scale(1.08);
}
.svc-media .num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #fff;
  background: rgba(10, 61, 98, 0.65);
  backdrop-filter: blur(6px);
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}
.svc-body {
  padding: 24px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-body h3 {
  font-size: 19px;
}
.svc-body p {
  margin-top: 10px;
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1;
}
.svc-body .lnk {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.svc-body .lnk svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}
.svc-card:hover .lnk svg {
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ================= CTA BAND ================= */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-l);
  margin: 0 24px;
  max-width: 1192px;
  margin-inline: auto;
  padding: 76px 48px;
  text-align: center;
  color: #fff;
  background: var(--ink-2);
}
.cta-band .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.cta-band .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(7, 42, 69, 0.96),
    rgba(10, 61, 98, 0.85)
  );
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.cta-band h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  color: #fff;
}
.cta-band p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16.5px;
}
.cta-band .btn {
  margin-top: 30px;
}

/* ================= FOOTER ================= */
.footer {
  background: var(--ink-2);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand img {
  height: 45px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
}
.footer h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer ul li {
  margin-bottom: 12px;
}
.footer ul a {
  font-size: 14.5px;
  transition:
    color 0.25s,
    padding-left 0.25s;
}
.footer ul a:hover {
  color: var(--accent-2);
  padding-left: 4px;
}
.footer .contact-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  margin-bottom: 14px;
}
.footer .contact-line svg {
  width: 18px;
  height: 18px;
  color: var(--accent-2);
  flex-shrink: 0;
  margin-top: 2px;
}
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    transform 0.3s;
}
.social-row a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}
.social-row svg {
  width: 18px;
  height: 18px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= WHATSAPP FLOATING BUTTON ================= */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s;
}
.wa-float:hover {
  transform: scale(1.08);
}
.wa-float svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

/* ================= REVEAL ANIMATION ================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}
.reveal-delay-4 {
  transition-delay: 0.32s;
}

/* ================= ALT ROWS (services page) ================= */
.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.alt-row.reverse .alt-media {
  order: 2;
}
.alt-media {
  position: relative;
}
.alt-media img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-l);
}
.alt-body .eyebrow {
  margin-bottom: 16px;
}
.alt-body h2 {
  font-size: clamp(26px, 3.4vw, 36px);
}
.alt-body p.desc {
  margin-top: 16px;
  color: var(--slate);
  line-height: 1.7;
  font-size: 16px;
}
.feature-list {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.feature-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.feature-list svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 880px) {
  .alt-row,
  .alt-row.reverse .alt-media {
    grid-template-columns: 1fr;
    order: 0;
  }
  .alt-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
}

/* ================= PRODUCT CARDS ================= */
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 22px;
  text-align: center;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-m);
}
.product-card .ic {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .ic svg {
  width: 28px;
  height: 28px;
  color: var(--ink);
}
.product-card h4 {
  font-size: 15.5px;
}
.product-card p {
  font-size: 13px;
  color: var(--slate-2);
  margin-top: 6px;
}

/* ================= ABOUT PAGE ================= */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  padding: 28px 24px;
  border-radius: var(--radius-m);
  background: #fff;
  border: 1px solid var(--line);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-m);
}
.value-card .idx {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.value-card h3 {
  margin-top: 12px;
  font-size: 18px;
}
.value-card p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}
@media (max-width: 880px) {
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-m);
}
.team-photo {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--ink), var(--ink-3));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-photo svg {
  width: 64px;
  height: 64px;
  color: rgba(255, 255, 255, 0.5);
}
.team-body {
  padding: 22px;
}
.team-body h4 {
  font-size: 16.5px;
}
.team-body span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
}
.team-body p {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.6;
}
@media (max-width: 880px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* mission/vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mv-card {
  padding: 36px 32px;
  border-radius: var(--radius-l);
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--ink-3));
  position: relative;
  overflow: hidden;
}
.mv-card.alt {
  background: linear-gradient(135deg, var(--accent), #d97f06);
}
.mv-card svg.wm {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 140px;
  height: 140px;
  opacity: 0.14;
}
.mv-card h3 {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.mv-card p {
  margin-top: 14px;
  font-size: 19px;
  line-height: 1.6;
  font-family: var(--font-display);
  font-weight: 500;
}
@media (max-width: 760px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= CONTACT PAGE ================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.contact-card:hover {
  box-shadow: var(--shadow-s);
  transform: translateY(-2px);
}
.contact-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card .ic svg {
  width: 22px;
  height: 22px;
  color: var(--ink);
}
.contact-card h4 {
  font-size: 15px;
}
.contact-card p,
.contact-card a {
  font-size: 14px;
  color: var(--slate);
  margin-top: 4px;
}
.contact-card a:hover {
  color: var(--ink);
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 38px;
  box-shadow: var(--shadow-s);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--mist);
  transition:
    border-color 0.25s,
    background 0.25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.map-box {
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-s);
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

/* ================= MISC ================= */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 760px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mist);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.tag-pill svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
}
