:root {
  --black: #0a0a0a;
  --panel: #121212;
  --line: rgba(255, 255, 255, .11);
  --gold: #d4af37;
  --gold-light: #f5da73;
  --white: #fbfaf7;
  --muted: #aaa8a1;
  --font: 'DM Sans', sans-serif;
  --serif: 'Playfair Display', serif
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden
}

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

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

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

.section-pad {
  padding: 118px 0
}

.eyebrow {
  color: var(--gold-light);
  font-size: .72rem;
  letter-spacing: .15em;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 17px
}

.eyebrow span {
  display: inline-block;
  width: 25px;
  height: 1px;
  background: var(--gold)
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.12
}

h1 {
  font-size: clamp(3rem, 5.4vw, 5.2rem);
  max-width: 670px;
  margin-bottom: 25px
}

h2 {
  font-size: clamp(2.4rem, 4vw, 3.85rem);
  margin-bottom: 24px
}

h1 em,
h2 em {
  font-style: italic;
  color: var(--gold-light)
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 550px
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 23px;
  border-radius: 3px;
  font-size: .87rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: .3s;
  border: 1px solid transparent;
  cursor: pointer
}

.btn-gold {
  background: linear-gradient(110deg, var(--gold-light), var(--gold));
  color: #17130a;
  box-shadow: 0 8px 24px rgba(212, 175, 55, .18)
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 13px 28px rgba(212, 175, 55, .32)
}

.btn-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, .025)
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(212, 175, 55, .06)
}

.glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .025));
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .4);
  backdrop-filter: blur(18px)
}

/* navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  transition: .3s;
  background: rgba(10, 10, 10, .55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(10, 10, 10, .92)
}

.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -.05em
}

.brand img {
  width: 35px;
  height: 35px;
  object-fit: cover;
  border-radius: 50%
}

.brand>span>span {
  color: var(--gold)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: .84rem;
  font-weight: 600
}

.nav-links>a:not(.btn) {
  color: #b9b7b0;
  position: relative
}

.nav-links>a:not(.btn):after {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  left: 0;
  bottom: -7px;
  background: var(--gold);
  transition: .25s
}

.nav-links>a.active,
.nav-links>a:hover {
  color: white
}

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

.nav-cta {
  margin-left: 7px;
  padding: 11px 16px
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 1.3rem
}

/* hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 88px;
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center
}

.hero-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  right: -190px;
  top: -90px;
  background: radial-gradient(circle, rgba(212, 175, 55, .15), transparent 68%);
  pointer-events: none
}

.hero-grid,
.about-grid,
.featured-grid,
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center
}

.hero-actions {
  display: flex;
  gap: 13px;
  margin: 34px 0
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 42px
}

.hero-trust p {
  font-size: .75rem;
  line-height: 1.45;
  color: var(--muted);
  margin: 0
}

.hero-trust strong {
  color: white
}

.avatars {
  display: flex
}

.avatars span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  margin-left: -8px;
  border-radius: 50%;
  border: 2px solid var(--black);
  background: #443a2c;
  font-size: .65rem;
  font-weight: bold
}

.avatars span:nth-child(2) {
  background: #263639
}

.avatars span:nth-child(3) {
  background: #564341
}

.avatars span:last-child {
  background: var(--gold);
  color: #15120b
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center
}

.dashboard {
  width: min(100%, 500px);
  padding: 20px;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  animation: float 5s ease-in-out infinite
}

.dash-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  color: #c7c5be;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line)
}

.dash-top .fa-ellipsis {
  margin-left: auto
}

.dash-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #79d675;
  box-shadow: 0 0 10px #79d675
}

.satisfaction {
  display: flex;
  justify-content: space-between;
  padding: 23px 4px 18px
}

.satisfaction small,
.chart-label {
  font-size: .66rem;
  letter-spacing: .08em;
  color: #949189
}

.satisfaction strong {
  display: block;
  font-size: 3rem;
  letter-spacing: -.08em;
  line-height: 1.1
}

.satisfaction strong span {
  font-size: 1.2rem;
  color: var(--gold)
}

.satisfaction p {
  font-size: .67rem;
  color: #7bd574;
  margin: 5px 0 0
}

.progress-ring {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) 98%, #282828 0);
  display: grid;
  place-items: center
}

.progress-ring:before {
  content: '';
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #191919
}

.progress-ring span {
  font-size: .8rem;
  font-weight: bold;
  z-index: 1
}

.chart {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 12px 3px
}

.chart-label {
  display: flex;
  justify-content: space-between;
  letter-spacing: 0
}

.chart-label strong {
  font-size: .7rem;
  color: #78d673
}

.chart svg {
  height: 95px;
  width: 100%
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 17px
}

.metrics>div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .6rem;
  line-height: 1.2;
  color: #9e9c97
}

.metrics i {
  color: var(--gold);
  font-size: 1rem
}

.metrics b {
  color: white;
  font-size: .7rem
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, .2)
}

.orbit-one {
  width: 510px;
  height: 510px
}

.orbit-two {
  width: 600px;
  height: 600px;
  border-style: dashed;
  animation: spin 30s linear infinite
}

.floating-pill {
  position: absolute;
  z-index: 3;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(22, 22, 22, .92);
  font-size: .68rem;
  font-weight: 700;
  box-shadow: 0 10px 25px #0006
}

.pill-design {
  right: -10px;
  top: 92px;
  color: var(--gold-light);
  animation: float 4s 1s ease-in-out infinite
}

.pill-design i {
  margin-right: 5px
}

.pill-live {
  left: 0;
  bottom: 55px
}

.pill-live span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #75d574;
  border-radius: 50%;
  margin-right: 6px
}

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

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

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

.delay-2 {
  transition-delay: .24s
}

.delay-3 {
  transition-delay: .36s
}

/* about */
.about {
  background: linear-gradient(90deg, #0d0d0d, #11100e)
}

.about-copy>p:not(.eyebrow),
.featured-copy>p:not(.eyebrow),
.contact-intro>p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 17px
}

