/* ============================================================
   JiangXia — Computer Systems Design & Integrated Systems
   Light theme · violet / plum accent · warm gold secondary
   ============================================================ */

:root {
  --bg: #F7F4FB;
  --bg-soft: #EFEAF8;
  --bg-card: #FFFFFF;
  --ink: #221B38;
  --ink-soft: #4A3E63;
  --muted: #6B6080;
  --violet: #6D4FC1;
  --violet-deep: #5A3FA8;
  --violet-dark: #4A3594;
  --violet-tint: #EFEAF8;
  --gold: #D9A441;
  --gold-soft: #F4E7C8;
  --line: #E4DDF0;
  --green: #2E9E6B;
  --shadow-sm: 0 6px 18px rgba(74, 53, 148, 0.08);
  --shadow-md: 0 18px 45px rgba(74, 53, 148, 0.14);
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1180px;
}

* {
  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;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   FLOATING PILL NAV
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 24px 12px;
  background: linear-gradient(to bottom, #F7F4FB 0%, #F7F4FB 72%, rgba(247, 244, 251, 0) 100%);
}

.pill-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 12px 10px 22px;
  background-color: var(--bg-card);
  border: 1px solid var(--violet-tint);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.pill-brand {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--violet-deep);
  white-space: nowrap;
}

.pill-brand:hover {
  color: var(--violet);
}

.pill-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
}

.pill-links a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.pill-links a:hover {
  background-color: var(--violet-tint);
  color: var(--violet-deep);
}

.pill-links a.active {
  background-color: var(--violet-tint);
  color: var(--violet-deep);
}

.pill-cta {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 999px;
  background-color: var(--violet);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.pill-cta:hover {
  background-color: var(--violet-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-card);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--violet-deep);
  border-radius: 2px;
}

.pill-nav.open .pill-links {
  display: flex;
}

/* ============================================================
   HERO — ARCHITECTURE DIAGRAM
   ============================================================ */

.arch-hero {
  position: relative;
  background: linear-gradient(135deg, #EDE6FA 0%, #F7F4FB 48%, #FFFFFF 100%);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  padding: 72px 0 130px;
  margin-top: 8px;
}

.arch-hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid var(--violet-tint);
  border-radius: 999px;
  background-color: #FFFFFF;
  color: var(--violet-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--green);
}

.arch-hero h1 {
  margin-top: 22px;
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 800;
}

.arch-hero h1 em {
  font-style: normal;
  color: var(--violet-deep);
}

.arch-hero .hero-copy {
  margin-top: 20px;
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background-color: var(--violet);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--violet-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--violet-deep);
  color: var(--violet-deep);
}

.btn-outline:hover {
  background-color: var(--violet-tint);
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.arch-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 30px;
  border: 1px solid var(--line);
}

.arch-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.arch-card-title {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.status-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--green);
  box-shadow: 0 0 0 4px rgba(46, 158, 107, 0.18);
}

.diagram {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.82;
  background:
    radial-gradient(circle at 20% 20%, var(--violet-tint) 0%, transparent 55%),
    radial-gradient(circle at 80% 80%, #F4E7C8 0%, transparent 55%),
    #FBF9FE;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.diagram-line {
  position: absolute;
  background-color: var(--violet-tint);
  border: 1px solid #D9CFF0;
  border-radius: 2px;
}

.diagram-line.h {
  top: 50%;
  left: 9%;
  width: 82%;
  height: 2px;
  transform: translateY(-50%);
}

.diagram-line.v {
  left: 50%;
  top: 9%;
  width: 2px;
  height: 82%;
  transform: translateX(-50%);
}

.node {
  position: absolute;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 2px solid var(--violet);
  display: flex;
  align-items: center;
  justify-content: center;
}

.node-center {
  top: 50%;
  left: 50%;
  width: 66px;
  height: 66px;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  border: none;
  box-shadow: 0 10px 24px rgba(90, 63, 168, 0.35);
}

.node-center .gear {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  position: relative;
}

.node-center .gear::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #FFFFFF;
  transform: translate(-50%, -50%);
}

.node-sat {
  width: 38px;
  height: 38px;
}

.node-sat .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--violet-deep);
}

