/* ===== Smerida — Bold Brutalist (per STYLE-GUIDE.md in v4/) ===== */

:root {
  /* Foundation */
  --ink: #0a0a0a;
  --paper: #ffffff;
  --paper-soft: #f5f5f5;
  --paper-tint: #ebebeb;

  /* Primary accent */
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-soft: #dbeafe;

  /* Secondary tints */
  --lime: #d9f99d;
  --pink: #fbcfe8;
  --amber: #fde68a;

  /* Tokens */
  --border: 2px solid var(--ink);
  --shadow-sm: 3px 3px 0 0 var(--ink);
  --shadow: 4px 4px 0 0 var(--ink);
  --shadow-md: 6px 6px 0 0 var(--ink);
  --shadow-lg: 8px 8px 0 0 var(--ink);
  --shadow-xl: 12px 12px 0 0 var(--ink);

  --font-sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto,
    sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.1s ease;
}

a:hover {
  color: var(--accent);
}

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

ul {
  list-style: none;
}

/* ===== Headings ===== */
h1,
h2,
h3,
h4 {
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
}

h1 {
  font-size: clamp(3rem, 9vw, 7rem);
  letter-spacing: -0.05em;
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ===== Inline typography utilities ===== */
.marker {
  background: var(--lime);
  padding: 0 8px;
  display: inline-block;
}

.hero h1 .marker {
  padding: 0 12px;
}

.underline {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 8px;
  text-underline-offset: 8px;
}

.hero h1 .underline {
  text-decoration-thickness: 10px;
  text-underline-offset: 12px;
}

/* ===== Container ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== Header ===== */
.site-header {
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  border: 2px solid var(--ink);
  font-weight: 900;
  color: var(--paper);
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-tag {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--ink);
  padding: 1px 5px;
  margin-top: 3px;
  align-self: flex-start;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.nav a:hover {
  color: var(--accent);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  font-size: 0.95rem;
  font-weight: 700;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.1s ease, box-shadow 0.1s ease,
    background 0.1s ease, color 0.1s ease;
  text-decoration: none;
  font-family: inherit;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
  color: var(--ink);
  text-decoration: none;
}

.btn:active {
  transform: translate(0, 0);
  box-shadow: 0 0 0 0 var(--ink);
}

.btn-primary {
  background: var(--accent);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--paper);
}

.btn-lime {
  background: var(--lime);
}

.btn-lg {
  height: 56px;
  padding: 0 32px;
  font-size: 1rem;
}

/* ===== Marquee strip ===== */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 12px 0;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 40px;
}

.marquee-track span::after {
  content: "✦";
  color: var(--accent);
}

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

/* ===== Sections ===== */
section {
  padding: 96px 0;
  border-bottom: 2px solid var(--ink);
}

.section-head {
  margin-bottom: 64px;
  max-width: 900px;
}

.eyebrow {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.section-head h2 {
  margin-bottom: 20px;
}

.section-head .lead {
  font-size: 1.15rem;
  color: #404040;
  max-width: 620px;
}

/* ===== Hero ===== */
.hero {
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--accent);
  border: 2px solid var(--ink);
  transform: rotate(15deg);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: var(--lime);
  border: 2px solid var(--ink);
  transform: rotate(-20deg);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hero h1 {
  margin-bottom: 32px;
  max-width: 1100px;
}

.hero p.subhead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #404040;
  margin-bottom: 40px;
  max-width: 720px;
  font-weight: 500;
}

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

/* ===== Services grid (bordered) ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
}

.service-card {
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 36px;
  background: var(--paper);
  position: relative;
  transition: background 0.15s ease;
}

.service-card:nth-child(3n) {
  border-right: none;
}

.service-card:nth-last-child(-n + 3) {
  border-bottom: none;
}

.service-card:hover {
  background: var(--paper-soft);
}

.service-card.tinted-blue {
  background: var(--accent-soft);
}

.service-card.tinted-lime {
  background: var(--lime);
}

.service-card.tinted-pink {
  background: var(--pink);
}

.service-card.tinted-amber {
  background: var(--amber);
}

.service-num {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  display: block;
}

.service-card h3 {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 12px;
}

.service-card p {
  color: #1a1a1a;
  font-size: 0.95rem;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 8px 14px;
  background: var(--paper);
  transition: all 0.1s ease;
}

.service-link:hover {
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}

.service-card.flagship .service-link {
  background: var(--ink);
  color: var(--paper);
}

.service-card.flagship .service-link:hover {
  background: var(--accent);
  border-color: var(--ink);
}

.service-card .tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
}

/* ===== Stats banner ===== */
.stats {
  background: var(--lime);
  padding: 64px 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}

.stat-value {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}

/* ===== Approach ===== */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.approach-item {
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.approach-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 0 var(--ink);
}

.approach-item:nth-child(2) {
  background: var(--lime);
}

.approach-item:nth-child(3) {
  background: var(--accent-soft);
}

.approach-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.approach-item h3 {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.05;
}

