.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  color: #fff;
  background: var(--primary);
}

.skip-link:focus {
  transform: translateY(0);
}

.landing-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgba(99, 102, 241, 0.12), transparent 24%),
    radial-gradient(circle at 92% 15%, rgba(14, 165, 233, 0.08), transparent 22%),
    #fff;
}

.landing-navbar {
  padding-top: 12px;
  padding-bottom: 12px;
}

.landing-navigation {
  gap: 3px;
}

.landing-navigation .nav-link {
  font-size: 0.88rem;
}

.landing-nav-cta {
  margin-left: 8px;
}

.landing-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}

.landing-menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--text);
}

.button-large {
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 12px;
}

.upgraded-hero {
  min-height: 720px;
  padding-top: 85px;
  padding-bottom: 95px;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.98fr);
  gap: 70px;
}

.upgraded-hero .landing-hero-content h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 5.4vw, 4.7rem);
  line-height: 1.04;
}

.upgraded-hero .landing-hero-content h1 span {
  color: var(--primary);
}

.hero-contact-note {
  margin: 14px 0 0;
  font-size: 0.82rem;
}

.pcb-visual {
  position: relative;
  min-height: 500px;
}

.pcb-glow {
  position: absolute;
  inset: 12% 10%;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.2);
  filter: blur(70px);
}

.pcb-window {
  position: absolute;
  z-index: 2;
  inset: 40px 0 35px 20px;
  overflow: hidden;
  transform: perspective(1200px) rotateY(-7deg) rotateX(2deg);
  border: 1px solid rgba(199, 210, 254, 0.85);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 35px 80px rgba(49, 46, 129, 0.2);
}

.pcb-window-header,
.pcb-window-footer {
  display: flex;
  align-items: center;
  color: var(--text-soft);
  font-size: 0.74rem;
  font-weight: 700;
}

.pcb-window-header {
  height: 52px;
  gap: 15px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
}

.pcb-window-header small {
  margin-left: auto;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.window-dots span:first-child {
  background: #f87171;
}

.window-dots span:nth-child(2) {
  background: #fbbf24;
}

.window-dots span:last-child {
  background: #4ade80;
}

.pcb-board {
  position: relative;
  height: 350px;
  margin: 24px;
  overflow: hidden;
  border: 8px solid #064e3b;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20px 20px, #fbbf24 0 3px, transparent 4px),
    linear-gradient(135deg, rgba(52, 211, 153, 0.15), transparent 45%),
    #047857;
  background-size: 38px 38px, auto, auto;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.12),
    0 18px 40px rgba(6, 78, 59, 0.25);
}

.pcb-label {
  position: absolute;
  top: 16px;
  left: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pcb-chip {
  position: absolute;
  z-index: 4;
  border: 4px solid #1e293b;
  border-radius: 8px;
  background: #0f172a;
  box-shadow: 0 8px 15px rgba(15, 23, 42, 0.35);
}

.pcb-chip::before,
.pcb-chip::after {
  position: absolute;
  left: -12px;
  width: calc(100% + 24px);
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    #d1d5db 0 5px,
    transparent 5px 12px
  );
  content: "";
}

.pcb-chip::before {
  top: 10px;
}

.pcb-chip::after {
  bottom: 10px;
}

.pcb-chip-main {
  top: 105px;
  left: 39%;
  width: 105px;
  height: 105px;
}

.pcb-chip-main span {
  position: absolute;
  inset: 18px;
  border: 1px solid #334155;
  border-radius: 4px;
}

.pcb-chip-small {
  right: 55px;
  bottom: 55px;
  width: 65px;
  height: 58px;
}

.pcb-port {
  position: absolute;
  z-index: 3;
  width: 40px;
  height: 90px;
  border: 5px solid #475569;
  background: #94a3b8;
}

.pcb-port-left {
  top: 120px;
  left: -9px;
  border-radius: 0 8px 8px 0;
}

.pcb-port-right {
  top: 75px;
  right: -9px;
  border-radius: 8px 0 0 8px;
}

.pcb-trace {
  position: absolute;
  z-index: 2;
  height: 3px;
  transform-origin: left;
  background: #fbbf24;
  box-shadow: 0 0 4px rgba(251, 191, 36, 0.7);
}

