:root {
  --primary: #f0442f;
  --primary-dark: #c72c1c;
  --ink: #17191c;
  --muted: #687079;
  --line: #e7e9eb;
  --soft: #f5f6f7;
  --white: #fff;
  --dark: #111417;
  --dark-2: #1a1d20;
  --container: 1200px;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden
}

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

a {
  text-decoration: none;
  color: inherit
}

button,
input,
textarea,
select {
  font: inherit
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: auto
}

.topbar {
  background: #121416;
  color: #bfc3c7;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.topbar i {
  color: var(--primary);
  margin-right: 7px
}

.top-actions {
  display: flex;
  gap: 22px;
  align-items: center
}

.top-actions a {
  color: #fff
}

.open-badge {
  font-weight: 700;
  color: #fff
}

.open-badge i {
  font-size: 7px;
  color: #53d769;
  vertical-align: middle
}

.header {
  height: 84px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #eee;
  transition: .25s
}

.header.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08)
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--primary);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  transform: skew(-5deg)
}

.brand strong,
.brand span {
  display: block;
  line-height: 1
}

.brand strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  letter-spacing: .7px
}

.brand span {
  font-size: 10px;
  letter-spacing: 2.3px;
  font-weight: 800;
  margin-top: 5px;
  color: #73787d
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700
}

.nav>a {
  position: relative;
  padding: 32px 0
}

.nav>a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: .25s
}

.nav>a:hover:after,
.nav>a.active:after {
  width: 100%
}

.nav-cta {
  padding: 12px 17px !important;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(240, 68, 47, .18)
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 24px
}

.hero {
  min-height: 680px;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #17191c
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=2000&q=90");
  background-size: cover;
  background-position: center
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 12, 14, .96) 0%, rgba(10, 12, 14, .78) 48%, rgba(10, 12, 14, .30) 100%)
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 60px;
  padding: 95px 0
}

.eyebrow,
.section-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--primary)
}

.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(58px, 7vw, 92px);
  line-height: .91;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin: 22px 0
}

.hero h1 em {
  font-style: normal;
  color: #ff5a46
}

.hero-text {
  font-size: 16px;
  color: #d4d6d8;
  max-width: 650px
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 9px;
  padding: 14px 21px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: .25s
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(240, 68, 47, .2)
}

.btn-primary:hover {
  background: #ff503b;
  transform: translateY(-2px)
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  background: rgba(255, 255, 255, .05)
}

.btn-ghost:hover {
  background: #fff;
  color: #111
}

.btn-dark {
  background: #151719;
  color: #fff
}

.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 50px;
  flex-wrap: wrap
}

.hero-trust div {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #aeb2b6;
  font-size: 11px
}

.hero-trust i {
  font-size: 17px;
  color: var(--primary)
}

.hero-trust b {
  color: #fff
}

.hero-side {
  display: flex;
  justify-content: flex-end
}

.dispatch-card {
  width: 330px;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, .17);
  background: rgba(15, 17, 19, .66);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .3)
}

.dispatch-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.7px;
  color: #d4d6d8
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #54d66b;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(84, 214, 107, .12)
}

.dispatch-card h3 {
  font-family: "Barlow Condensed";
  font-size: 44px;
  line-height: .95;
  text-transform: uppercase;
  margin: 25px 0 13px
}

.dispatch-card p {
  color: #b8bdc1;
  font-size: 12px
}

.dispatch-number {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12)
}

.dispatch-number>i {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary);
  display: grid;
  place-items: center
}

.dispatch-number small {
  display: block;
  color: #8f969c;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px
}

.dispatch-number span {
  font-weight: 800;
  font-size: 16px
}

.hero-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ffb52e, var(--primary))
}

.quick-strip {
  background: #fff;
  border-bottom: 1px solid var(--line)
}

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

.quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 18px;
  border-right: 1px solid var(--line)
}

.quick-item:first-child {
  border-left: 1px solid var(--line)
}

.quick-item>span {
  font-family: "Barlow Condensed";
  font-size: 29px;
  color: #d5d8da
}

.quick-item b,
.quick-item small {
  display: block
}

.quick-item b {
  font-size: 12px
}

.quick-item small {
  font-size: 10px;
  color: #81878d;
  margin-top: 2px
}