.workspace {
  height: 420px;
  position: relative;
  display: flex;
  align-items: center
}

.workspace:before {
  content: '';
  width: 310px;
  height: 310px;
  position: absolute;
  background: radial-gradient(circle, rgba(212, 175, 55, .18), transparent 65%)
}

.workspace-card {
  width: 92%;
  padding: 12px;
  background: #171717;
  border: 1px solid var(--line);
  box-shadow: 25px 30px 0 rgba(212, 175, 55, .06);
  transform: rotate(-4deg);
  border-radius: 6px
}

.window-bar {
  height: 15px;
  display: flex;
  gap: 4px
}

.window-bar i {
  width: 5px;
  height: 5px;
  background: #605e57;
  border-radius: 50%
}

.workspace-content {
  padding: 18px;
  display: flex;
  gap: 18px;
  background: #111
}

.code-lines {
  width: 37%;
  padding-top: 10px
}

.code-lines span {
  display: block;
  height: 6px;
  margin-bottom: 11px;
  background: #3d3a32;
  border-radius: 4px
}

.code-lines span:nth-child(1),
.code-lines span:nth-child(4) {
  width: 70%;
  background: #9a7b28
}

.code-lines span:nth-child(3) {
  width: 83%
}

.site-preview {
  width: 63%;
  height: 190px;
  padding: 17px;
  background: #e8d4a6
}

.site-preview div {
  height: 60px;
  background: #27200e;
  border-radius: 2px
}

.site-preview b {
  display: block;
  height: 8px;
  background: #be9c44;
  margin-top: 13px;
  width: 84%
}

.site-preview b:last-child {
  width: 58%
}

.workspace-tag {
  position: absolute;
  right: -10px;
  bottom: 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 9px;
  background: #201c12;
  border: 1px solid rgba(212, 175, 55, .4);
  padding: 12px 16px;
  box-shadow: 0 12px 25px #0009
}

