/* JWW Web — Jaskulski Worldwide theme */
:root {
  --bg: #000000;
  --bg-elevated: #0a0a0a;
  --bg-card: #111111;
  --brown: #332c2b;
  --teal: #76b5a4;
  --teal-dim: #5a9688;
  --teal-glow: rgba(118, 181, 164, 0.25);
  --gold: #d4af37;
  --gold-dim: #c5a059;
  --gold-glow: rgba(212, 175, 55, 0.2);
  --text: #f2f0eb;
  --text-muted: #a8a29e;
  --border: rgba(212, 175, 55, 0.25);
  --border-teal: rgba(118, 181, 164, 0.35);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-teal: 4px 4px 0 var(--teal-dim);
  --shadow-gold: 4px 4px 0 rgba(197, 168, 90, 0.5);
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Pacifico", cursive;
  --header-h: 72px;
  --container: min(1120px, 100% - 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* hidden (not clip): clip on the viewport breaks hash / scrollIntoView scrolling */
  overflow-x: hidden;
  /* Keep hash / nav targets clear of the sticky header */
  scroll-padding-top: var(--header-h);
}

#services,
#packages,
#about,
#contact,
#main {
  scroll-margin-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container-wide {
  width: min(1400px, 100% - 1.25rem);
  margin-inline: auto;
}

/* Transparent PNG logos — no matte box on black */
.img-transparent,
.brand-logo,
.hero-wordmark,
.footer-logo {
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  -webkit-filter: none !important;
}

.section-full {
  width: 100%;
}

.section-head {
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-head-wide h2,
.section-head h2 {
  max-width: none;
  margin-inline: auto;
}

.section-head .eyebrow,
.section-head .contact-lead,
.section-head .page-lead {
  margin-inline: auto;
}

.section-head .contact-lead,
.hero-lead {
  margin-inline: auto;
}

.hero-full {
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 2.5rem 0 3.5rem;
}

.hero-full .hero-grid {
  width: 100%;
}

.hero-full .hero-lead {
  max-width: 52ch;
}

@media (min-width: 900px) {
  .hero-full {
    padding: 3rem 0 4rem;
  }

  .hero-full .hero-title {
    font-size: clamp(2.25rem, 4vw, 3.75rem);
  }
}

.section-full {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.card-grid-full,
.pricing-grid-full,
.work-grid-full {
  width: 100%;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--teal);
  color: var(--bg);
  border-radius: var(--radius);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.98);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
  isolation: isolate;
}

.brand-logo {
  width: auto;
  height: 44px;
  object-fit: contain;
  object-position: left center;
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal;
  border: none;
  outline: none;
  padding: 0;
  vertical-align: top;
  image-rendering: auto;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--border-teal);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--teal);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  flex-direction: column;
  padding: 1rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  padding: 0.875rem 1rem;
  color: var(--text);
  font-weight: 500;
  border-radius: var(--radius);
}

.site-nav a:hover {
  background: rgba(118, 181, 164, 0.1);
  color: var(--teal);
}

.site-nav a.nav-login {
  color: var(--text-muted);
  font-weight: 500;
}

.site-nav a.nav-login:hover {
  color: var(--teal);
}

.nav-cta {
  background: var(--teal) !important;
  color: var(--bg) !important;
  text-align: center;
  font-weight: 600 !important;
  margin-top: 0.5rem;
  border: 2px solid transparent;
  line-height: 1.25;
  cursor: pointer;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--bg) !important;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: none;
    gap: 0.25rem;
  }

  .site-nav a {
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 0.35rem;
    min-height: 40px;
    padding: 0.45rem 1rem !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
  }

  .brand-logo {
    height: 48px;
  }
}

/* Typography helpers */
.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.accent-teal {
  color: var(--teal);
}

.accent-gold {
  color: var(--gold);
}

.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 auto;
  max-width: 24ch;
}

/* Buttons — shared sizing for <a> and <button> */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  vertical-align: middle;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