.section {
  padding: 105px 0
}

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

.about-visual {
  position: relative;
  padding-right: 55px
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 520px
}

.image-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .3), transparent 55%)
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.image-badge {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  background: var(--primary);
  color: #fff;
  padding: 17px 21px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .2)
}

.image-badge strong {
  font-family: "Barlow Condensed";
  font-size: 46px;
  line-height: .8
}

.image-badge span {
  font-size: 9px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 1px
}

.mini-image {
  position: absolute;
  right: 0;
  bottom: -38px;
  width: 190px;
  height: 190px;
  border: 9px solid #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .14)
}

.mini-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.about-copy h2,
.section-head h2,
.why-copy h2,
.cta-inner h2,
.contact-copy h2 {
  font-family: "Barlow Condensed";
  font-size: 58px;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.5px;
  margin: 14px 0 23px
}

h2 span {
  color: var(--primary)
}

.about-copy .lead {
  font-size: 17px;
  font-weight: 700;
  color: #333b42;
  margin-bottom: 13px
}

.about-copy>p:not(.lead) {
  color: var(--muted);
  font-size: 14px
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0
}

.check-list div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700
}

.check-list i {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  background: #fff0ed;
  color: var(--primary);
  border-radius: 50%;
  font-size: 10px
}

.text-link,
.outline-link {
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--primary)
}

.services-section {
  background: var(--soft)
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 45px
}

.section-head>p {
  max-width: 460px;
  color: var(--muted);
  font-size: 13px
}

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

.service-card {
  background: #fff;
  border: 1px solid #e5e7e9;
  border-radius: 16px;
  padding: 31px;
  position: relative;
  overflow: hidden;
  min-height: 330px;
  transition: .3s
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(25, 29, 33, .1)
}

.service-feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  min-height: 360px
}

.service-image {
  height: 100%;
  overflow: hidden
}

.service-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .5s
}

.service-feature:hover .service-image img {
  transform: scale(1.04)
}

.service-feature .service-body {
  padding: 31px
}

.service-icon {
  width: 48px;
  height: 48px;
  background: #fff0ed;
  color: var(--primary);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 19px;
  margin-bottom: 25px
}

.service-number {
  position: absolute;
  top: 28px;
  right: 29px;
  font-family: "Barlow Condensed";
  font-size: 29px;
  color: #dfe2e4
}

.service-card h3 {
  font-family: "Barlow Condensed";
  font-size: 28px;
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 280px
}

.service-card p {
  font-size: 12px;
  color: var(--muted);
  margin: 13px 0 24px;
  max-width: 330px
}

.service-card a {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  display: inline-flex;
  gap: 9px
}

.dark-card {
  background: #17191c;
  color: #fff;
  border-color: #17191c
}

.dark-card p {
  color: #9da3a8
}

.dark-card .service-icon {
  background: rgba(240, 68, 47, .12)
}

.dark-card .service-number {
  color: #34383c
}

.dark-pattern {
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 50%;
  right: -100px;
  bottom: -120px
}

.why-section {
  position: relative;
  background: #111417;
  color: #fff;
  padding: 100px 0;
  overflow: hidden
}

.why-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(17, 20, 23, .98), rgba(17, 20, 23, .80)), url("../images/why.png");
  background-size: cover;
  background-position: center;
  opacity: .95
}

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center
}

.section-kicker.light {
  color: #ff6552
}

.why-copy h2 {
  font-size: 60px
}

.why-copy p {
  color: #aeb4b9;
  font-size: 14px;
  max-width: 520px;
  margin-bottom: 30px
}

.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.why-point {
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .035);
  padding: 22px;
  border-radius: 14px;
  display: flex;
  gap: 15px
}

.why-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 10px;
  background: var(--primary);
  display: grid;
  place-items: center
}

.why-point h3 {
  font-family: "Barlow Condensed";
  font-size: 22px;
  text-transform: uppercase
}

.why-point p {
  font-size: 10px;
  color: #9ba2a7;
  margin-top: 5px;
  line-height: 1.5
}

.process-section {
  background: #fff
}

.centered {
  align-items: center;
  text-align: center;
  display: block
}

.centered>div {
  display: flex;
  flex-direction: column;
  align-items: center
}

