:root {
  --bg: #faf9f7;
  --fg: #1a1a2e;
  --accent: #e07a0a;
  --accent-dark: #c46808;
  --muted: #6b7280;
  --border: #e5e3df;
  --surface: #ffffff;
  --grid-line: rgba(26, 26, 46, 0.05);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.15;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 400;
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--border);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.nav-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero-lede {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.hero-stat-value {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.hero-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* PROCESS */
.process {
  padding: 7rem 2rem;
  background: var(--fg);
  color: #fff;
}

.process-header {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
}

.process-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: #fff;
}

.process-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.process-steps {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.process-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.process-step:last-child {
  border-right: none;
}

.process-step-num {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.process-step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* DIFFERENTIATORS */
.diff {
  padding: 7rem 2rem;
}

.diff-header {
  max-width: 680px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.diff-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.diff-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.diff-card {
  padding: 3rem 2.5rem;
  border: 1px solid var(--border);
  margin: -1px 0 0 -1px;
}

.diff-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
  color: var(--fg);
}

.diff-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
}

/* MANIFESTO */
.manifesto {
  background: #f4f0ea;
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 740px;
  margin: 0 auto;
}

.manifesto-text {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.75;
  color: var(--fg);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.manifesto-text:last-child {
  margin-bottom: 0;
}

/* CLOSING */
.closing {
  padding: 7rem 2rem;
  text-align: center;
}

.closing h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  max-width: 640px;
  margin: 0 auto 1.5rem;
  color: var(--fg);
}

.closing p {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* PRICING */
.pricing {
  padding: 7rem 2rem;
  background: var(--bg);
}

.pricing-header {
  max-width: 640px;
  margin: 0 auto 4rem;
  text-align: center;
}

.pricing-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--fg);
}

.pricing-header p {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  white-space: nowrap;
}

.pricing-tier {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 1rem;
}

.pricing-desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  flex-grow: 0;
}

.pricing-features {
  list-style: none;
  margin: 0 0 2.5rem;
  flex-grow: 1;
}

.pricing-features li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--fg);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: var(--accent);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  flex-shrink: 0;
}

.pricing-cta {
  display: block;
  text-align: center;
  background: var(--fg);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 1.5rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s ease;
  margin-top: auto;
}

.pricing-cta:hover {
  background: var(--accent);
}

.pricing-card--featured .pricing-cta {
  background: var(--accent);
}

.pricing-card--featured .pricing-cta:hover {
  background: var(--accent-dark);
}

.pricing-note {
  max-width: 680px;
  margin: 3rem auto 0;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-note a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.pricing-note a:hover {
  text-decoration: underline;
}
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}

.footer-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  color: var(--muted);
}

/* PRICING */
.pricing {
  padding: 7rem 2rem;
  background: var(--surface);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.pricing-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.pricing-sub {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.pricing-card--featured {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 1px var(--accent);
  position: relative;
}

.pricing-tier-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.pricing-card--featured .pricing-tier-label {
  color: var(--accent);
}

.pricing-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.pricing-tagline {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--fg);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.pricing-check {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card--featured .pricing-check {
  color: var(--accent);
}

.pricing-cta {
  display: inline-block;
  text-align: center;
  padding: 0.875rem 1.5rem;
  border: 1px solid var(--fg);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.pricing-cta:hover {
  background: var(--fg);
  color: var(--bg);
}

.pricing-cta--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.pricing-cta--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.pricing-footnote {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--muted);
}

.pricing-footnote a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pricing-capture {
  margin-top: 3.5rem;
  padding: 2.5rem 2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.capture-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.375rem;
}

.capture-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.capture-form {
  display: flex;
  gap: 0.75rem;
  max-width: 380px;
  margin: 0 auto;
}

.capture-form input[type="email"] {
  flex: 1;
  padding: 0.625rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--fg);
  background: var(--surface);
  transition: border-color 0.15s;
  min-width: 0;
}

.capture-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224,122,10,0.12);
}