.trace-one {
  top: 157px;
  left: 33px;
  width: 155px;
}

.trace-two {
  top: 235px;
  left: 110px;
  width: 220px;
  transform: rotate(-18deg);
}

.trace-three {
  top: 100px;
  left: 220px;
  width: 160px;
  transform: rotate(20deg);
}

.trace-four {
  top: 280px;
  left: 245px;
  width: 130px;
  transform: rotate(8deg);
}

.pcb-node {
  position: absolute;
  z-index: 3;
  width: 15px;
  height: 15px;
  border: 3px solid #fde68a;
  border-radius: 50%;
  background: #b45309;
}

.node-one {
  top: 149px;
  left: 105px;
}

.node-two {
  top: 215px;
  left: 170px;
}

.node-three {
  top: 93px;
  right: 98px;
}

.node-four {
  right: 145px;
  bottom: 62px;
}

.node-five {
  left: 80px;
  bottom: 45px;
}

.pcb-holes span {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 5px solid #d1d5db;
  border-radius: 50%;
  background: #1e293b;
}

.pcb-holes span:first-child {
  top: 18px;
  right: 18px;
}

.pcb-holes span:nth-child(2) {
  right: 18px;
  bottom: 18px;
}

.pcb-holes span:nth-child(3) {
  bottom: 18px;
  left: 18px;
}

.pcb-holes span:last-child {
  top: 45px;
  left: 18px;
}

.pcb-window-footer {
  height: 48px;
  justify-content: space-between;
  padding: 0 22px;
  border-top: 1px solid var(--border);
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--success);
}