.centered>p {
  margin: 0 auto
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 70px 1fr 70px 1fr;
  align-items: center
}

.process-card {
  text-align: center;
  padding: 20px
}

.process-card>span {
  font-family: "Barlow Condensed";
  font-size: 30px;
  color: #d9dddf
}

.process-card i {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff0ed;
  color: var(--primary);
  display: grid;
  place-items: center;
  margin: 9px auto 18px;
  font-size: 22px
}

.process-card h3 {
  font-family: "Barlow Condensed";
  font-size: 25px;
  text-transform: uppercase
}

.process-card p {
  font-size: 11px;
  color: var(--muted);
  max-width: 230px;
  margin: 8px auto
}

.process-line {
  height: 1px;
  background: #dfe2e4;
  position: relative
}

.process-line:after {
  content: "→";
  position: absolute;
  right: -7px;
  top: -13px;
  background: #fff;
  color: #b0b5b9;
  padding: 0 4px
}

.work-section {
  background: var(--soft)
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 15px
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.gallery-item:hover img {
  transform: scale(1.04)
}

.gallery-large {
  grid-row: span 2
}

.gallery-item:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .72), transparent 60%)
}

.gallery-caption {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 22px;
  color: #fff
}

.gallery-caption span {
  display: block;
  font-size: 9px;
  letter-spacing: 1.6px;
  color: #ff6a58;
  font-weight: 800
}

.gallery-caption b {
  font-family: "Barlow Condensed";
  font-size: 23px;
  text-transform: uppercase
}

.cta-section {
  background: #f7f0ee;
  padding: 70px 0
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px
}

.cta-inner h2 {
  margin: 10px 0 0;
  font-size: 54px
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.contact-section {
  padding-bottom: 115px
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start
}

.contact-copy h2 {
  font-size: 65px
}

.contact-copy>p {
  color: var(--muted);
  font-size: 13px;
  max-width: 470px
}

.contact-details {
  margin-top: 35px;
  display: grid;
  gap: 12px
}

.contact-row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line)
}

.contact-row>i {
  width: 42px;
  height: 42px;
  background: #fff0ed;
  color: var(--primary);
  border-radius: 10px;
  display: grid;
  place-items: center
}

.contact-row small {
  display: block;
  color: #8b9196;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.4px
}

.contact-row strong {
  display: block;
  font-size: 13px
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid #e4e6e8;
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 25px 55px rgba(20, 25, 29, .08)
}

.form-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 27px
}

.form-title span {
  font-family: "Barlow Condensed";
  font-size: 30px;
  color: #d5d8da
}

.form-title h3 {
  font-family: "Barlow Condensed";
  font-size: 30px;
  text-transform: uppercase
}

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

.form-grid label {
  font-size: 10px;
  font-weight: 800;
  color: #60676d
}

.form-grid .full {
  grid-column: 1/-1
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  display: block;
  width: 100%;
  border: 1px solid #e0e3e5;
  border-radius: 8px;
  margin-top: 7px;
  padding: 13px 14px;
  outline: none;
  background: #fafbfb;
  color: #222;
  font-size: 12px;
  resize: vertical
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  border-color: var(--primary);
  background: #fff
}

.form-btn {
  margin-top: 21px;
  width: 100%
}

.form-note {
  font-size: 9px;
  color: #8b9195;
  text-align: center;
  margin-top: 13px
}

.form-message {
  display: none;
  margin-top: 13px;
  padding: 10px;
  border-radius: 7px;
  font-size: 11px;
  background: #effaf1;
  color: #24733a
}

.footer {
  background: #111417;
  color: #fff
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding: 65px 0
}

.footer .brand strong {
  color: #fff
}

.footer-brand p {
  color: #8e969c;
  font-size: 11px;
  max-width: 310px;
  margin-top: 18px
}

.footer h4 {
  font-family: "Barlow Condensed";
  text-transform: uppercase;
  font-size: 19px;
  margin-bottom: 16px
}

.footer-top>div:not(.footer-brand) a,
.footer-top>div:not(.footer-brand) span {
  display: block;
  color: #92999f;
  font-size: 10px;
  margin: 8px 0
}

