/* ==========================================================================
   PengHong — Computer Systems Design and Integrated Systems Engineering
   Unique palette: Midnight Navy base + Coral primary + Aqua secondary
   ========================================================================== */

:root {
  --bg: #0B0F17;
  --bg-soft: #0F1420;
  --surface: #151C2B;
  --surface-2: #1B2334;
  --border: #273147;
  --border-soft: #212B3E;
  --ink: #EEF2F8;
  --muted: #9BA7BB;
  --coral: #FF6B57;
  --coral-deep: #E8553F;
  --aqua: #3FD6C4;
  --aqua-deep: #2BB8A8;
  --shadow: 0 20px 50px -18px rgba(0, 0, 0, 0.55);
  --sidebar-w: 264px;
  --radius: 16px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, "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: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--coral);
  color: var(--bg);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 200;
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
}

/* ==========================================================================
   Layout shell — left vertical sidebar + main content column
   ========================================================================== */

.site-shell {
  display: block;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 28px;
  background: var(--bg-soft);
  border-right: 1px solid var(--border-soft);
  z-index: 120;
}

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

.sidebar-overlay {
  display: none;
}

/* Brand */
.brand {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
}

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

.sidebar-brand {
  margin-bottom: 40px;
}

.sidebar .tagline {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* Sidebar nav */
.side-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.side-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.side-nav a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.side-nav a:hover,
.side-nav a.active {
  color: var(--ink);
  background: var(--surface);
}

.side-nav a:hover::before,
.side-nav a.active::before {
  background: var(--coral);
  transform: scale(1.35);
}

.sidebar-footer {
  border-top: 1px solid var(--border-soft);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-footer a {
  color: var(--muted);
  font-size: 13px;
  transition: color 0.2s ease;
}

.sidebar-footer a:hover {
  color: var(--coral);
}

/* Mobile top bar */
.mobile-bar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 110;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--coral);
  color: #fff;
}

.btn-primary:hover {
  background: var(--coral-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--aqua);
  color: var(--aqua);
}

/* ==========================================================================
   Hero — asymmetric two-column
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 96px 0 80px;
  background:
    radial-gradient(900px 500px at 88% -10%, rgba(63, 214, 196, 0.12), transparent 60%),
    radial-gradient(700px 480px at 12% 110%, rgba(255, 107, 87, 0.14), transparent 55%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--aqua);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 4px rgba(63, 214, 196, 0.18);
}

.hero-section h1 {
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: -1.5px;
  font-weight: 800;
  margin: 24px 0 22px;
}

.hero-section h1 .accent {
  color: var(--coral);
}

.hero-section h1 .accent-aqua {
  color: var(--aqua);
}

.hero-copy {
  color: var(--muted);
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 44px;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
}

.hero-meta-item strong {
  font-size: 15px;
  color: var(--ink);
}

.hero-meta-item span {
  font-size: 13px;
  color: var(--muted);
}

/* Hero visual — floating system panel */
.hero-visual {
  position: relative;
}

.system-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.system-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 16px;
}

.system-panel-head .label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.status-pills {
  display: flex;
  gap: 8px;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--aqua);
  background: var(--bg);
  border: 1px solid var(--border);
}

.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aqua);
}

.bar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bar-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.bar-item .name {
  font-size: 14px;
  color: var(--muted);
}

.bar-item .val {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.bar-track {
  grid-column: 1 / -1;
  height: 8px;
  background: var(--bg);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--aqua));
}

.floating-card {
  position: absolute;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  font-size: 14px;
}

.floating-card strong {
  display: block;
  font-size: 24px;
  color: var(--coral);
}

.floating-card span {
  color: var(--muted);
  font-size: 12px;
}

.fc-uptime {
  top: -26px;
  right: -18px;
}

.fc-throughput {
  bottom: -26px;
  left: -22px;
}

/* ==========================================================================
   Stat band (counters)
   ========================================================================== */

.stat-band {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  padding: 38px 32px;
  border-right: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-cell:last-child {
  border-right: none;
}

.stat-cell .num {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
}

.stat-cell .num .suffix {
  color: var(--coral);
}

.stat-cell .stat-label {
  font-size: 14px;
  color: var(--muted);
}

/* ==========================================================================
   Section headings
   ========================================================================== */

.section-head {
  max-width: 660px;
  margin-bottom: 56px;
}

.section-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -1px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

/* ==========================================================================
   Services — numbered list rows
   ========================================================================== */

.services-section {
  padding: 96px 0;
  background: var(--bg);
}

.service-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 38px 0;
  border-top: 1px solid var(--border-soft);
  align-items: start;
}

.service-row:last-child {
  border-bottom: 1px solid var(--border-soft);
}

.service-num {
  font-size: 15px;
  font-weight: 800;
  color: var(--aqua);
  letter-spacing: 1px;
}

.service-row h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.service-row p {
  color: var(--muted);
  font-size: 16px;
  max-width: 720px;
}

.service-row .service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.service-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ==========================================================================
   Statement band (full-width)
   ========================================================================== */