.capture-form button {
  padding: 0.625rem 1.5rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.capture-form button:hover { background: var(--accent-dark); }

.capture-success,
.capture-error {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

.capture-success { color: #166534; }
.capture-error   { color: #991b1b; }

@media (max-width: 480px) {
  .capture-form { flex-direction: column; }
}

/* PORTFOLIO */
.portfolio {
  padding: 7rem 2rem;
  background: var(--fg);
  color: #fff;
}

.portfolio-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-header {
  max-width: 640px;
  margin: 0 auto 4rem;
  text-align: center;
}

.portfolio-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.portfolio-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1rem;
}

.portfolio-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.portfolio-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Browser chrome */
.portfolio-preview {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  margin: 1.5rem 1.5rem 0;
}

.preview-browser-bar {
  background: #e8e6e1;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0cec9;
  display: block;
}

.preview-url {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem;
  color: #9a9590;
  margin-left: auto;
  background: #fff;
  padding: 0.125rem 0.5rem;
  border-radius: 3px;
  border: 1px solid #e0ddd8;
}

.preview-site {
  height: 220px;
  overflow: hidden;
  position: relative;
}

/* Restaurant */
.portfolio-preview--restaurant .preview-site {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1f0f 60%, #3d2b14 100%);
}

.portfolio-preview--restaurant .preview-hero-bar {
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e07a0a, #c46808);
}

.preview-logo-mark--text {
  background: none;
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-logo-mark--text::after {
  content: 'W';
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.preview-nav-dots {
  display: flex;
  gap: 0.375rem;
}

.preview-nav-dots::before,
.preview-nav-dots::after {
  content: '';
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.4);
  display: block;
}

.preview-hero-body {
  padding: 1rem 1.25rem;
}

.preview-headline-sm {
  height: 14px;
  width: 70%;
  background: rgba(255,255,255,0.85);
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.preview-text-line {
  height: 10px;
  width: 90%;
  background: rgba(255,255,255,0.35);
  border-radius: 3px;
  margin-bottom: 0.375rem;
}

.preview-text-line--short {
  width: 60%;
}

.preview-cta-btn {
  height: 28px;
  width: 100px;
  background: var(--accent);
  border-radius: 4px;
  margin-top: 0.75rem;
}

.preview-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.75rem 1rem;
}

.preview-menu-item {
  height: 50px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}

/* Law */
.portfolio-preview--law .preview-site {
  background: linear-gradient(180deg, #1a1a2e 0%, #2a3040 100%);
}

.portfolio-preview--law .preview-hero-body {
  padding: 1rem 1.25rem;
}

/* Dental */
.portfolio-preview--dental .preview-site {
  background: linear-gradient(135deg, #eef8f5 0%, #c8e6d8 100%);
}

.portfolio-preview--dental .preview-logo-mark {
  background: linear-gradient(135deg, #2a9d8f, #1a7a6e);
}

.portfolio-preview--dental .preview-nav-dots::before,
.portfolio-preview--dental .preview-nav-dots::after {
  background: rgba(26,26,46,0.3);
}

.portfolio-preview--dental .preview-headline-sm {
  background: #1a1a2e;
}

.portfolio-preview--dental .preview-text-line {
  background: rgba(26,26,46,0.15);
}

.portfolio-preview--dental .preview-cta-btn {
  background: #2a9d8f;
}

.preview-services {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  flex-wrap: wrap;
}

.preview-service-pill {
  height: 22px;
  width: 60px;
  background: rgba(42,157,143,0.2);
  border: 1px solid rgba(42,157,143,0.4);
  border-radius: 20px;
}

/* Attorney cards for law */
.preview-attorneys {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.5rem 1rem;
}

.preview-attorney-card {
  height: 50px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}

/* Card body */
.portfolio-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.portfolio-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}

.portfolio-tier {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(224,122,10,0.15);
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
}

.portfolio-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.portfolio-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.portfolio-card-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.portfolio-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.portfolio-features li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.portfolio-features li::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: var(--accent);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  flex-shrink: 0;
}

.portfolio-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease;
}

.portfolio-cta:hover {
  color: #fff;
}

.portfolio-footer {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  gap: 2rem;
  flex-wrap: wrap;
}

.portfolio-footer p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
}

.portfolio-main-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 0.875rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.portfolio-main-cta:hover {
  background: var(--accent-dark);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pricing {
    padding: 5rem 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .hero {
    padding-top: 7rem;
    min-height: auto;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

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

  .process-step {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .process-step:last-child {
    border-bottom: none;
  }

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

  .footer-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat-value {
    font-size: 1.375rem;
  }
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card--featured {
    order: -1;
  }

  .pricing-badge {
    display: none;
  }
}

/* TRUST BADGES */
.trust-signals {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0 2rem;
}

.trust-badge-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
}

.trust-badge-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  white-space: nowrap;
}

.trust-badge-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}

/* TESTIMONIALS */
.testimonials {
  padding: 7rem 2rem;
  background: var(--bg);
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.testimonials-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1rem;
}

.testimonials-sub {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-quote-mark {
  color: var(--accent);
  opacity: 0.4;
}

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--fg);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--fg);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.testimonial-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
}

.testimonial-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 7rem 2rem;
  background: var(--fg);
  color: #fff;
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.how-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 3rem;
}

.how-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.how-step:last-child {
  border-right: none;
}

.how-step-num {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.how-step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.how-step p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.how-cta-row {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.how-cta {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 0.875rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.how-cta:hover {
  background: var(--accent-dark);
}

/* Responsive */
@media (max-width: 900px) {
  .trust-badges {
    gap: 1rem;
  }

  .trust-badge {
    padding: 0.5rem 1rem;
  }

  .trust-badge-divider {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .how-step {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .how-step:last-child {
    border-bottom: none;
  }
}