.footer-top a:hover {
  color: #fff
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.footer-bottom .container {
  min-height: 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #70777d;
  font-size: 9px
}

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow: 0 12px 25px rgba(240, 68, 47, .35);
  animation: pulse 2.2s infinite
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 12px 25px rgba(240, 68, 47, .28)
  }

  50% {
    box-shadow: 0 12px 30px rgba(240, 68, 47, .28), 0 0 0 10px rgba(240, 68, 47, .08)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.reveal-delay {
  transition-delay: .12s
}

.reveal-delay-2 {
  transition-delay: .22s
}

@media(max-width:980px) {
  .nav {
    gap: 17px
  }

  .nav>a {
    font-size: 11px
  }

  .hero-grid,
  .why-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px
  }

  .hero {
    min-height: auto
  }

  .hero-side {
    justify-content: flex-start
  }

  .dispatch-card {
    width: min(100%, 400px)
  }

  .about-visual {
    max-width: 600px
  }

  .services-grid {
    grid-template-columns: 1fr 1fr
  }

  .service-feature {
    grid-column: span 2
  }

  .why-points {
    max-width: 700px
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr
  }

  .gallery-large {
    grid-row: span 2
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr
  }

  .footer-top>div:last-child {
    grid-column: 2/-1
  }
}

@media(max-width:760px) {
  .container {
    width: min(var(--container), calc(100% - 32px))
  }

  .topbar {
    display: none
  }

  .header {
    height: 70px
  }

  .menu-toggle {
    display: block
  }

  .nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 13px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
    flex-direction: column;
    align-items: stretch;
    gap: 0
  }

  .nav.open {
    display: flex
  }

  .nav>a {
    padding: 12px 13px !important
  }

  .nav>a:not(.nav-cta):after {
    display: none
  }

  .nav-cta {
    text-align: center;
    margin-top: 5px
  }

  .hero-grid {
    padding: 80px 0 75px
  }

  .hero h1 {
    font-size: 59px
  }

  .hero-text {
    font-size: 14px
  }

  .hero-trust {
    margin-top: 34px;
    gap: 15px
  }

  .quick-grid {
    grid-template-columns: 1fr 1fr
  }

  .quick-item {
    border-bottom: 1px solid var(--line)
  }

  .quick-item:first-child {
    border-left: 0
  }

  .section {
    padding: 75px 0
  }

  .about-grid {
    gap: 75px
  }

  .image-frame {
    height: 420px
  }

  .about-copy h2,
  .section-head h2,
  .why-copy h2,
  .cta-inner h2,
  .contact-copy h2 {
    font-size: 49px
  }

  .check-list {
    grid-template-columns: 1fr
  }

  .section-head {
    display: block
  }

  .section-head>p {
    margin-top: 15px
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .service-feature {
    grid-column: auto;
    display: block
  }

  .service-feature .service-image {
    height: 250px
  }

  .service-feature .service-body {
    padding: 27px
  }

  .why-section {
    padding: 75px 0
  }

  .why-points {
    grid-template-columns: 1fr
  }

  .process-grid {
    grid-template-columns: 1fr
  }

  .process-line {
    display: none
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto
  }

  .gallery-large {
    grid-row: auto;
    height: 330px
  }

  .gallery-item {
    height: 240px
  }

  .cta-inner {
    display: block
  }

  .cta-actions {
    margin-top: 25px
  }

  .contact-grid {
    gap: 45px
  }

  .contact-form-wrap {
    padding: 24px
  }

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

  .form-grid .full {
    grid-column: auto
  }

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

  .footer-brand {
    grid-column: 1/-1
  }

  .footer-top>div:last-child {
    grid-column: auto
  }

  .footer-bottom .container {
    padding: 14px 0;
    gap: 10px;
    align-items: flex-start;
    flex-direction: column
  }
}

@media(max-width:430px) {
  .hero h1 {
    font-size: 51px
  }

  .hero-buttons .btn {
    width: 100%
  }

  .quick-grid {
    grid-template-columns: 1fr
  }

  .quick-item {
    border-left: 0 !important
  }

  .about-visual {
    padding-right: 15px
  }

  .mini-image {
    width: 130px;
    height: 130px
  }

  .image-frame {
    height: 360px
  }

  .dispatch-card {
    padding: 23px
  }

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

  .footer-top>div:last-child {
    grid-column: auto
  }
}