.approach-item p {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ===== Featured paySmerida ===== */
.featured {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.featured::before {
  content: "✦";
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.5;
}

.featured::after {
  content: "→";
  position: absolute;
  bottom: 40px;
  left: 60px;
  font-size: 4rem;
  color: var(--lime);
  opacity: 0.5;
}

.featured .eyebrow {
  background: var(--accent);
  color: var(--paper);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.featured h2 {
  color: var(--paper);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin: 16px 0 24px;
}

.featured h2 .marker {
  background: var(--lime);
  color: var(--ink);
  padding: 0 10px;
}

.featured p {
  color: #d4d4d4;
  font-size: 1.1rem;
  margin-bottom: 32px;
  font-weight: 500;
}

.featured .btn {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--paper);
  box-shadow: 4px 4px 0 0 var(--paper);
}

.featured .btn:hover {
  box-shadow: 6px 6px 0 0 var(--paper);
  background: var(--paper);
  color: var(--ink);
}

/* Receipt card */
.receipt {
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--paper);
  padding: 32px;
  box-shadow: 8px 8px 0 0 var(--accent);
}

.receipt-head {
  border-bottom: 2px solid var(--ink);
  padding-bottom: 16px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.receipt-head .title {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.receipt-head .tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--ink);
  color: var(--paper);
  padding: 3px 8px;
}

.receipt-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--ink);
}

.receipt-row:last-child {
  border-bottom: none;
}

.receipt-row .k {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #404040;
}

.receipt-row .v {
  font-weight: 700;
  font-size: 1rem;
}

.receipt-row .v.amount {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.receipt-row .v.status {
  background: var(--lime);
  border: 2px solid var(--ink);
  padding: 2px 8px;
  font-size: 0.85rem;
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--paper);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.testimonial:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 0 var(--ink);
}

.testimonial:nth-child(2) {
  background: var(--amber);
}

.testimonial::before {
  content: "❝";
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 0.5;
  display: block;
  margin-bottom: 12px;
}

.testimonial:nth-child(2)::before {
  color: var(--ink);
}

.quote {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 24px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 2px solid var(--ink);
}

.avatar {
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
  border: 2px solid var(--ink);
}

.author-meta .name {
  display: block;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.author-meta .role {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #404040;
  margin-top: 2px;
}

/* ===== Industries (bordered grid) ===== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
}

.industry-card {
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 28px 16px;
  background: var(--paper);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background 0.15s ease;
}

.industry-card:nth-child(4n) {
  border-right: none;
}

.industry-card:nth-last-child(-n + 4) {
  border-bottom: none;
}

.industry-card:hover {
  background: var(--lime);
}

.industry-icon {
  font-size: 1.5rem;
}

.industry-card .label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ===== FAQ ===== */
.faq {
  background: var(--paper-soft);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--paper);
  border: 2px solid var(--ink);
  margin-bottom: -2px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.01em;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] {
  background: var(--accent-soft);
}

.faq-answer {
  padding: 0 24px 24px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #1a1a1a;
}

/* ===== Final CTA ===== */
.cta-final {
  background: var(--accent);
  color: var(--paper);
  text-align: center;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.cta-final h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin-bottom: 24px;
  color: var(--paper);
}

.cta-final h2 .marker {
  background: var(--lime);
  color: var(--ink);
  padding: 0 12px;
}

.cta-final p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.cta-final .btn {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 5px 5px 0 0 var(--ink);
}

.cta-final .btn:hover {
  box-shadow: 7px 7px 0 0 var(--ink);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-block .brand {
  color: var(--paper);
  margin-bottom: 20px;
}

.footer-brand-block p {
  font-size: 0.95rem;
  color: #a3a3a3;
  max-width: 320px;
  font-weight: 500;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lime);
  margin-bottom: 20px;
}

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

.footer-col a {
  color: var(--paper);
  font-size: 0.95rem;
  font-weight: 500;
}

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

.footer-bottom {
  border-top: 2px solid #262626;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #a3a3a3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== Under Construction Page ===== */
.uc-wrap {
  min-height: calc(100vh - 76px - 105px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 24px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.uc-wrap::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: var(--accent);
  border: 2px solid var(--ink);
  transform: rotate(12deg);
}

.uc-wrap::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: var(--lime);
  border: 2px solid var(--ink);
  transform: rotate(-18deg);
}

.uc-card {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 56px 40px;
  box-shadow: var(--shadow-lg);
}

.uc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  background: var(--ink);
  color: var(--paper);
  font-size: 2rem;
  margin-bottom: 24px;
  border: 2px solid var(--ink);
}

.uc-card h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 16px;
  line-height: 0.95;
}

.uc-card p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 32px;
  color: #1a1a1a;
}

/* ===== Focus visible (accessibility) ===== */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
  .hero-tag .dot {
    animation: none;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card:nth-child(3n) {
    border-right: 2px solid var(--ink);
  }
  .service-card:nth-child(2n) {
    border-right: none;
  }
  .service-card:nth-last-child(-n + 3) {
    border-bottom: 2px solid var(--ink);
  }
  .service-card:nth-last-child(-n + 2) {
    border-bottom: none;
  }

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

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }
  .industry-card:nth-child(4n) {
    border-right: 2px solid var(--ink);
  }
  .industry-card:nth-child(2n) {
    border-right: none;
  }

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

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

  .hero {
    padding: 56px 0 64px;
  }

  .nav {
    display: none;
  }

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

  .service-card,
  .industry-card {
    border-right: none !important;
  }

  .service-card {
    border-bottom: 2px solid var(--ink) !important;
  }

  .service-card:last-child {
    border-bottom: none !important;
  }

  .industry-card {
    border-bottom: 2px solid var(--ink) !important;
  }

  .industry-card:last-child {
    border-bottom: none !important;
  }

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

  .container {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .hero .actions,
  .cta-final .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lg {
    width: 100%;
  }

  .uc-card {
    padding: 40px 24px;
  }
}