.workspace-tag i {
  color: var(--gold);
  grid-row: span 2;
  padding-top: 3px
}

.workspace-tag strong {
  font-size: .75rem
}

.workspace-tag span {
  font-size: .62rem;
  color: #aaa
}

.feature-list {
  list-style: none;
  padding: 5px 0 6px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  font-size: .86rem;
  font-weight: 600
}

.feature-list i {
  color: var(--gold);
  font-size: .72rem;
  margin-right: 7px
}

.text-link,
.service-card>a {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-light)
}

.text-link i,
.service-card a i {
  margin-left: 7px;
  transition: .25s
}

.text-link:hover i,
.service-card a:hover i {
  transform: translateX(5px)
}

/* cards */
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 50px
}

.section-heading h2 {
  margin: 0
}

.section-heading>p {
  width: 310px;
  color: var(--muted);
  font-size: .92rem;
  margin: 0
}

.service-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px
}

.service-card {
  position: relative;
  border: 1px solid var(--line);
  background: #111;
  padding: 28px 24px 25px;
  transition: .35s;
  overflow: hidden
}

.service-card:before {
  content: '';
  position: absolute;
  inset: -100px;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, .13), transparent 38%);
  opacity: 0;
  transition: .3s
}

.service-card:hover {
  border-color: rgba(212, 175, 55, .7);
  transform: translateY(-7px);
  box-shadow: 0 16px 30px #0008
}

.service-card:hover:before {
  opacity: 1
}

.service-card .icon-box {
  height: 44px;
  width: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, .35);
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 37px
}

.service-card>span {
  position: absolute;
  right: 22px;
  top: 25px;
  color: #555047;
  font-family: var(--serif);
  font-size: 1.3rem
}

.service-card h3,
.why-card h3 {
  font-family: var(--serif);
  font-size: 1.28rem;
  margin-bottom: 10px
}

.service-card p,
.why-card p {
  font-size: .82rem;
  color: var(--muted);
  min-height: 66px;
  margin-bottom: 21px
}

.service-card a {
  position: relative;
  z-index: 1
}

.services {
  padding-bottom: 125px
}

/* featured */
.featured {
  background: #11100e
}

.project-image {
  position: relative
}

.browser {
  border: 1px solid #393832;
  background: #191816;
  border-radius: 7px;
  padding: 8px;
  box-shadow: 22px 24px 0 rgba(212, 175, 55, .08)
}

.browser-head {
  height: 26px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 6px;
  background: #272520;
  color: #89857c;
  font-size: .55rem
}

.browser-head i {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #888
}

.browser-head span {
  padding: 3px 20px;
  margin-left: 10px;
  background: #33312c;
  border-radius: 2px
}

.project-screen {
  height: 325px;
  position: relative;
  padding: 18px;
  background: linear-gradient(120deg, #2d2719, #0c0e0c 68%);
  overflow: hidden
}

.project-screen:after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid #b4943e50;
  border-radius: 50%;
  right: -60px;
  bottom: -100px
}

.project-nav {
  font-size: .57rem;
  font-weight: bold;
  letter-spacing: .06em
}

.project-nav span {
  color: var(--gold)
}

.project-nav b {
  float: right;
  font-weight: 400;
  color: #aaa
}

.booking-title {
  position: absolute;
  left: 28px;
  top: 88px;
  z-index: 1
}

.booking-title small {
  font-size: .55rem;
  color: var(--gold-light);
  letter-spacing: .18em
}

.booking-title h3 {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.1;
  margin: 8px 0 18px
}

.booking-title button {
  border: 0;
  background: var(--gold);
  font-size: .55rem;
  font-weight: bold;
  padding: 9px 12px
}