/* =========================
   HOMEPAGE V2 MODIFICATIONS
   ========================= */

/* Hero slider */
.hero-slider {
  height: 680px;
  position: relative;
  padding: 0
}

.hero-slides {
  position: absolute;
  inset: 0
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity .7s ease, transform 6s ease, visibility .7s
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1)
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--slide-bg);
  background-size: cover;
  background-position: center
}

.hero-slide .hero-grid {
  height: 100%;
  min-height: 680px
}

.hero-slide .hero-overlay {
  z-index: 0;
  background: linear-gradient(90deg, rgba(8, 10, 12, .77) 0%, rgba(8, 10, 12, .78) 48%, rgba(8, 10, 12, .27) 100%)
}

.hero-slide .hero-copy,
.hero-slide .hero-side {
  position: relative;
  z-index: 2
}

.hero-controls {
  position: absolute;
  z-index: 10;
  right: max(24px, calc((100vw - 1200px)/2));
  bottom: 37px;
  display: flex;
  align-items: center;
  gap: 13px
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 9px;
  background: rgba(0, 0, 0, .25);
  color: #fff;
  cursor: pointer;
  transition: .2s
}

.hero-arrow:hover {
  background: var(--primary);
  border-color: var(--primary)
}

.hero-dots {
  display: flex;
  gap: 7px;
  align-items: center
}

.hero-dot {
  width: 26px;
  height: 3px;
  border: 0;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  border-radius: 5px;
  transition: .3s
}

.hero-dot.active {
  width: 45px;
  background: var(--primary)
}

.hero-slider .hero-bottom-line {
  z-index: 11
}

/* Service image cards */
.service-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.service-cards .image-card {
  padding: 0;
  min-height: 0;
  border-radius: 17px;
  overflow: hidden
}

.image-card .service-image {
  height: 205px;
  position: relative;
  overflow: hidden
}

.image-card .service-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .35))
}

.image-card .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease
}

.image-card:hover .service-image img {
  transform: scale(1.07)
}

.image-card .service-tag {
  position: absolute;
  top: 16px;
  right: 17px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(18, 20, 22, .82);
  color: #fff;
  display: grid;
  place-items: center;
  font: 700 18px "Barlow Condensed"
}

.image-card .service-icon {
  position: absolute;
  z-index: 3;
  left: 20px;
  bottom: -22px;
  width: 50px;
  height: 50px;
  margin: 0;
  border: 4px solid #fff;
  background: var(--primary);
  color: #fff;
  border-radius: 13px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18)
}

.image-card .service-body {
  padding: 35px 24px 25px
}

.image-card .service-body h3 {
  font-size: 25px
}

.image-card .service-body p {
  min-height: 58px;
  margin-bottom: 19px
}

/* Process timeline */
.process-timeline {
  display: grid;
  grid-template-columns: 1fr 55px 1fr 55px 1fr 55px 1fr;
  align-items: center;
  margin-top: 48px
}

.process-step {
  background: #fff;
  border: 1px solid #e5e8ea;
  border-radius: 16px;
  padding: 25px 22px;
  min-height: 225px;
  transition: .3s;
  position: relative
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(20, 25, 30, .09);
  border-color: #f2c9c3
}

.process-top {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.process-top>span {
  font: 700 29px "Barlow Condensed";
  color: #d8dcde
}

.process-icon {
  width: 53px;
  height: 53px;
  border-radius: 13px;
  background: #fff0ed;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 19px
}

.process-step h3 {
  font: 700 25px/1 "Barlow Condensed";
  text-transform: uppercase;
  margin: 25px 0 10px
}

.process-step p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65
}

.process-connector {
  height: 2px;
  background: #dedfe1;
  position: relative
}

.process-connector span {
  position: absolute;
  right: -4px;
  top: -5px;
  width: 11px;
  height: 11px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 5px #fff0ed
}

/* Work showcase */
.work-head {
  align-items: end
}

.work-head>p {
  max-width: 390px
}

.work-showcase {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: 280px 220px;
  gap: 16px
}

.work-main,
.work-tile,
.work-bottom {
  position: relative;
  overflow: hidden;
  border-radius: 17px
}

.work-main {
  grid-row: span 2
}

