/* ============================================
   CSS Variables & Theme
   ============================================ */
:root {
  /* Light theme */
  --bg: #f4f4f2;
  --panel: #ffffff;
  --text: #000000;
  --muted: #334155;
  --line: rgba(31, 35, 40, 0.15);
  --accent: #000000;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  --radius: 18px;
  --radius2: 22px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}

:root[data-theme="dark"] {
  --bg: #0b0f14;
  --panel: #0f1620;
  --text: #e7edf5;
  --muted: #a9b6c7;
  --line: rgba(231, 237, 245, 0.1);
  --accent: #e7edf5;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
}

/* ============================================
   Base Styles
   ============================================ */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  letter-spacing: 0.2px;
  text-align: left;
}

body {
  background:
    radial-gradient(1100px 700px at 15% -10%, rgba(242, 184, 75, 0.16), transparent 55%),
    radial-gradient(900px 650px at 80% 10%, rgba(120, 166, 255, 0.1), transparent 50%),
    radial-gradient(900px 900px at 50% 120%, rgba(242, 184, 75, 0.1), transparent 55%),
    linear-gradient(180deg, var(--bg), #070a0e);
}

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 980px) {
  .wrap {
    padding: 0 28px;
  }
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding: 0 16px;
  }
}

/* ============================================
   Header
   ============================================ */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 244, 242, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

