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

:root {
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --gray: #64748b;
  --gray-light: #f1f5f9;
  --text: #1e293b;
  --border: #e2e8f0;
  --radius: 10px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
}

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

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}

nav a:hover { color: var(--text); }

/* ── Buttons ── */
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.15s;
  display: inline-block;
}

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

.btn-large {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
}

.btn-ghost {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: border-color 0.15s, background 0.15s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: #94a3b8;
  background: var(--gray-light);
}

.btn-outline {
  display: inline-block;
  text-decoration: none;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.15s;
  text-align: center;
  width: 100%;
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* ── Hero ── */
.hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
}

.hero-content {
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.stat span {
  font-size: 0.8rem;
  color: var(--gray);
}

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

.section--dark {
  background: var(--dark);
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
}

.section-header--light h2 { color: #fff; }
.section-header--light p { color: #94a3b8; }

/* ── Projects ── */
.projects-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 800px) {
  .projects-grid { grid-template-columns: 1fr; }
}

.project-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.project-card--featured {
  display: flex;
  flex-direction: column;
}

.project-preview {
  background: var(--gray-light);
  border-bottom: 1px solid var(--border);
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.6rem 1rem;
  background: #e2e8f0;
  border-bottom: 1px solid #cbd5e1;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #94a3b8;
}

.browser-dot:nth-child(1) { background: #f87171; }
.browser-dot:nth-child(2) { background: #fbbf24; }
.browser-dot:nth-child(3) { background: #34d399; }

.browser-url {
  font-size: 0.75rem;
  color: var(--gray);
  margin-left: 0.5rem;
}

.project-screenshot {
  padding: 1rem;
}

.screenshot-mock {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.mock-hero {
  height: 100px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.mock-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.mock-h1 {
  width: 160px;
  height: 12px;
  background: rgba(255,255,255,0.8);
  border-radius: 3px;
}

.mock-p {
  width: 120px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 3px;
}

.mock-btn {
  width: 80px;
  height: 22px;
  background: var(--accent);
  border-radius: 4px;
  margin-top: 4px;
}

.mock-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-row {
  display: flex;
  gap: 8px;
}

.mock-card {
  flex: 1;
  height: 48px;
  background: var(--gray-light);
  border-radius: 4px;
}

.mock-row--2 {
  gap: 10px;
}

.mock-img {
  width: 80px;
  height: 56px;
  background: #cbd5e1;
  border-radius: 4px;
  flex-shrink: 0;
}

.mock-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.mock-line {
  height: 8px;
  background: var(--gray-light);
  border-radius: 3px;
}

.mock-line--short { width: 60%; }

.project-info {
  padding: 1.5rem;
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  background: var(--gray-light);
  color: var(--gray);
}

.tag--tech {
  background: #eff6ff;
  color: var(--accent);
}

.project-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.project-info > p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.project-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
}

.project-features li {
  font-size: 0.85rem;
  color: var(--text);
  padding-left: 1.2em;
  position: relative;
}

.project-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.project-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.project-link:hover { text-decoration: underline; }

.project-card--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  border: 2px dashed var(--border);
  background: transparent;
}

.placeholder-inner {
  text-align: center;
  color: var(--gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.placeholder-icon {
  font-size: 2.5rem;
  font-weight: 300;
  color: #cbd5e1;
}

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 800px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature {
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.feature h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.55;
}

/* ── Builder ── */
.builder-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
}

.builder-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: #fff;
}

.builder-panel h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.builder-panel h3:not(:first-child) {
  margin-top: 1.5rem;
}

/* ── Step hints ── */
.step-hint {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.step-sub {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 0.5rem;
  font-style: italic;
}

/* ── Page Counter ── */
.page-counter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.page-btn {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.page-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.page-btn:active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.page-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  min-width: 2rem;
  text-align: center;
}

.page-price-hint {
  font-size: 0.78rem;
  color: var(--gray);
  margin-left: 0.25rem;
}

.page-presets {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

.page-preset {
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  font-size: 0.78rem;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.15s;
}

.page-preset:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.page-preset.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ── Delivery Options ── */
.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.delivery-option {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s;
}

.delivery-option:has(input:checked) {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(37,99,235,0.12);
}

.delivery-option input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.delivery-info {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem 0.75rem;
}

.delivery-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
}

.delivery-info strong {
  font-size: 0.82rem;
  color: var(--accent);
}

.delivery-info small {
  width: 100%;
  font-size: 0.72rem;
  color: var(--gray);
  line-height: 1.35;
}

/* ── Tier Grid ── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.tier-option {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 0.8rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.tier-option:has(input:checked) {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(37,99,235,0.15);
  background: #f0f5ff;
}

.tier-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tier-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.tier-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--dark);
}

.tier-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.tier-price small {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.7;
}

.tier-option small {
  font-size: 0.68rem;
  color: var(--gray);
  line-height: 1.35;
  margin-top: 0.2rem;
}

/* ── Backend Hint ── */
.backend-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.backend-icon {
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.backend-hint strong {
  font-size: 0.84rem;
  color: var(--dark);
  display: block;
  margin-bottom: 0.15rem;
}

.backend-hint small {
  font-size: 0.72rem;
  color: var(--gray);
  line-height: 1.4;
}

.backend-hint a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.backend-hint a:hover {
  text-decoration: underline;
}

/* ── Component Showcase ── */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.showcase-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
}

.showcase-card--wide {
  grid-column: 1 / -1;
}

.showcase-label {
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: #1e293b;
  color: #94a3b8;
}

.showcase-demo {
  position: relative;
  overflow: hidden;
}

.showcase-desc {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
  border-top: 1px solid var(--border);
}

/* -- Showcase: Hero -- */
.showcase-hero {
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.showcase-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.75) 0%, rgba(15,23,42,0.45) 100%);
}

.showcase-hero-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.showcase-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 1.5rem;
}

.showcase-hero-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.showcase-hero-content p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 0.8rem;
}

.showcase-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
}

/* -- Showcase: Slider -- */
.showcase-slider {
  height: 200px;
  position: relative;
}

.showcase-slides {
  position: absolute;
  inset: 0;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.showcase-slide.active {
  opacity: 1;
}

.showcase-slider-dots {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
  z-index: 2;
}

.showcase-slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.3s;
}

.showcase-slider-dots span.active {
  background: #fff;
}

.showcase-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.72rem;
  padding: 1.5rem 0.75rem 0.5rem;
  z-index: 2;
}