.node-sat.n-top { top: 6%; left: 50%; transform: translateX(-50%); }
.node-sat.n-bottom { bottom: 6%; left: 50%; transform: translateX(-50%); }
.node-sat.n-left { left: 6%; top: 50%; transform: translateY(-50%); }
.node-sat.n-right { right: 6%; top: 50%; transform: translateY(-50%); }

.chip {
  position: absolute;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
}

.chip-cloud {
  top: 12%;
  right: 8%;
  background-color: #FFFFFF;
  color: var(--violet-deep);
}

.chip-edge {
  bottom: 12%;
  left: 8%;
  background-color: var(--gold-soft);
  color: #8A6215;
  border-color: var(--gold-soft);
}

.metric-chips {
  position: relative;
  margin-top: -26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 2;
}

.metric-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 12px 20px;
}

.metric-chip .val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--violet-deep);
}

.metric-chip .lbl {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.25;
}

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

.statement-row {
  padding: 90px 0 30px;
}

.statement-row .container {
  max-width: 960px;
  text-align: center;
}

.gold-rule {
  width: 64px;
  height: 4px;
  margin: 0 auto 28px;
  border-radius: 2px;
  background-color: var(--gold);
}

.statement-row p {
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.statement-row p em {
  font-style: normal;
  color: var(--violet-deep);
}

/* ============================================================
   NUMBERED CAPABILITY GRID
   ============================================================ */

.capability-grid {
  padding: 80px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-deep);
}

.kicker span {
  color: var(--gold);
}

.section-head h2 {
  margin-top: 12px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 800;
}

.section-head p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.cap-card {
  position: relative;
  background-color: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cap-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 3px;
  border-radius: 2px;
  background-color: var(--violet);
}

.cap-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cap-num {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--violet-tint);
  letter-spacing: -0.03em;
}

.cap-card h3 {
  margin-top: 10px;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.cap-card p {
  margin-top: 10px;
  color: var(--ink-soft);
}

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */

.process-timeline {
  padding: 80px 0;
  background-color: var(--violet-tint);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background-color: #D9CFF0;
}

.tl-step {
  position: relative;
  text-align: center;
  padding: 0 8px;
}

.tl-dot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 2px solid var(--violet);
  color: var(--violet-deep);
  font-weight: 800;
  font-size: 1.1rem;
}

.tl-step h3 {
  margin-top: 16px;
  font-size: 1.1rem;
  color: var(--ink);
}

.tl-step p {
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ============================================================
   INDUSTRIES MARQUEE
   ============================================================ */

.industries-marquee {
  padding: 80px 0 70px;
  overflow: hidden;
}

.industries-marquee .section-head {
  margin-bottom: 36px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.marquee {
  position: relative;
  overflow: hidden;
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, #F7F4FB, rgba(247, 244, 251, 0));
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, #F7F4FB, rgba(247, 244, 251, 0));
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-track span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink-soft);
  white-space: nowrap;
}

.marquee-track .sep {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--gold);
  flex: 0 0 auto;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   METRICS BAND
   ============================================================ */

.metrics-band {
  padding: 70px 0;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.metric {
  position: relative;
  padding-bottom: 16px;
}

.metric .num {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.metric .num sup {
  font-size: 0.5em;
  color: var(--violet-deep);
}

.metric::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background-color: var(--gold);
}

.metric .label {
  margin-top: 12px;
  font-weight: 700;
  color: var(--ink-soft);
}

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

.faq-section {
  padding: 80px 0;
  background-color: var(--bg-soft);
}

.faq-section .container {
  max-width: 840px;
}

.faq-section .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.05rem;
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--violet-tint);
  color: var(--violet-deep);
  font-weight: 800;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--violet);
  color: #FFFFFF;
}

.faq-item .faq-body {
  padding: 0 26px 24px;
  color: var(--ink-soft);
}

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  padding: 90px 0;
  background-color: var(--violet);
}

.cta-band .container {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: center;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: #FFFFFF;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.cta-band p {
  margin-top: 14px;
  color: #E6DFF7;
  max-width: 560px;
  font-size: 1.05rem;
}

.cta-band .btn-primary {
  background-color: #FFFFFF;
  color: var(--violet-dark);
  justify-self: end;
}

.cta-band .btn-primary:hover {
  background-color: var(--gold-soft);
  color: #5C4210;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background-color: #1D1730;
  color: #D9D2E8;
}