.booking-card {
  position: absolute;
  z-index: 2;
  right: 17px;
  bottom: 25px;
  width: 155px;
  padding: 14px;
  background: #e3c553;
  color: #201b0d;
  box-shadow: 0 8px 20px #0008
}

.booking-card small,
.booking-card span {
  display: block;
  font-size: .53rem
}

.booking-card strong {
  display: block;
  font-size: .75rem;
  margin: 4px 0
}

.project-stamp {
  position: absolute;
  right: -27px;
  top: -26px;
  height: 78px;
  width: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  background: var(--gold);
  color: #1b1608;
  font-size: .57rem;
  font-weight: bold;
  line-height: 1.2;
  transform: rotate(12deg)
}

.project-stamp i {
  font-size: 1rem;
  margin-bottom: 4px
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 27px 0
}

.badges span {
  border: 1px solid rgba(212, 175, 55, .35);
  padding: 5px 9px;
  color: #d6c583;
  font-size: .67rem
}

.project-actions {
  display: flex;
  gap: 12px
}

/* why & process */
.center-heading {
  text-align: center;
  margin-bottom: 48px
}

.center-heading .eyebrow {
  justify-content: center
}

.why {
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, .08), transparent 50%)
}

.why-card {
  padding: 22px 18px
}

.why-card i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 20px
}

.why-card p {
  min-height: 0;
  margin: 0
}

.process {
  background: #111
}

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

.process-grid:before {
  content: '';
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  border-top: 1px dashed rgba(212, 175, 55, .5)
}

.process-step {
  position: relative;
  padding: 0 20px
}

.process-step>span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: #181713;
  border: 1px solid rgba(212, 175, 55, .5);
  border-radius: 50%;
  font-family: var(--serif);
  color: var(--gold-light);
  margin-bottom: 25px
}

.process-step i {
  color: var(--gold);
  font-size: 1.1rem
}

.process-step h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: 12px 0 8px
}

.process-step p {
  font-size: .8rem;
  color: var(--muted);
  margin: 0
}

/* contact/footer */
.contact-wrap {
  padding: 68px;
  background: linear-gradient(120deg, #16140f, #101010);
  border: 1px solid var(--line);
  gap: 60px
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
  margin-top: 35px
}

.contact-cards>a,
.contact-cards>div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .77rem
}

.contact-cards i {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, .3);
  font-size: .72rem
}

.contact-cards small {
  display: block;
  color: #86837c;
  font-size: .61rem;
  margin-bottom: 2px
}

.contact-form {
  padding: 28px;
  border-radius: 5px
}

.contact-form h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 20px
}

.contact-form label {
  display: block;
  color: #c6c2b9;
  font-size: .68rem;
  font-weight: 600;
  margin-bottom: 15px
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  display: block;
  width: 100%;
  margin-top: 5px;
  background: #151515;
  border: 1px solid #34332f;
  color: white;
  padding: 10px 11px;
  outline: 0;
  font-size: .75rem;
  resize: vertical
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold)
}

.contact-form select option {
  background: #151515
}

.contact-form .btn {
  margin-top: 3px;
  width: 100%;
  justify-content: center
}

.form-message {
  height: 15px;
  color: #8bd986;
  font-size: .7rem;
  text-align: center;
  margin: 7px 0 0
}

footer {
  padding: 72px 0 0;
  background: #080808
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.25fr;
  gap: 35px;
  padding-bottom: 55px
}

.footer-brand p {
  max-width: 230px;
  color: var(--muted);
  font-size: .78rem;
  margin: 18px 0
}

.footer-grid h4 {
  font-size: .76rem;
  color: var(--gold-light);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 5px 0 16px
}

.footer-grid>div>a,
.footer-grid>div>p {
  display: block;
  color: #a8a59e;
  font-size: .76rem;
  margin: 0 0 9px
}

.footer-grid>div>a:hover {
  color: var(--gold)
}

.socials {
  display: flex;
  gap: 8px
}