.floating-file-card {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 130px;
  padding: 14px 16px;
  border: 1px solid rgba(199, 210, 254, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.floating-file-card strong {
  color: var(--primary);
}

.floating-file-card span {
  color: var(--text-soft);
  font-size: 0.72rem;
}

.floating-file-gerber {
  top: 8px;
  right: -20px;
}

.floating-file-bom {
  right: 12px;
  bottom: 2px;
}

.trust-strip {
  display: grid;
  max-width: 1180px;
  margin: -20px auto 40px;
  padding: 22px 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.trust-strip > div {
  display: grid;
  padding: 4px 22px;
  border-right: 1px solid var(--border);
}

.trust-strip > div:last-child {
  border-right: 0;
}

.trust-strip strong {
  font-size: 0.93rem;
}

.trust-strip span {
  color: var(--text-soft);
  font-size: 0.75rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 280px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-card-featured {
  border-color: #c7d2fe;
  background:
    linear-gradient(145deg, rgba(238, 242, 255, 0.95), #fff);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 14px;
  color: var(--primary);
  background: var(--primary-light);
  font-size: 1.5rem;
  font-weight: 800;
}

.service-badge {
  position: absolute;
  top: 28px;
  right: 22px;
  padding: 4px 8px;
  border-radius: 99px;
  color: var(--primary);
  background: #fff;
  font-size: 0.65rem;
  font-weight: 800;
}

.service-card h3 {
  font-size: 1.05rem;
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.deliverables-section {
  max-width: none;
  padding-right: max(24px, calc((100% - 1180px) / 2));
  padding-left: max(24px, calc((100% - 1180px) / 2));
  background: #0f172a;
}

.deliverables-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 75px;
}

.deliverables-copy h2,
.deliverables-copy strong {
  color: #fff;
}

.deliverables-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
}

.deliverables-copy > p {
  color: #94a3b8;
}

.deliverable-note {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid rgba(129, 140, 248, 0.25);
  border-radius: 14px;
  background: rgba(99, 102, 241, 0.1);
}

.deliverable-note p {
  margin: 4px 0 0;
  color: #a5b4fc;
  font-size: 0.82rem;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.deliverable-card {
  display: flex;
  min-height: 125px;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
}

.file-extension {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 12px;
  color: #c7d2fe;
  background: rgba(99, 102, 241, 0.2);
  font-size: 0.69rem;
  font-weight: 900;
}

.deliverable-card h3 {
  margin-bottom: 4px;
  color: #fff;
}

.deliverable-card p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.8rem;
}

.project-section {
  padding-bottom: 105px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.project-preview {
  display: grid;
  height: 220px;
  place-items: center;
  overflow: hidden;
}

.project-preview-control {
  background: linear-gradient(135deg, #dcfce7, #dbeafe);
}

.project-preview-power {
  background: linear-gradient(135deg, #fef3c7, #fee2e2);
}

.project-preview-iot {
  background: linear-gradient(135deg, #ede9fe, #e0f2fe);
}

.mini-board {
  position: relative;
  width: 190px;
  height: 120px;
  transform: rotate(-8deg);
  border: 8px solid #065f46;
  border-radius: 14px;
  background:
    radial-gradient(circle, #fde68a 0 3px, transparent 4px) 0 0 / 28px 28px,
    #059669;
  box-shadow: 0 22px 30px rgba(15, 23, 42, 0.2);
}

.mini-board::before {
  position: absolute;
  top: 30px;
  left: 65px;
  width: 56px;
  height: 48px;
  border-radius: 6px;
  background: #1e293b;
  box-shadow: 0 6px 10px rgba(15, 23, 42, 0.4);
  content: "";
}

.mini-board span {
  position: absolute;
  width: 26px;
  height: 18px;
  border: 3px solid #475569;
  background: #94a3b8;
}

.mini-board span:first-child {
  top: 15px;
  left: 12px;
}

.mini-board span:nth-child(2) {
  right: 12px;
  bottom: 15px;
}

.mini-board span:last-child {
  bottom: 15px;
  left: 18px;
}

.project-card-body {
  padding: 25px;
}

.project-category {
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card h3 {
  margin-top: 8px;
  font-size: 1.08rem;
}

.project-card-body > p {
  font-size: 0.85rem;
}

.project-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.project-card li {
  padding: 5px 9px;
  border-radius: 99px;
  color: var(--text-soft);
  background: var(--surface-soft);
  font-size: 0.68rem;
  font-weight: 700;
}

.preparation-section {
  max-width: none;
  padding-right: max(24px, calc((100% - 1180px) / 2));
  padding-left: max(24px, calc((100% - 1180px) / 2));
  background: var(--surface-soft);
}

.preparation-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 75px;
}

.preparation-layout > div:first-child h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.text-link {
  font-weight: 800;
}

.preparation-list-upgraded {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.preparation-list-upgraded article {
  display: flex;
  min-height: 150px;
  gap: 15px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--surface);
}

.preparation-list-upgraded article > span {
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 900;
}

.preparation-list-upgraded h3 {
  margin-bottom: 5px;
}

.preparation-list-upgraded p {
  margin: 0;
  font-size: 0.82rem;
}

.workflow-section {
  padding-bottom: 110px;
}

.workflow-timeline {
  position: relative;
  display: grid;
  max-width: 940px;
  margin: 0 auto;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 80px;
  list-style: none;
}

.workflow-timeline::before {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 50%;
  width: 1px;
  background: var(--border);
  content: "";
}

.workflow-timeline li {
  position: relative;
  display: flex;
  min-height: 155px;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.workflow-step {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 11px;
  color: var(--primary);
  background: var(--primary-light);
  font-weight: 900;
}

.workflow-timeline h3 {
  margin-top: 4px;
}

.workflow-timeline p {
  margin-bottom: 0;
  font-size: 0.83rem;
}

.trust-section {
  max-width: none;
  padding-right: max(24px, calc((100% - 1180px) / 2));
  padding-left: max(24px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(135deg, #eef2ff, #f8fafc 55%, #ecfeff);
}

.trust-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}

.trust-layout > div:first-child h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.trust-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-checklist article {
  display: flex;
  min-height: 145px;
  gap: 14px;
  padding: 21px;
  border: 1px solid rgba(199, 210, 254, 0.7);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.82);
}

.trust-checklist article > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--success);
  background: var(--success-light);
  font-weight: 900;
}

.trust-checklist p {
  margin: 0;
  font-size: 0.8rem;
}

.faq-section {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 11px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-list details[open] {
  border-color: #c7d2fe;
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  position: relative;
  padding: 20px 55px 20px 22px;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  border-radius: 8px;
  color: var(--primary);
  background: var(--primary-light);
  content: "+";
  font-size: 1.2rem;
  line-height: 26px;
  text-align: center;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 55px 22px 22px;
  font-size: 0.88rem;
}

.upgraded-cta {
  max-width: 1132px;
  background:
    radial-gradient(circle at 85% 20%, rgba(129, 140, 248, 0.45), transparent 30%),
    linear-gradient(135deg, #1e1b4b, #4338ca);
}

.upgraded-cta > div {
  max-width: 670px;
}

.upgraded-cta h2 {
  font-size: clamp(1.7rem, 4vw, 2.45rem);
}

.upgraded-footer {
  display: grid;
  min-height: 260px;
  align-items: start;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 50px;
  padding-top: 55px;
  padding-bottom: 25px;
  background: #0f172a;
}

.upgraded-footer .brand,
.upgraded-footer .brand:hover,
.upgraded-footer strong {
  color: #fff;
}

.upgraded-footer p,
.upgraded-footer span {
  color: #94a3b8;
}

.footer-brand-column p {
  max-width: 360px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-column strong {
  margin-bottom: 6px;
}

.footer-column a {
  color: #cbd5e1;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  background: #16a34a;
  box-shadow: 0 14px 35px rgba(22, 163, 74, 0.32);
}

.floating-whatsapp:hover {
  color: #fff;
  background: #15803d;
  transform: translateY(-2px);
}

.floating-whatsapp span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #16a34a;
  background: #fff;
  font-size: 0.68rem;
  font-weight: 900;
}

.floating-whatsapp strong {
  color: #fff;
  font-size: 0.82rem;
}

@media (max-width: 1050px) {
  .upgraded-hero {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.85fr);
    gap: 35px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip {
    margin-right: 24px;
    margin-left: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip > div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip > div:nth-child(-n + 2) {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }

  .trust-strip > div:nth-child(n + 3) {
    padding-top: 16px;
  }

  .deliverables-layout,
  .preparation-layout,
  .trust-layout {
    gap: 45px;
  }
}

@media (max-width: 850px) {
  .landing-navbar {
    position: sticky;
    align-items: center;
    flex-direction: row;
  }

  .landing-menu-button {
    display: block;
  }

  .landing-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    width: auto;
    max-height: calc(100vh - 90px);
    padding: 14px;
    align-items: stretch;
    flex-direction: column;
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
  }

  .landing-navigation.navigation-open {
    display: flex;
  }

  .landing-navigation .nav-link {
    width: 100%;
    padding: 11px 12px;
  }

  .landing-nav-cta {
    width: 100%;
    margin: 7px 0 0;
  }

  .upgraded-hero {
    grid-template-columns: 1fr;
  }

  .pcb-visual {
    min-height: 480px;
  }

  .pcb-window {
    inset-right: 20px;
  }

  .deliverables-layout,
  .preparation-layout,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
  }

  .project-preview {
    height: auto;
    min-height: 260px;
  }

  .workflow-timeline {
    grid-template-columns: 1fr;
  }

  .workflow-timeline::before {
    left: 18px;
  }

  .workflow-timeline li {
    margin-left: 38px;
  }

  .upgraded-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand-column {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  .upgraded-hero .landing-hero-content h1 {
    font-size: 2.55rem;
  }

  .landing-actions .button {
    width: 100%;
  }

  .pcb-visual {
    min-height: 390px;
  }

  .pcb-window {
    inset: 20px 0;
    transform: none;
  }

  .pcb-board {
    height: 270px;
    margin: 15px;
  }

  .pcb-chip-main {
    top: 75px;
    left: 37%;
    width: 85px;
    height: 85px;
  }

  .pcb-chip-small {
    right: 35px;
    bottom: 35px;
  }

  .floating-file-card {
    display: none;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip > div {
    padding: 14px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-strip > div:nth-child(-n + 2),
  .trust-strip > div:nth-child(n + 3) {
    padding: 14px 4px;
  }

  .trust-strip > div:last-child {
    border-bottom: 0;
  }

  .service-grid,
  .deliverables-grid,
  .preparation-list-upgraded,
  .trust-checklist {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .project-card {
    display: block;
  }

  .project-preview {
    height: 210px;
    min-height: 0;
  }

  .workflow-timeline li {
    min-height: auto;
    margin-left: 24px;
  }

  .workflow-timeline::before {
    left: 6px;
  }

  .upgraded-cta .button {
    width: 100%;
  }

  .upgraded-footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand-column,
  .footer-bottom {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding-right: 10px;
  }

  .floating-whatsapp strong {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}