
/* ─────────────────────────────────────────
   ROOT & RESET
───────────────────────────────────────── */
:root {
  --black:   #0b0a09;
  --ink:     #1a1916;
  --cream:   #f8f5ef;
  --warm:    #fdfcf9;
  --gold:    #c09a3f;
  --gold-lt: #d4b265;
  --muted:   #7d766d;
  --border:  #e5e0d5;
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Jost', sans-serif;
  --pad-x:   clamp(24px, 7vw, 100px);
  --pad-y:   clamp(80px, 11vw, 150px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--warm);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 999;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: 1.25rem; }

p  {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
}

.gold { color: var(--gold); }
.italic { font-style: italic; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad-x);
  background: rgba(253,252,249,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 24px;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  transition: background 0.22s, color 0.22s;
}
.nav-cta-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.24s, color 0.24s, border-color 0.24s;
  white-space: nowrap;
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #a8832e;
  border-color: #a8832e;
}

/* ─────────────────────────────────────────
   SECTION BASE
───────────────────────────────────────── */
section {
  padding: var(--pad-y) var(--pad-x);
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-intro {
  max-width: 560px;
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.85;
  margin-top: 20px;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

#hero::after {
  content: 'HK';
  font-family: var(--serif);
  font-size: clamp(160px, 22vw, 300px);
  font-weight: 700;
  color: rgba(192,154,63,0.05);
  position: absolute;
  right: -2vw;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  letter-spacing: -0.05em;
  line-height: 1;
  user-select: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;

}
.hero-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

#hero h1 {
  max-width: 800px;

}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: 22px;
  margin-bottom: 44px;
  font-style: italic;
  font-family: var(--serif);

}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;

  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;

  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.trust-item {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item::before {
  content: '✔';
  color: var(--gold);
  font-size: 0.72rem;
}

/* ─────────────────────────────────────────
   WHO THIS IS FOR
───────────────────────────────────────── */
#who { background: var(--ink); }
#who .section-tag { color: var(--gold-lt); }
#who .section-tag::before { background: var(--gold-lt); }
#who h2 { color: var(--cream); }
#who .section-intro { color: rgba(248,245,239,0.55); }

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.who-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.97rem;
  font-weight: 300;
  color: rgba(248,245,239,0.8);
  line-height: 1.6;
}
.who-list li:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.who-list .check { color: var(--gold-lt); font-size: 0.8rem; padding-top: 2px; }

.who-aside {
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 100px;
}

.who-aside-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
}

.who-aside-text {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 28px;
}

.who-aside-note {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(248,245,239,0.4);
  line-height: 1.7;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ─────────────────────────────────────────
   PROBLEM
───────────────────────────────────────── */
#problem { background: var(--warm); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}

.problem-items {
  display: flex;
  flex-direction: column;
}

.problem-item {
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
.problem-item:first-child { border-top: 1px solid var(--border); }

.problem-item-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

.problem-item-body {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
}

.problem-callout {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 48px;
  position: sticky;
  top: 100px;
}

.problem-callout-q {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 24px;
}

.problem-callout-note {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   SOLUTION
───────────────────────────────────────── */
#solution { background: var(--cream); }

.solution-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 56px;
  margin-bottom: 80px;
}

.solution-deliverables {
  display: flex;
  flex-direction: column;
}

.deliverable {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.deliverable:first-child { border-top: 1px solid var(--border); }

.deliverable-num {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gold);
  padding-top: 2px;
}

.deliverable-title {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.deliverable-desc {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

.solution-process-card {
  padding: 48px;
  background: var(--ink);
  color: var(--cream);
  position: sticky;
  top: 100px;
}

.process-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 32px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.process-step:last-child { border-bottom: none; }

.step-num {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(192,154,63,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-lt);
  flex-shrink: 0;
  margin-top: 2px;
}

.step-body { }
.step-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}
.step-desc {
  font-size: 0.8rem;
  color: rgba(248,245,239,0.45);
  font-weight: 300;
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
#about { background: var(--warm); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

.about-photo-col { }

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 400;
  color: rgba(192,154,63,0.25);
  letter-spacing: -0.05em;
  user-select: none;
}

.about-photo-caption {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.caption-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.caption-item:first-child { border-top: 1px solid var(--border); }
.caption-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.about-content { }

.about-content h2 { margin-bottom: 28px; }

.about-bio {
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 560px;
}

.about-signature {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--gold);
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ─────────────────────────────────────────
   PORTFOLIO
───────────────────────────────────────── */
#portfolio { background: var(--cream); }

.portfolio-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 56px;
}

.portfolio-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s;
  background: var(--warm);
}
.portfolio-card:hover {
  box-shadow: 0 24px 70px rgba(0,0,0,0.08);
}

/* Summary bar at top */
.portfolio-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 36px;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.portfolio-project-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.12);
  line-height: 1;
}

