:root {
  --bg: #061326;
  --bg-soft: #0b1f3a;
  --panel: rgba(148, 163, 184, 0.105);
  --panel-strong: rgba(56, 189, 248, 0.145);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --muted-2: #94a3b8;
  --gold: #38bdf8;
  --gold-light: #a5f3fc;
  --gold-dark: #0e7490;
  --border: rgba(148, 163, 184, 0.2);
  --shadow: 0 28px 90px rgba(2, 8, 23, 0.5);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-height: 100vh;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection {
  background: rgba(56, 189, 248, 0.35);
  color: #f8fafc;
}

a {
  color: inherit;
}

svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #04111f;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 30%),
    radial-gradient(circle at 75% 10%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #061326 0%, #0b1f3a 45%, #061326 100%);
}

.glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.32;
  background: var(--gold);
}

.glow-one {
  top: 9%;
  left: -90px;
}

.glow-two {
  right: -120px;
  top: 26%;
  background: #f8fafc;
  opacity: 0.11;
}

.glow-three {
  left: 40%;
  bottom: -170px;
  opacity: 0.12;
}

.grid-noise {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at top, black, transparent 75%);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(5, 5, 6, 0.78);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(var(--container), calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.04em;
  flex: 0 0 auto;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #04111f;
  box-shadow: 0 12px 34px rgba(56, 189, 248, 0.24);
}

.logo-text {
  font-size: 1.18rem;
}

.logo-text span {
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.nav-links a,
.mobile-menu-panel a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
}

.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-button:hover {
  transform: translateY(-2px);
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(56, 189, 248, 0.72);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--text);
}

.mobile-menu-panel {
  position: absolute;
  top: 58px;
  right: 0;
  width: min(280px, calc(100vw - 34px));
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(12, 12, 14, 0.96);
  box-shadow: var(--shadow);
}

.mobile-menu-panel a {
  display: block;
  padding: 13px 14px;
  border-radius: 14px;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.hero,
.section,
.icon-dock {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 78px);
  padding: 84px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 900;
}

.eyebrow span {
  width: 32px;
  height: 2px;
  display: inline-block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1,
.section-heading h2,
.about-copy h2,
.contact-card h2 {
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 8vw, 6.5rem);
  font-weight: 900;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 32px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #04111f;
  box-shadow: 0 18px 46px rgba(56, 189, 248, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 22px 60px rgba(56, 189, 248, 0.32);
}

.btn-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

.stats-bar {
  width: min(610px, 100%);
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--border);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
}

.stats-bar div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.stats-bar strong {
  display: block;
  color: var(--gold-light);
  font-size: clamp(1.28rem, 2.6vw, 1.65rem);
  line-height: 1;
}

.stats-bar span {
  display: block;
  margin-top: 6px;
  color: var(--muted-2);
  font-size: 0.86rem;
  text-transform: capitalize;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.browser-card,
.service-card,
.portfolio-card,
.price-card,
.process-panel,
.contact-card {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.browser-card {
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.floating-card {
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.browser-top {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.24);
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.browser-top p {
  min-width: 0;
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted-2);
  font-size: 0.82rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(0, 0, 0, 0.2);
}

.browser-body {
  display: grid;
  grid-template-columns: 68px 1fr;
  min-height: 360px;
}

.preview-sidebar {
  padding: 18px 12px;
  display: grid;
  align-content: start;
  gap: 12px;
  border-right: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.18);
}

.preview-sidebar a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

.preview-sidebar a:first-child {
  color: #04111f;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.preview-main {
  padding: 28px;
  background:
    radial-gradient(circle at 88% 16%, rgba(56, 189, 248, 0.2), transparent 25%),
    rgba(255, 255, 255, 0.02);
}

.preview-pill {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 900;
  background: rgba(56, 189, 248, 0.1);
}

.preview-main h2 {
  margin-top: 18px;
  max-width: 300px;
  font-size: clamp(1.8rem, 5vw, 3.1rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.preview-main p {
  max-width: 340px;
  margin-top: 14px;
  color: var(--muted);
}

.preview-line {
  width: 56%;
  height: 12px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.preview-line.long {
  width: 86%;
  margin-top: 24px;
}

.preview-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.preview-grid div {
  min-height: 86px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
}

.preview-grid span {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.9), rgba(255, 255, 255, 0.18));
}

.mini-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(8, 8, 10, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.mini-card span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #04111f;
  font-weight: 900;
}

.mini-card strong {
  font-size: 0.92rem;
}

.mini-card-one {
  left: -2px;
  bottom: 92px;
}

.mini-card-two {
  right: -4px;
  top: 72px;
}

.icon-dock {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 8px 0 36px;
}

.icon-dock a {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.icon-dock a:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.45);
  background: rgba(56, 189, 248, 0.1);
  color: var(--gold-light);
}

.icon-dock svg {
  font-size: 1.25rem;
}

.section {
  padding: 78px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.centred-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.section-heading h2,
.about-copy h2,
.contact-card h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 900;
}

.section-heading p,
.about-copy p,
.contact-card p,
.price-card p,
.service-card p,
.portfolio-card p,
.process-step p {
  color: var(--muted);
}

.section-heading p {
  max-width: 620px;
  margin-top: 14px;
  font-size: 1.05rem;
}

.centred-heading p {
  margin-left: auto;
  margin-right: auto;
}

.service-grid,
.portfolio-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.price-card {
  position: relative;
  min-height: 300px;
  padding: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-card::before,
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.2), transparent 42%);
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.service-card:hover,
.price-card:hover,
.portfolio-card:hover {
  transform: translateY(-7px);
  border-color: rgba(56, 189, 248, 0.36);
}

.service-card:hover::before,
.price-card:hover::before {
  opacity: 1;
}

.featured-card,
.price-card.popular {
  border-color: rgba(56, 189, 248, 0.52);
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #04111f;
  font-size: 1.35rem;
}

.service-card h3,
.portfolio-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.service-card a,
.portfolio-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 900;
}