a.btn:hover {
  text-decoration: none;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn:active:not(:disabled):not([disabled]) {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--teal);
  color: var(--bg);
  box-shadow: var(--shadow-teal);
}

.btn-primary:hover:not(:disabled):not([disabled]) {
  background: var(--gold);
  color: var(--bg);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-secondary:hover:not(:disabled):not([disabled]) {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--border-teal);
}

.btn-outline:hover:not(:disabled):not([disabled]) {
  border-color: var(--teal);
  background: rgba(118, 181, 164, 0.08);
  color: var(--teal);
}

.btn-danger {
  background: #8b2e2e;
  color: #fff;
  border-color: #8b2e2e;
  box-shadow: 4px 4px 0 #5c1e1e;
}

.btn-danger:hover:not(:disabled):not([disabled]) {
  background: #a33a3a;
  color: #fff;
  border-color: #a33a3a;
}

.btn-full {
  width: 100%;
}

/* Pricing card CTAs span the card (was previously only on .btn-outline) */
.price-card > .btn {
  width: 100%;
  margin-top: auto;
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--teal-glow), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, var(--gold-glow), transparent),
    var(--bg);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.hero-copy {
  width: 100%;
  max-width: 640px;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 auto 1rem;
  max-width: 22ch;
}

.hero-lead {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--text-muted);
  margin: 0 auto 1.75rem;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  justify-content: center;
}

.hero-stats li {
  text-align: center;
  min-width: 5rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.25rem;
  color: var(--teal);
}

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

.hero-wordmark {
  width: min(100%, 560px);
  height: auto;
  margin-inline: auto;
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  -webkit-filter: none !important;
}

.hero-card {
  width: 100%;
  max-width: 420px;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-teal);
  text-align: center;
}

.hero-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-card p {
  margin: 0.35rem 0 0;
  font-size: 1.0625rem;
}

@media (min-width: 900px) {
  .hero {
    padding: 4.5rem 0 5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    justify-items: center;
  }

  .hero-visual {
    align-items: center;
    width: 100%;
  }
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

/* Feature cards */
.card-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease, transform 0.2s ease;
  text-align: center;
}

.feature-card:hover {
  border-color: var(--border-teal);
  transform: translateY(-2px);
}

.feature-icon {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.price-card-featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), var(--shadow-teal);
}

.badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg);
  border-radius: 999px;
  white-space: nowrap;
}

.price-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: var(--gold);
}

.price {
  margin: 0;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}

.price-currency {
  font-size: 1.5rem;
  vertical-align: super;
  color: var(--teal);
}

.price-desc {
  margin: 0.5rem 0 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.price-card ul {
  flex: 1;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 0;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  list-style: none;
}

.price-card li::before {
  content: "• ";
  color: var(--teal);
}

.pricing-note {
  margin: 2rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .price-card-featured {
    transform: scale(1.03);
  }
}

/* Work / portfolio placeholders */
.work-grid {
  display: grid;
  gap: 1.25rem;
}

.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.work-preview {
  display: flex;
  align-items: flex-end;
  min-height: 160px;
  padding: 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.work-preview-contractor {
  background:
    linear-gradient(180deg, transparent 30%, rgba(15, 20, 25, 0.9)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=600&q=80") center/cover;
  color: var(--gold);
}

.work-preview-fitness {
  background:
    linear-gradient(180deg, transparent 30%, rgba(10, 10, 10, 0.92)),
    url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=600&q=80") center/cover;
  color: var(--teal);
}

.work-preview-connect-plus {
  background:
    linear-gradient(180deg, transparent 25%, rgba(15, 15, 20, 0.92)),
    linear-gradient(135deg, rgba(99, 102, 241, 0.35), rgba(139, 92, 246, 0.2)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=600&q=80") center/cover;
  color: #a5b4fc;
}

.work-card h3 {
  margin: 1rem 1.25rem 0.35rem;
  font-size: 1.125rem;
  text-align: center;
}

.work-card p {
  margin: 0 1.25rem 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-align: center;
}

.work-link {
  display: block;
  margin: 0 1.25rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: center;
}

.work-all {
  margin: 2rem 0 0;
  text-align: center;
}

@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* About */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.about-copy {
  width: 100%;
  max-width: 680px;
}

.about-copy p {
  color: var(--text-muted);
}

.about-copy p strong {
  color: var(--text);
}

.about-list {
  margin: 1.5rem auto 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  text-align: left;
  max-width: 100%;
}

.about-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
}

.about-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--teal);
}

.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 340px;
  padding: 0;
  background: transparent;
  border: none;
}