.portfolio-summary-mid { }

.portfolio-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}

.portfolio-desc {
  font-size: 0.8rem;
  color: rgba(248,245,239,0.38);
  font-weight: 300;
  line-height: 1.65;
  max-width: 560px;
}

.portfolio-result {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.portfolio-result::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold-lt);
}

/* Side-by-side previews */
.portfolio-previews {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.portfolio-col {
  display: flex;
  flex-direction: column;
}

.portfolio-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
}

.portfolio-before > .portfolio-col-header {
  background: #f0ebe2;
  border-right: 1px solid var(--border);
}
.portfolio-after > .portfolio-col-header {
  background: #fdfcf9;
}

.portfolio-col-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.portfolio-before .portfolio-col-label { color: #a09080; }
.portfolio-after  .portfolio-col-label { color: var(--gold); }

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.ptag {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--border);
}
.ptag.neg { border-color: #d8c8b0; color: #a08060; background: rgba(160,128,96,0.06); }
.ptag.pos { border-color: rgba(192,154,63,0.35); color: var(--gold); background: rgba(192,154,63,0.05); }

/* iframe preview window */
.preview-window {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.portfolio-before .preview-window {
  border-right: 1px solid var(--border);
}

.preview-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #e8e3dc;
  border-bottom: 1px solid #d8d0c8;
}
.portfolio-after .preview-bar {
  background: #eeebe4;
}

.dot-r, .dot-y, .dot-g {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.preview-url {
  flex: 1;
  background: rgba(255,255,255,0.5);
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 0.58rem;
  color: #888;
  font-family: monospace;
  letter-spacing: 0;
}

.preview-iframe-wrap {
  width: 100%;
  height: 380px;
  position: relative;
  overflow: hidden;
}

.preview-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 170%;
  height: 170%;
  border: none;
  transform: scale(0.588);
  transform-origin: top left;
  pointer-events: none;
}

/* disable pointer events overlay so card is hoverable */
.preview-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: default;
}

/* ─────────────────────────────────────────
   PRICING
───────────────────────────────────────── */
#pricing { background: var(--warm); }

.pricing-card {
  max-width: 760px;
  margin: 56px auto 0;
  border: 1px solid var(--border);
  position: relative;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

.pricing-top {
  padding: 56px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
}

.pricing-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.pricing-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}

.pricing-anchor {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 340px;
}

.pricing-price {
  text-align: right;
}

.price-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.price-period {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.pricing-deliverables {
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pricing-del-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink);
}
.pricing-del-item:nth-last-child(-n+2) { border-bottom: none; }

.check-gold {
  color: var(--gold);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.pricing-bottom {
  padding: 40px 56px;
  background: var(--cream);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.scarcity {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.scarcity span {
  color: var(--gold);
  font-weight: 600;
}

/* ─────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────── */
#finalcta {
  background: var(--ink);
  text-align: center;
}

#finalcta h2 {
  color: var(--cream);
  max-width: 620px;
  margin: 0 auto 20px;
}

#finalcta p {
  color: rgba(248,245,239,0.5);
  max-width: 480px;
  margin: 0 auto 48px;
  font-size: 1rem;
}

.finalcta-note {
  margin-top: 18px;
  font-size: 0.78rem !important;
  color: rgba(248,245,239,0.28) !important;
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--black);
  padding: 32px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.04);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(248,245,239,0.35);
}
.footer-logo span { color: var(--gold); }

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248,245,239,0.22);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.7rem;
  color: rgba(248,245,239,0.18);
  letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.75s ease, transform 0.75s ease;
}
body.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
}
body.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .who-grid,
  .problem-grid,
  .solution-top,
  .about-grid { grid-template-columns: 1fr; gap: 48px; }

  .portfolio-previews { grid-template-columns: 1fr; }
  .portfolio-before .preview-window { border-right: none; border-bottom: 1px solid var(--border); }
  .portfolio-summary { grid-template-columns: 1fr; gap: 12px; }
  .portfolio-result { display: none; }

  .pricing-top { grid-template-columns: 1fr; }
  .pricing-price { text-align: left; }
  .pricing-deliverables { grid-template-columns: 1fr; }
  .pricing-del-item:last-child { border-bottom: none; }

  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .pricing-bottom { flex-direction: column; text-align: center; }
  .pricing-deliverables { padding: 32px; }
  .pricing-top { padding: 36px; }
  .pricing-bottom { padding: 28px 36px; }
}