.newsletter-band {
  padding: 56px 0 48px;
  border-bottom: 1px solid rgba(233, 226, 246, 0.14);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}

.newsletter-inner h2 {
  color: #FFFFFF;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}

.newsletter-inner p {
  margin-top: 8px;
  color: #B9AEE0;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid #45356B;
  background-color: #2A2240;
  color: #FFFFFF;
  font-size: 0.95rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #9A8FBF;
}

.newsletter-form button {
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  background-color: var(--violet);
  color: #FFFFFF;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.newsletter-form button:hover {
  background-color: var(--violet-dark);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 52px 0;
}

.footer-col h3 {
  color: #FFFFFF;
  font-size: 1.02rem;
  margin-bottom: 18px;
}

.footer-col p {
  color: #B9AEE0;
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: #B9AEE0;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: #FFFFFF;
}

.footer-brand-word {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #B9AEE0;
  font-size: 0.92rem;
}

.footer-contact .ic {
  color: var(--gold);
  font-weight: 700;
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(233, 226, 246, 0.14);
  text-align: center;
  color: #9A8FBF;
  font-size: 0.86rem;
}

/* ============================================================
   SECONDARY PAGE HERO
   ============================================================ */

.page-hero {
  background: linear-gradient(135deg, #EDE6FA 0%, #F7F4FB 55%, #FFFFFF 100%);
  padding: 64px 0 60px;
  margin-top: 8px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 800;
}

.page-hero p {
  margin-top: 14px;
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

.services-section {
  padding: 70px 0;
}

.services-lead {
  max-width: 760px;
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.service-block {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-block:last-child {
  border-bottom: none;
}

.service-index {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.service-block h2 {
  font-size: 1.55rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.service-block p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.service-block ul {
  margin-top: 14px;
  padding-left: 0;
  list-style: none;
}

.service-block ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.service-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--violet);
}

.process-overview {
  margin-top: 70px;
  background-color: var(--violet-tint);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.process-overview h2 {
  color: var(--ink);
  font-size: 1.6rem;
}

.process-overview ol {
  margin-top: 22px;
  display: grid;
  gap: 14px;
  counter-reset: step;
  list-style: none;
}

.process-overview ol li {
  position: relative;
  padding-left: 54px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.process-overview ol li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--violet);
  color: #FFFFFF;
  font-weight: 700;
}

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

.contact-section {
  padding: 70px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info h2 {
  font-size: 1.5rem;
  color: var(--ink);
}

.info-card {
  background-color: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 18px;
}

.info-card .info-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.info-card p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.info-card a {
  color: var(--violet-deep);
  font-weight: 600;
}

.hours-list {
  margin-top: 10px;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--line);
}

.hours-list li:last-child {
  border-bottom: none;
}

.contact-form {
  background-color: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-form h2 {
  font-size: 1.5rem;
  color: var(--ink);
}

.form-row {
  margin-top: 20px;
}

.form-row label {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  background-color: #FBF9FE;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--violet);
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  display: none;
}

.form-status.show {
  display: block;
}

.form-status.ok {
  background-color: #E8F6EF;
  color: #1F7A4D;
}

.form-status.err {
  background-color: #FBE9E9;
  color: #A33A3A;
}

.faq-small {
  margin-top: 40px;
}

.faq-small h3 {
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 16px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

@media (max-width: 980px) {
  .arch-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .cap-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }

  .timeline::before {
    display: none;
  }

  .metrics-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .cta-band .container,
  .newsletter-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-band .btn-primary {
    justify-self: start;
  }

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

  .service-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .pill-nav {
    flex-wrap: wrap;
  }

  .pill-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    order: 3;
    margin: 8px 0 4px;
    padding: 6px;
    background-color: #FFFFFF;
    border-radius: 22px;
  }

  .pill-nav.open .pill-links {
    display: flex;
  }

  .pill-links a {
    text-align: center;
    padding: 12px;
  }

  .pill-cta {
    display: none;
  }

  .pill-nav.open .pill-cta {
    display: block;
    text-align: center;
    order: 4;
    margin-top: 6px;
  }

  .nav-toggle {
    display: flex;
  }

  .arch-hero {
    padding: 48px 0 110px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }
}