.headshot-frame {
  width: min(100%, 300px);
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
  line-height: 0;
}

.headshot {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 4 / 5;
  display: block;
}

.signature {
  margin: 1.75rem auto 0;
  width: min(100%, 260px);
  height: auto;
  opacity: 0.95;
  display: block;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Contact */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  text-align: center;
}

.contact-lead {
  color: var(--text-muted);
  margin: 0.75rem auto 0;
  max-width: 48ch;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  text-align: left;
}

.contact-fiverr-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--text-muted);
  text-align: center;
}

.form-row label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--teal);
  min-height: 1.25rem;
}

.form-note.is-sent {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius);
}

.fiverr-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #1dbf73;
  background: rgba(29, 191, 115, 0.08);
  border: 1px solid rgba(29, 191, 115, 0.25);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.fiverr-link:hover {
  color: #1dbf73;
  background: rgba(29, 191, 115, 0.18);
  border-color: #1dbf73;
  transform: translateY(-1px);
}

.fiverr-icon {
  display: block;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  max-width: 28px;
  max-height: 28px;
  object-fit: contain;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  height: 36px;
  width: auto;
  opacity: 0.9;
}

.back-top {
  font-weight: 500;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0, 0, 0, 0.98);
  }

  .header-inner {
    gap: 1.25rem;
    padding-block: 0.5rem;
  }

  .brand,
  .brand:hover,
  .brand:focus,
  .brand:active {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
  }

  .brand-logo,
  .hero-wordmark,
  .footer-logo {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    mix-blend-mode: normal;
    transform: none;
    -webkit-backface-visibility: visible;
    will-change: auto;
  }

  .brand-logo {
    height: 38px;
    max-width: min(42vw, 160px);
  }

  .nav-toggle {
    flex-shrink: 0;
  }

  .hero-full {
    min-height: auto;
    align-items: stretch;
    padding: 0;
  }

  .hero-full .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .hero-copy {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100svh - var(--header-h));
    padding: 1.25rem 0 2rem;
  }

  .hero-copy .eyebrow {
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    max-width: none;
    margin-bottom: 1.25rem;
    line-height: 1.2;
  }

  .hero-lead {
    margin-bottom: 1.75rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions .btn {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 40px;
    padding: 0.5rem 0.9rem;
    font-size: 0.875rem;
  }

  .hero-stats {
    justify-content: center;
    gap: 1.25rem 2rem;
    margin-top: 0;
    padding-top: 0;
  }

  .hero-visual {
    gap: 0;
    margin-top: 0;
    padding: 3.5rem 0 3rem;
    border-top: 1px solid var(--border);
  }

  .hero-wordmark {
    width: min(100%, 420px);
  }

  .section-full {
    padding: clamp(3rem, 8vw, 4rem) 0;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .section-head .eyebrow {
    margin-bottom: 1rem;
  }

  .price-card-featured {
    transform: none;
  }

  .contact {
    gap: 2rem;
    padding-top: 0.5rem;
  }

  .contact-lead {
    margin-top: 1rem;
    line-height: 1.65;
  }

  .contact-form {
    gap: 1.5rem;
  }

  .contact-fiverr-note {
    font-size: 0.75rem;
    line-height: 1.5;
    padding: 0 1rem;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    font-size: 16px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