.portfolio-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.work-preview {
    height: 250px;
    overflow: hidden;
}

.work-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-preview span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.work-preview.restaurant {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 20% 20%, rgba(165, 243, 252, 0.72), transparent 20%),
    linear-gradient(135deg, #083344, #0f172a 68%);
}

.work-preview.barber {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72)),
    repeating-linear-gradient(135deg, rgba(56, 189, 248, 0.48) 0 10px, transparent 10px 22px),
    linear-gradient(135deg, #0f2744, #020617 70%);
}

.work-preview.fitness {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 75% 35%, rgba(56, 189, 248, 0.65), transparent 22%),
    linear-gradient(135deg, #102033, #07111f 68%);
}

.work-content {
  padding: 24px;
}

.pricing-section {
  padding-top: 60px;
}

.price-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
}

.plan-name,
.badge {
  width: max-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.plan-name {
  border: 1px solid var(--border);
  color: var(--gold-light) !important;
  background: rgba(56, 189, 248, 0.08);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #04111f !important;
}

.price-card h3 {
  margin-bottom: 10px;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.price-card li::before {
  content: "✓";
  color: var(--gold-light);
  font-weight: 900;
}

.price-card .btn {
  margin-top: auto;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.about-copy p {
  max-width: 650px;
  margin-top: 20px;
  font-size: 1.06rem;
}

.process-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-xl);
}

.process-step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.18);
}

.process-step > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--gold-light);
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.contact-section {
  padding-bottom: 96px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 6vw, 64px);
  border-radius: var(--radius-xl);
  text-align: center;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.2), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.11), transparent 28%);
  pointer-events: none;
}

.contact-card > * {
  position: relative;
}

.contact-card p {
  max-width: 630px;
  margin: 18px auto 30px;
  font-size: 1.05rem;
}

.contact-actions {
  justify-content: center;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
  color: var(--muted-2);
  background: rgba(0, 0, 0, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1040px) {
  .nav-links,
  .nav-button {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 64px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .browser-card {
    max-width: 680px;
  }

  .service-grid,
  .portfolio-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid .price-card:last-child,
  .service-grid .service-card:last-child,
  .portfolio-grid .portfolio-card:last-child {
    grid-column: 1 / -1;
  }

  .about-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero,
  .section,
  .icon-dock,
  .navbar {
    width: min(100% - 28px, var(--container));
  }

  .navbar {
    min-height: 70px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 36px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.8rem);
  }

  .hero-text {
    margin: 20px 0 26px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stats-bar div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .stats-bar span {
    margin-top: 0;
    text-align: right;
  }

  .hero-visual {
    min-height: auto;
    padding: 24px 0 34px;
  }

  .browser-body {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    grid-template-columns: repeat(4, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .preview-sidebar a {
    width: 100%;
  }

  .preview-main {
    padding: 24px;
  }

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

  .preview-grid div {
    min-height: 66px;
  }

  .mini-card {
    display: none;
  }

  .icon-dock,
  .service-grid,
  .portfolio-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid .price-card:last-child,
  .service-grid .service-card:last-child,
  .portfolio-grid .portfolio-card:last-child {
    grid-column: auto;
  }

  .icon-dock a {
    min-height: 74px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .service-card,
  .price-card,
  .work-content,
  .process-panel {
    padding: 22px;
  }

  .work-preview {
    min-height: 180px;
  }

  .price-card {
    min-height: auto;
  }

  .badge {
    position: static;
    margin-bottom: 10px;
  }

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

@media (max-width: 430px) {
  .hero,
  .section,
  .icon-dock,
  .navbar {
    width: min(100% - 22px, var(--container));
  }

  .logo-text {
    display: none;
  }

  .mobile-menu-panel {
    right: -2px;
  }

  .browser-top {
    padding: 0 12px;
  }

  .window-dots span {
    width: 9px;
    height: 9px;
  }

  .preview-main,
  .service-card,
  .price-card,
  .work-content,
  .process-panel,
  .contact-card {
    padding: 20px;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-card h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }
}
.preview-main {
    min-width: 0;
}

.preview-main h3 {
    max-width: 360px;
}

.preview-main p {
    max-width: 360px;
}

.browser-body {
    grid-template-columns: 1fr;
}
.preview-grid a {
    padding: 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    color: white;
    font-weight: 800;
    text-align: center;
}