/* -- Showcase: Services -- */
.showcase-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  padding: 0.75rem;
}

.showcase-service {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.showcase-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.showcase-service-img {
  height: 80px;
  background-size: cover;
  background-position: center;
}

.showcase-service strong {
  display: block;
  padding: 0.4rem;
  font-size: 0.75rem;
  color: var(--dark);
}

/* -- Showcase: Team -- */
.showcase-team {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.25rem;
}

.showcase-member {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.showcase-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--border);
}

.showcase-member strong {
  font-size: 0.82rem;
  color: var(--dark);
}

.showcase-member small {
  font-size: 0.72rem;
  color: var(--gray);
}

/* -- Showcase: Blog -- */
.showcase-blog {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.showcase-post {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.showcase-post:last-child {
  border-bottom: none;
}

.showcase-post-img {
  width: 80px;
  height: 60px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.showcase-post-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.showcase-post-body small {
  font-size: 0.68rem;
  color: var(--gray);
}

.showcase-post-body strong {
  font-size: 0.82rem;
  color: var(--dark);
  line-height: 1.3;
}

.showcase-post-body p {
  font-size: 0.72rem;
  color: var(--gray);
  line-height: 1.35;
}

/* -- Showcase: Contact -- */
.showcase-contact {
  padding: 1rem;
}

.showcase-contact-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.showcase-contact-box > strong {
  font-size: 1rem;
  color: var(--dark);
}

.showcase-contact-btns {
  display: flex;
  gap: 0.5rem;
}

.showcase-cbtn {
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
}

.showcase-contact-box small {
  font-size: 0.72rem;
  color: var(--gray);
  font-style: italic;
}

.showcase-contact-addr {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.4;
  margin-top: 0.25rem;
}

.showcase-contact-addr strong {
  color: var(--dark);
}

.estimate-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: var(--gray-light);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.estimate-label {
  font-size: 0.8rem;
  color: var(--gray);
}

.estimate-value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--dark);
}

.estimate-sub {
  font-size: 0.8rem;
  color: var(--gray);
}

.estimate-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.4rem 0 0.7rem;
}

.estimate-list span {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.74rem;
  color: #334155;
}

/* ── Packages ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
  align-items: start;
}

@media (max-width: 800px) {
  .packages-grid { grid-template-columns: 1fr; }
}

.package {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.package--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.package-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
}

.package-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.price-from {
  font-size: 0.85rem;
  color: var(--gray);
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.package-desc {
  font-size: 0.875rem;
  color: var(--gray);
}

.package-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.package-includes li {
  font-size: 0.875rem;
  color: var(--text);
  padding-left: 1.3em;
  position: relative;
}

.package-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.package-includes em {
  font-style: normal;
  color: var(--gray);
}

/* ── Add-ons ── */
.addons {
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.addons h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.addons-intro {
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 640px;
  margin-bottom: 2rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .addons-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .addons-grid { grid-template-columns: 1fr; }
}

.addon {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: #fff;
}

.addon--monthly {
  border-color: #fde68a;
  background: #fffbeb;
}

.addon-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.addon-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.addon-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.addon-price small {
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--gray);
}

.addon p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 0.4rem;
}

.addon-example {
  font-size: 0.75rem;
  color: var(--accent);
  font-style: italic;
}

.pricing-note {
  margin-top: 2.5rem;
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  color: var(--gray);
}

.pricing-note strong { color: var(--text); }

/* ── Contact ── */
.contact-box {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-hint {
  color: #94a3b8;
  font-size: 0.95rem;
}

.contact-email {
  font-size: 1.1rem;
}

.contact-note {
  color: #64748b;
  font-size: 0.85rem;
  max-width: 420px;
}

/* ── Footer ── */
.site-footer {
  background: var(--dark-2);
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: #64748b;
  text-decoration: none;
}

.footer-nav a:hover { color: #94a3b8; }

@media (max-width: 640px) {
  nav a:not(.btn-primary) { display: none; }
  .packages-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .showcase-services { grid-template-columns: 1fr; }
  .showcase-team { flex-direction: column; align-items: center; }
  .showcase-contact-btns { flex-direction: column; }
}

@media (max-width: 980px) {
  .tier-grid {
    grid-template-columns: 1fr;
  }

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

  .page-presets {
    flex-wrap: wrap;
  }
}