.statement-band {
  background:
    radial-gradient(800px 400px at 10% 20%, rgba(255, 107, 87, 0.10), transparent 60%),
    radial-gradient(700px 400px at 92% 80%, rgba(63, 214, 196, 0.10), transparent 55%),
    var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 110px 0;
}

.statement-band .statement {
  font-size: 38px;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
  max-width: 900px;
}

.statement-band .statement em {
  font-style: normal;
  color: var(--coral);
}

.statement-band .statement .aqua {
  color: var(--aqua);
}

.statement-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.statement-author .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--aqua));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 18px;
}

.statement-author .who {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.statement-author .role {
  font-size: 13px;
  color: var(--muted);
}

/* ==========================================================================
   Capabilities — bento grid
   ========================================================================== */

.capabilities-section {
  padding: 96px 0;
  background: var(--bg);
}

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

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 30px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.bento-card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.bento-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.bento-card p {
  color: var(--muted);
  font-size: 15px;
}

/* ==========================================================================
   Process — vertical timeline
   ========================================================================== */

.process-section {
  padding: 96px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.timeline {
  position: relative;
  max-width: 820px;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--coral), var(--aqua));
}

.timeline-step {
  position: relative;
  padding: 0 0 40px 24px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--aqua);
}

.timeline-step .step-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--coral);
}

.timeline-step h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 6px 0 8px;
}

.timeline-step p {
  color: var(--muted);
  font-size: 16px;
  max-width: 640px;
}

/* ==========================================================================
   Industries — horizontal scroll row
   ========================================================================== */

.industries-section {
  padding: 96px 0;
  background: var(--bg);
  overflow: hidden;
}

.scroll-row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
}

.scroll-row::-webkit-scrollbar {
  height: 8px;
}

.scroll-row::-webkit-scrollbar-track {
  background: var(--surface);
  border-radius: 999px;
}

.scroll-row::-webkit-scrollbar-thumb {
  background: var(--coral);
  border-radius: 999px;
}

.industry-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
}

.industry-card .icon {
  font-size: 30px;
  margin-bottom: 16px;
}

.industry-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.industry-card p {
  color: var(--muted);
  font-size: 14px;
}

/* ==========================================================================
   Testimonials — quote slider
   ========================================================================== */

.voices-section {
  padding: 96px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.quote-slider {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.quote-slide {
  display: none;
  text-align: center;
  padding: 20px 8px;
}

.quote-slide.active {
  display: block;
}

.quote-slide blockquote {
  font-size: 26px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.quote-slide blockquote::before {
  content: "";
  display: block;
  width: 46px;
  height: 34px;
  margin: 0 auto 22px;
  background:
    linear-gradient(135deg, var(--coral) 50%, transparent 50%) 0 0 / 12px 12px;
}

.quote-slide .cite {
  margin-top: 24px;
  font-size: 15px;
  color: var(--muted);
}

.quote-slide .cite strong {
  color: var(--aqua);
  font-weight: 700;
}

.quote-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.quote-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.quote-dot.active {
  background: var(--coral);
  transform: scale(1.3);
}

/* ==========================================================================
   Contact — split form + info
   ========================================================================== */

.contact-section {
  padding: 96px 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item .icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-info-item .label {
  font-size: 13px;
  color: var(--muted);
}

.contact-info-item .value {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.contact-info-item a.value:hover {
  color: var(--aqua);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 15px;
  color: var(--ink);
  font-family: inherit;
  transition: border-color 0.2s ease;
}

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

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

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

.form-status {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--aqua);
  min-height: 20px;
}

/* ==========================================================================
   Footer — newsletter band + multi-column
   ========================================================================== */

.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
}

.newsletter-band {
  padding: 64px 0;
  border-bottom: 1px solid var(--border-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.newsletter-band h2 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 10px;
}

.newsletter-band p {
  color: var(--muted);
}

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

.newsletter-form input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--ink);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--coral);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 48px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--muted);
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--coral);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0 32px;
  border-top: 1px solid var(--border-soft);
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom .legal-links {
  display: flex;
  gap: 22px;
}

.footer-bottom a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--aqua);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

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

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

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

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

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-section h1 {
    font-size: 46px;
  }

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

  .bento-card.wide {
    grid-column: span 2;
  }

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

@media (max-width: 1023px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 115;
  }

  .sidebar-overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

  .main-content {
    margin-left: 0;
  }

  .mobile-bar {
    display: flex;
  }

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

  .stat-cell:nth-child(2) {
    border-right: none;
  }

  .stat-cell {
    border-bottom: 1px solid var(--border-soft);
  }

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

@media (max-width: 640px) {
  .hero-section {
    padding: 64px 0 56px;
  }

  .hero-section h1 {
    font-size: 36px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 14px;
  }

  .section-head h2 {
    font-size: 30px;
  }

  .statement-band .statement {
    font-size: 26px;
  }

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

  .stat-cell {
    border-right: none;
  }

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

  .bento-card.wide {
    grid-column: span 1;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .newsletter-band {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

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

  .container {
    padding: 0 22px;
  }

  .floating-card {
    position: static;
    margin-top: 16px;
  }
}