.socials a {
  width: 27px;
  height: 27px;
  border: 1px solid #3c3a35;
  display: grid !important;
  place-items: center;
  color: white !important;
  font-size: .7rem
}

.socials a:hover {
  border-color: var(--gold)
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  color: #76736c;
  font-size: .65rem
}

.back-top {
  position: fixed;
  z-index: 15;
  right: 20px;
  bottom: 20px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #1b1609;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: none
}

.loader {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 99;
  display: grid;
  place-items: center;
  transition: .5s
}

.loader img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  animation: pulse 1s infinite
}

.loader.loaded {
  opacity: 0;
  visibility: hidden
}

@keyframes float {
  50% {
    transform: translateY(-12px)
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes pulse {
  50% {
    transform: scale(.88);
    opacity: .5
  }
}

@media(max-width:900px) {

  .hero-grid,
  .about-grid,
  .featured-grid,
  .contact-wrap {
    gap: 45px
  }

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

  .hero-visual {
    min-height: 420px
  }

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

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

  .process-step {
    padding: 0 12px
  }
}

@media(max-width:700px) {
  .container {
    width: min(100% - 36px, 600px)
  }

  .section-pad {
    padding: 78px 0
  }

  .nav {
    height: 70px
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 15px 24px 23px;
    background: #101010;
    border-bottom: 1px solid var(--line)
  }

  .nav-links.open {
    display: flex
  }

  .nav-links>a:not(.btn) {
    padding: 11px 0
  }

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

  .nav-cta {
    margin: 9px 0 0;
    justify-content: center
  }

  .menu-toggle {
    display: block
  }

  .hero {
    padding-top: 55px
  }

  .hero-grid,
  .about-grid,
  .featured-grid,
  .contact-wrap {
    grid-template-columns: 1fr
  }

  .hero-copy {
    order: 0
  }

  .hero-visual {
    order: 1;
    min-height: 370px
  }

  .dashboard {
    max-width: 440px
  }

  .orbit-two {
    width: 440px;
    height: 440px
  }

  .orbit-one {
    width: 370px;
    height: 370px
  }

  .section-heading {
    display: block;
    margin-bottom: 34px
  }

  .section-heading>p {
    width: auto;
    margin-top: 13px
  }

  .about-grid {
    gap: 14px
  }

  .workspace {
    height: 330px
  }

  .workspace-card {
    width: 88%
  }

  .workspace-tag {
    right: 0;
    bottom: 18px
  }

  .service-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  .service-card {
    padding: 20px 17px
  }

  .service-card .icon-box {
    margin-bottom: 26px
  }

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

  .project-image {
    margin-right: 10px
  }

  .project-screen {
    height: 275px
  }

  .project-stamp {
    right: -18px
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 10px
  }

  .process-grid:before {
    display: none
  }

  .contact-wrap {
    padding: 34px 22px
  }

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

  .footer-brand {
    grid-column: span 2
  }

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

  .footer-bottom {
    gap: 8px;
    flex-direction: column
  }

  .pill-design {
    right: -10px
  }

  .pill-live {
    left: -6px;
    bottom: 10px
  }
}

@media(max-width:420px) {
  h1 {
    font-size: 2.8rem
  }

  .hero-actions,
  .project-actions {
    flex-direction: column;
    align-items: stretch
  }

  .btn {
    justify-content: center
  }

  .hero-visual {
    min-height: 315px
  }

  .dashboard {
    padding: 14px
  }

  .satisfaction strong {
    font-size: 2.45rem
  }

  .metrics {
    gap: 3px
  }

  .orbit-two {
    width: 350px;
    height: 350px
  }

  .service-grid,
  .why-grid,
  .feature-list,
  .contact-cards,
  .form-row {
    grid-template-columns: 1fr
  }

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

  .booking-title {
    left: 18px
  }

  .booking-title h3 {
    font-size: 1.6rem
  }

  .booking-card {
    display: none
  }

  .project-screen {
    height: 245px
  }
}

.progress-ring {
  position: relative
}