.work-main img,
.work-tile img,
.work-bottom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease
}

.work-main:hover img,
.work-tile:hover img,
.work-bottom:hover img {
  transform: scale(1.05)
}

.work-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02) 25%, rgba(0, 0, 0, .78) 100%)
}

.work-main-copy {
  position: absolute;
  z-index: 2;
  left: 29px;
  bottom: 29px;
  color: #fff;
  max-width: 420px
}

.work-main-copy span,
.work-tile-copy span,
.work-bottom-copy>span {
  font-size: 9px;
  letter-spacing: 1.8px;
  font-weight: 800;
  color: #ff6654
}

.work-main-copy h3 {
  font: 700 43px/.93 "Barlow Condensed";
  text-transform: uppercase;
  margin: 10px 0
}

.work-main-copy p {
  font-size: 11px;
  color: #d0d3d5
}

.work-number {
  position: absolute;
  z-index: 3;
  top: 17px;
  right: 20px;
  color: rgba(255, 255, 255, .72);
  font: 700 28px "Barlow Condensed"
}

.work-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.work-tile {
  min-height: 220px
}

.work-tile-copy {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  color: #fff
}

.work-tile-copy b {
  display: block;
  font: 700 23px/1 "Barlow Condensed";
  text-transform: uppercase;
  margin-top: 5px
}

.work-bottom {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: #17191c;
  color: #fff
}

.work-bottom-image {
  overflow: hidden
}

.work-bottom-copy {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.work-bottom-copy h3 {
  font: 700 30px/1 "Barlow Condensed";
  text-transform: uppercase;
  margin: 9px 0
}

.work-bottom-copy p {
  font-size: 11px;
  color: #9da3a8;
  max-width: 350px;
  margin-bottom: 17px
}

.work-bottom-copy a {
  font-size: 10px;
  color: #ff6552;
  font-weight: 800
}

/* Keep service grid stable after removing feature card */
@media(max-width:980px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .process-timeline {
    grid-template-columns: 1fr 35px 1fr
  }

  .process-step:nth-of-type(n+6),
  .process-connector:nth-of-type(n+6) {
    display: none
  }

  .process-step {
    min-height: 210px
  }

  .work-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 210px 210px
  }

  .work-main {
    grid-row: span 2
  }

  .work-stack {
    grid-column: 2;
    grid-row: 1
  }

  .work-bottom {
    grid-column: 1/-1;
    grid-row: 3
  }
}

@media(max-width:760px) {
    
    .hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--slide-bg);
  background-size: contain;
  background-position: center
}

  .hero-slider,
  .hero-slide .hero-grid {
  height: 160px !important;
  }

  .hero-controls {
    right: 16px;
    bottom: 23px
  }

  .hero-slide .hero-grid {
    padding: 75px 0 85px
  }

  .hero-slide .hero-side {
    display: none
  }

  .service-cards {
    grid-template-columns: 1fr
  }

  .image-card .service-image {
    height: 215px
  }

  .image-card .service-body p {
    min-height: 0
  }

  .process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px
  }

  .process-connector {
    display: none
  }

  .process-step {
    min-height: 0
  }

  .process-step:nth-of-type(n+6) {
    display: block
  }

  .work-head .outline-link {
    margin-top: 18px
  }

  .work-showcase {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 360px 220px 220px
  }

  .work-main {
    grid-row: auto
  }

  .work-stack {
    grid-column: auto;
    grid-row: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
  }

  .work-tile {
    min-height: 220px
  }

  .work-bottom {
    grid-column: auto;
    grid-row: auto;
    display: block;
    margin-top: 30px;
  }

  .work-bottom-image {
    height: 180px
  }

  .work-bottom-copy {
    padding: 22px
  }
}

@media(max-width:430px) {

  .hero-slider,
  .hero-slide .hero-grid {
    height: 200px
  }

  .hero-slide .hero-grid {
    padding: 60px 0 90px
  }

  .hero-slide .hero-copy h1 {
    font-size: 51px
  }

  .hero-controls {
    left: 16px;
    right: auto
  }

  .work-showcase {
    grid-template-rows: 330px 190px 190px
  }

  .work-stack {
    grid-template-columns: 1fr 1fr
  }

  .work-tile-copy b {
    font-size: 18px
  }
}