:root[data-theme="dark"] header {
  background: rgba(11, 15, 20, 0.85);
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 24px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.brand-subtitle {
  margin-top: 2px;
}

.logo {
  display: none;
}

nav {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

nav a {
  padding: 8px 10px;
  border-radius: 10px;
  transition: background-color 150ms ease, color 150ms ease;
}

nav a:hover {
  background: rgba(231, 237, 245, 0.06);
  color: var(--text);
}

nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.actions .btn.secondary.small {
  flex-shrink: 0;
  width: auto;
  min-width: auto;
  padding: 10px;
}

.actions .btn:not(.small) {
  flex-shrink: 0;
  width: auto;
  white-space: nowrap;
  padding: 12px 18px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(31, 35, 40, 0.22);
  background: var(--text);
  color: #fff;
  font-weight: 650;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  text-align: center;
  min-height: 40px;
  box-sizing: border-box;
}

:root[data-theme="dark"] .btn {
  background: var(--text);
  color: #0b0f14;
  border-color: rgba(231, 237, 245, 0.25);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

:root[data-theme="dark"] .btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn.secondary {
  border: 1px solid rgba(31, 35, 40, 0.22);
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

.btn.secondary:hover {
  background: rgba(31, 35, 40, 0.04);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

:root[data-theme="dark"] .btn.secondary {
  border-color: rgba(231, 237, 245, 0.18);
  background: transparent;
  color: var(--text);
}

:root[data-theme="dark"] .btn.secondary:hover {
  background: rgba(231, 237, 245, 0.06);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn.small {
  padding: 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 650;
  width: auto;
  min-width: auto;
  height: 40px;
  aspect-ratio: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.iconbtn {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
}

.iconbtn svg {
  display: none;
}

:root:not([data-theme="dark"]) .iconbtn .moon {
  display: block;
}

:root[data-theme="dark"] .iconbtn .sun {
  display: block;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  padding-top: 100px;
  padding-bottom: 60px;
}

@media (max-width: 980px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 50px;
    padding-bottom: 32px;
  }
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: stretch;
}

.hCard {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 34px;
  overflow: hidden;
  position: relative;
}

.kicker {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 4px;
  text-align: left;
}

.hCard:first-child .kicker {
  margin-top: 0;
}

h1 {
  margin: 12px 0 10px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.8px;
  text-align: left;
  color: var(--text);
  font-weight: 800;
}

.lead {
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px;
  text-align: left;
  opacity: 0.8;
}

.heroCtas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.meta {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(31, 35, 40, 0.18);
  background: rgba(31, 35, 40, 0.04);
  transition: background-color 150ms ease, border-color 150ms ease;
}

.pill:hover {
  background: rgba(31, 35, 40, 0.06);
  border-color: rgba(31, 35, 40, 0.25);
}

:root[data-theme="dark"] .pill {
  border-color: rgba(231, 237, 245, 0.2);
  background: rgba(231, 237, 245, 0.08);
  color: var(--text);
}

:root[data-theme="dark"] .pill:hover {
  background: rgba(231, 237, 245, 0.12);
  border-color: rgba(231, 237, 245, 0.25);
}

.preview {
  padding: 0;
}

.previewTop {
  padding: 22px 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.previewTitle {
  font-weight: 700;
  text-align: left;
}

.mini {
  font-size: 12px;
  color: var(--muted);
}

.previewBody {
  padding: 18px 22px 24px;
  display: grid;
  gap: 14px;
}

.miniCard {
  border-radius: 16px;
  border: 1px solid rgba(231, 237, 245, 0.1);
  background: rgba(7, 10, 14, 0.35);
  padding: 14px;
}

:root[data-theme="dark"] .miniCard {
  border-color: rgba(231, 237, 245, 0.15);
  background: rgba(231, 237, 245, 0.06);
}

.miniCard b {
  display: block;
  margin-bottom: 6px;
  text-align: left;
}

.miniCard p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

.spark {
  display: none;
}

/* ============================================
   Sections
   ============================================ */
section {
  padding: 80px 0;
  scroll-margin-top: 80px;
}

@media (max-width: 640px) {
  section {
    padding: 56px 0;
    scroll-margin-top: 60px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 40px 0;
    scroll-margin-top: 60px;
  }
}

.sectionTitle {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.3px;
  font-weight: 800;
  line-height: 1.3;
  text-align: left;
  color: var(--text);
}

.sub {
  color: var(--text);
  max-width: 70ch;
  line-height: 1.6;
  margin: 8px 0 0;
  font-size: 15px;
  text-align: left;
  opacity: 0.7;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card h3,
.card-title,
.hCard-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.1px;
  line-height: 1.4;
  color: var(--text);
}

.hCard-title {
  margin-top: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
  text-align: left;
}

.icon {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 184, 75, 0.26);
  background: rgba(242, 184, 75, 0.08);
  margin-bottom: 10px;
}

.icon svg {
  opacity: 0.95;
}

/* ============================================
   Steps
   ============================================ */
.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(231, 237, 245, 0.1);
  background: rgba(231, 237, 245, 0.04);
  transition: background-color 150ms ease, border-color 150ms ease;
}

.step:hover {
  background: rgba(231, 237, 245, 0.06);
  border-color: rgba(231, 237, 245, 0.15);
}

.num {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 184, 75, 0.3);
  background: rgba(242, 184, 75, 0.1);
  color: rgba(242, 184, 75, 0.98);
  font-weight: 800;
  flex: 0 0 auto;
}

.step b {
  display: block;
  margin-bottom: 4px;
  text-align: left;
}

.step span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
  text-align: left;
}

/* ============================================
   Pricing
   ============================================ */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}

.priceCard {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.priceCard-featured {
  border-color: rgba(242, 184, 75, 0.24);
}

.btn-full {
  margin-top: auto;
  display: flex;
  width: 100%;
  justify-content: center;
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  color: var(--muted);
  border: 1px solid rgba(31, 35, 40, 0.18);
  background: rgba(31, 35, 40, 0.04);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 750;
  white-space: nowrap;
  text-align: center;
  z-index: 1;
  line-height: 1.2;
}

:root[data-theme="dark"] .badge {
  color: var(--muted);
  border-color: rgba(231, 237, 245, 0.18);
  background: rgba(231, 237, 245, 0.08);
}

.priceCard .priceHead {
  padding-top: 32px;
}

.priceCard .priceHead > div:last-child {
  padding-right: 0;
  margin-right: 0;
}

.priceHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.priceTitle {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.2px;
  line-height: 1.3;
  text-align: left;
  margin: 0;
  color: var(--text);
}

.priceHead > div:first-child {
  flex: 1;
  min-width: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.priceHead > div:last-child {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 4px;
  min-width: 0;
  margin-left: auto;
}

.price {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.2px;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
  display: block;
  margin: 0;
  padding: 0;
  color: var(--text);
}

.fine {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  display: block;
  text-align: left;
  margin: 0;
}

.priceHead > div:first-child .fine {
  margin-top: 4px;
  text-align: left;
}

.priceHead > div:last-child .fine {
  text-align: right;
  margin-top: 0;
  display: block;
  line-height: 1.4;
}

ul {
  margin: 12px 0 0;
  padding: 0 0 0 20px;
  color: var(--muted);
  flex-grow: 1;
  list-style-position: outside;
}

li {
  margin: 6px 0;
  line-height: 1.6;
  font-size: 14px;
  text-align: left;
  color: var(--text);
}

/* ============================================
   FAQ
   ============================================ */
details {
  border: 1px solid rgba(231, 237, 245, 0.1);
  background: rgba(231, 237, 245, 0.04);
  border-radius: 16px;
  padding: 12px 14px;
}

details + details {
  margin-top: 10px;
}

summary {
  cursor: pointer;
  font-weight: 750;
  padding: 4px 0;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  display: none;
}

summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* ============================================
   Mockups Section
   ============================================ */
.mockups-section {
  padding: 80px 0;
}

.mockups-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

@media (max-width: 980px) {
  .mockups-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .mockups-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    margin-top: 32px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .mockups-grid::-webkit-scrollbar {
    height: 4px;
  }

  .mockups-grid::-webkit-scrollbar-track {
    background: transparent;
  }

  .mockups-grid::-webkit-scrollbar-thumb {
    background: var(--line);
    border-radius: 2px;
  }

  .mockup-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }

  .mockup-frame {
    max-width: 100%;
    cursor: pointer;
  }
}

.mockup-item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.mockup-link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.mockup-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--panel);
  border: 1px solid var(--line);
  transition: transform 200ms ease, box-shadow 200ms ease;
  cursor: pointer;
}

.mockup-frame:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
}

:root[data-theme="dark"] .mockup-frame:hover {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.mockup-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* ============================================
   Modal
   ============================================ */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background-color 200ms ease, transform 200ms ease;
  z-index: 1002;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.modal-close:active {
  transform: scale(0.95);
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 640px) {
  .modal {
    padding: 0;
  }

  .modal-content {
    max-width: 100vw;
    max-height: 100vh;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
  }

  .modal-image {
    max-height: calc(100vh - 60px);
    max-width: 100%;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .modal-close svg {
    width: 18px;
    height: 18px;
  }
}

/* ============================================
   CTA Section
   ============================================ */
#contact {
  display: none;
}

.cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: stretch;
}

.ctaBox {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.ctaBox h2 {
  margin: 0 0 8px;
  text-align: left;
}

.ctaBox p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  text-align: left;
}

.form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

input,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(31, 35, 40, 0.14);
  background: #fff;
  color: var(--text);
  outline: none;
  font-family: inherit;
  font-size: 14px;
}

:root[data-theme="dark"] input,
:root[data-theme="dark"] textarea {
  background: rgba(7, 10, 14, 0.35);
  border-color: rgba(231, 237, 245, 0.14);
}

textarea {
  min-height: 96px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(31, 35, 40, 0.35);
  box-shadow: 0 0 0 3px rgba(31, 35, 40, 0.05);
}

:root[data-theme="dark"] input:focus,
:root[data-theme="dark"] textarea:focus {
  border-color: rgba(231, 237, 245, 0.25);
  box-shadow: 0 0 0 3px rgba(231, 237, 245, 0.05);
}

/* ============================================
   Footer
   ============================================ */
footer {
  padding: 22px 0 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: transparent;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
}

.foot-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   Transitions
   ============================================ */
body,
header,
.hCard,
.card,
.ctaBox,
input,
textarea,
details,
nav a {
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  body,
  header,
  .hCard,
  .card,
  .ctaBox,
  input,
  textarea,
  .btn,
  details,
  nav a {
    transition: none !important;
  }

  .btn:hover {
    transform: none !important;
  }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 980px) {
  header {
    padding-left: 0;
    padding-right: 0;
  }

  header .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  section {
    padding: 64px 0;
  }

  .heroGrid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  h2 {
    font-size: 26px;
  }

  .hCard {
    padding: 28px;
  }

  .grid3,
  .grid2 {
    grid-template-columns: 1fr;
  }

  .pricing,
  .cta {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }

  .actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .brand {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .brand .mini {
    font-size: 11px;
  }
}

@media (max-width: 640px) {
  header {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  header .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .top {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0 20px;
    gap: 16px;
    width: 100%;
  }

  .brand {
    flex-wrap: nowrap;
    width: 100%;
    gap: 6px;
  }

  .brand-name {
    font-size: 16px;
    white-space: nowrap;
  }

  .brand-subtitle {
    font-size: 11px;
    white-space: nowrap;
    margin-top: 0;
  }

  .actions {
    width: 100%;
    justify-content: flex-end;
    padding-top: 4px;
    gap: 10px;
  }

  .actions .btn {
    flex: 0 0 auto;
    width: auto;
    min-width: auto;
  }

  h1 {
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -0.6px;
  }

  h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .hCard {
    padding: 24px;
  }

  .kicker {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .heroCtas {
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  .heroCtas .btn {
    width: 100%;
    justify-content: center;
  }

  .card {
    padding: 18px;
  }

  .priceHead {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .price {
    font-size: 20px;
    text-align: left;
  }

  .priceHead > div:last-child {
    align-items: flex-start;
    width: 100%;
  }

  .sectionTitle {
    margin-bottom: 20px;
  }

  .sub {
    font-size: 14px;
  }

  .lead {
    font-size: 15px;
    line-height: 1.6;
  }

  .meta {
    gap: 8px;
  }

  .pill {
    padding: 6px 10px;
    font-size: 12px;
  }

  .foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .foot-links {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .hCard {
    padding: 24px;
  }

  .card {
    padding: 20px;
  }

  .sectionTitle {
    margin-bottom: 16px;
  }

  .btn {
    padding: 10px 12px;
    font-size: 14px;
    min-height: 40px;
  }

  .btn.small {
    padding: 10px;
    font-size: 12px;
    height: 40px;
    min-height: 40px;
  }

  .actions {
    gap: 8px;
  }
}