/* ===========================
   SUBZ MOTION — GLOBAL STYLES
   =========================== */

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

:root {
  --bg: #080808;
  --surface: #101010;
  --surface2: #161616;
  --surface3: #1c1c1c;

  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.13);

  --text: #efefef;
  --text-muted: #7a7a7a;
  --text-dim: #444;

  --accent: #c8f542;
  --accent-dim: rgba(200,245,66,0.10);
  --accent-soft: rgba(200,245,66,0.06);
  --accent-border: rgba(200,245,66,0.28);
  --accent-glow: rgba(200,245,66,0.18);
}

html { font-size: 15px; }

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.25rem 6rem;
}

strong { font-weight: 600; }

/* ── Grain overlay ── */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Container ── */
.container {
  position: relative; z-index: 1;
  width: 100%; max-width: 440px;
  display: flex; flex-direction: column;
}

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; justify-content: center;
  align-items: center; gap: 4px;
  padding: 12px 16px;
  margin-bottom: 18px;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.nav-inner { display: flex; gap: 4px; align-items: center; }

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12.5px; font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: color 0.18s, background 0.18s, border-color 0.18s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--text); background: var(--surface2); }
.nav-link.active { color: var(--accent); background: var(--accent-dim); border-color: var(--accent-border); }

/* ── Availability banner ── */
.availability-banner {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 5px 12px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.03em;
  opacity: 0.9;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.availability-banner.available { background: rgba(200,245,66,0.06); color: var(--accent); }
.availability-banner.in-project { background: rgba(255,180,50,0.06); color: #ffb832; }
.availability-banner.busy { background: rgba(255,80,80,0.06); color: #ff6060; }

.avail-dot {
  width: 5px; height: 5px; border-radius: 50%; opacity: 0.9;
}
.availability-banner.available .avail-dot { background: var(--accent); animation: pulse 2.2s ease-in-out infinite; }
.availability-banner.in-project .avail-dot { background: #ffb832; animation: pulse 1.6s ease-in-out infinite; }
.availability-banner.busy .avail-dot { background: #ff6060; }

/* ── Section labels ── */
.label {
  font-size: 9px; opacity: 0.6; font-weight: 600;
  color: var(--text-dim); letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 8px; padding-left: 1px;
}

/* ── Divider & footer ── */
.divider { height: 1px; background: var(--border); margin: 2rem 0 0; }
.footer { text-align: center; margin-top: 1.5rem; font-size: 11px; color: var(--text-dim); letter-spacing: 0.06em; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #080808;
  font-weight: 700; font-size: 13px;
  padding: 13px 22px; border-radius: 10px;
  text-decoration: none; border: none; cursor: pointer;
  font-family: inherit; letter-spacing: 0.01em;
  transition: opacity 0.18s, transform 0.18s, box-shadow 0.18s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 8px 28px var(--accent-glow); }
.btn-primary:active { transform: translateY(0); opacity: 1; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text-muted);
  font-weight: 500; font-size: 13px;
  padding: 12px 20px; border-radius: 10px;
  text-decoration: none; border: 1px solid var(--border);
  cursor: pointer; font-family: inherit;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-hover); background: var(--surface2); }

/* ── Link rows ── */
.btn-link {
  display: flex; align-items: center; gap: 14px;
  width: 100%; padding: 12px 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 13px; color: var(--text); text-decoration: none;
  margin-bottom: 6px;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  cursor: pointer; font-family: inherit;
}
.btn-link:hover { border-color: var(--accent-border); background: var(--accent-soft); transform: translateY(-1px); }
.btn-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px;
}
.btn-icon.teal { background: rgba(0,220,180,0.12); }
.btn-icon.green { background: rgba(200,245,66,0.12); }
.btn-icon.blue  { background: rgba(100,160,255,0.12); }
.btn-icon.pink  { background: rgba(255,100,180,0.12); }
.btn-icon.orange{ background: rgba(255,160,60,0.12); }
.btn-text { flex: 1; min-width: 0; }
.btn-title { font-size: 13.5px; font-weight: 500; color: var(--text); line-height: 1.3; }
.btn-sub   { font-size: 11.5px; color: var(--text-muted); margin-top: 1px; }
.btn-arrow { color: var(--text-dim); font-size: 18px; }

/* ── Page header ── */
.hero-section { padding: 3rem 0 2rem; }
.page-header { margin-bottom: 1.4rem; }
.page-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px; font-weight: 700;
  letter-spacing: -0.035em; margin-bottom: 6px; line-height: 1.18;
}
.page-title span { color: var(--accent); }
.page-sub { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ── CTA accent block ── */
.cta-accent {
  background: var(--accent-dim); border: 1px solid var(--accent-border);
  border-radius: 14px; padding: 20px; text-align: center;
}
.cta-accent p {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 14px;
}
.cta-block-inner { display: flex; flex-direction: column; gap: 9px; }

/* ── Float CTA ── */
.float-cta {
  position: fixed; bottom: 14px; left: 50%;
  transform: translateX(-50%); z-index: 999;
  background: var(--accent); color: #080808;
  font-family: inherit; font-weight: 700; font-size: 13px;
  padding: 13px 28px; border-radius: 100px; text-decoration: none;
  box-shadow: 0 4px 28px rgba(200,245,66,0.24);
  letter-spacing: 0.01em; white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}
.float-cta:hover { opacity: 0.88; transform: translateX(-50%) translateY(-2px); }

/* ── Project cards ── */
.project-list { display: flex; flex-direction: column; gap: 14px; }
.project-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; transition: border-color 0.22s, transform 0.2s;
}
.project-card:hover { border-color: var(--border-hover); transform: translateY(-1px); }
.project-video { width: 100%; height: auto; max-height: 70vh; display: block; background: #000; }
.project-meta {
  padding: 14px 18px 16px;
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 12px;
}
.project-meta-left { flex: 1; min-width: 0; }
.project-tag {
  font-size: 10px; font-weight: 700; color: var(--accent);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px;
}
.project-name { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.3; }
.project-desc { font-size: 12px; color: var(--text-muted); margin-top: 4px; line-height: 1.55; }
.project-badge {
  flex-shrink: 0; font-size: 10px; font-weight: 600;
  color: var(--text-dim); background: var(--surface2);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 4px 8px; letter-spacing: 0.04em;
  margin-top: 2px; white-space: nowrap;
}

/* ── Form ── */
.form-section {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px;
}
.form-fields { display: flex; flex-direction: column; gap: 12px; }

/* Base input styles */
input, select, textarea {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  outline: none;
  width: 100%;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  appearance: none;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-dim); }

/* Focus states */
input:focus, textarea:focus, select:focus {
  border-color: var(--accent-border);
  background: #131313;
  box-shadow: 0 0 0 3px rgba(200,245,66,0.07);
}

/* Select arrow */
select {
  color: var(--text-muted);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
select option { color: var(--text); background: var(--surface2); }

/* Textarea */
textarea { resize: vertical; line-height: 1.65; min-height: 110px; }

/* Form buttons */
.form-submit {
  background: var(--accent); color: #080808;
  font-family: inherit; font-weight: 700; font-size: 13px;
  padding: 14px 20px; border: none; border-radius: 10px;
  cursor: pointer; transition: opacity 0.18s, transform 0.18s, box-shadow 0.18s;
  letter-spacing: 0.01em; width: 100%; margin-top: 4px;
}
.form-submit:hover { opacity: 0.87; transform: translateY(-1px); box-shadow: 0 6px 24px var(--accent-glow); }
.form-submit:active { transform: translateY(0); }

.form-submit-ghost {
  background: transparent; color: var(--text-muted);
  font-family: inherit; font-weight: 500; font-size: 13px;
  padding: 12px 20px; border: 1px solid var(--border);
  border-radius: 10px; cursor: pointer;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
  width: 100%; margin-top: 8px;
}
.form-submit-ghost:hover { color: var(--text); border-color: var(--border-hover); background: var(--surface2); }

.form-success {
  display: none; text-align: center; padding: 13px;
  font-size: 13px; color: var(--accent);
  border: 1px solid var(--accent-border); border-radius: 10px;
  background: var(--accent-dim); margin-top: 10px;
}
.form-note { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }

/* ── Process block ── */
.process-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px;
}
.process-list { display: flex; flex-direction: column; gap: 0; }
.process-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.process-row:last-child { border-bottom: none; padding-bottom: 0; }
.process-row:first-child { padding-top: 0; }
.process-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid var(--accent-border);
  color: var(--accent); font-size: 10.5px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.process-body { flex: 1; }
.process-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.process-desc { font-size: 12px; color: var(--text-muted); line-height: 1.55; }

/* ── Pricing cards (legacy compat) ── */
.pricing-list { display: flex; flex-direction: column; gap: 10px; }
.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 20px;
  transition: border-color 0.2s, transform 0.15s;
}
.pricing-card:hover { border-color: var(--border-hover); transform: translateY(-1px); }
.pricing-card.featured { background: var(--accent-dim); border-color: var(--accent-border); }
.pricing-card-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 12px; margin-bottom: 10px;
}
.pricing-card-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--surface2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.pricing-card.featured .pricing-card-icon { background: rgba(200,245,66,0.15); border-color: var(--accent-border); }
.pricing-card-name { font-size: 14px; font-weight: 700; color: var(--text); flex: 1; padding-top: 6px; }
.pricing-card-price { text-align: right; flex-shrink: 0; }
.price-from { font-size: 10px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 1px; }
.price-amount { font-size: 18px; font-weight: 700; color: var(--accent); letter-spacing: -0.02em; line-height: 1; }
.pricing-card-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.pricing-card-includes { display: flex; flex-direction: column; gap: 5px; }
.include-row { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.include-check { color: var(--accent); font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.pricing-card-delivery { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.delivery-label { font-size: 11px; color: var(--text-dim); }
.delivery-time { font-size: 11.5px; font-weight: 600; color: var(--text-muted); }

/* ── Revisions card ── */
.revisions-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 20px;
}
.revisions-card-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.rev-row { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 8px; }
.rev-row:last-child { margin-bottom: 0; }
.rev-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.rev-dot.green { background: var(--accent); }
.rev-dot.dim   { background: var(--text-dim); }
.rev-row strong { color: var(--text); font-weight: 600; }

/* ── Prep list ── */
.prep-list { display: flex; flex-direction: column; gap: 7px; }
.prep-row { display: flex; align-items: flex-start; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 11px; padding: 12px 14px; }
.prep-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.prep-body { flex: 1; }
.prep-name { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 1px; }
.prep-desc { font-size: 11.5px; color: var(--text-muted); line-height: 1.5; }
.prep-optional { font-size: 10.5px; color: var(--text-dim); font-weight: 400; }

/* ── Quote note ── */
.quote-note { background: var(--surface2); border: 1px solid var(--border); border-radius: 10px; padding: 13px 15px; font-size: 12px; color: var(--text-muted); line-height: 1.6; text-align: center; }
.quote-note strong { color: var(--text); font-weight: 600; }

/* ── Trust bar ── */
.trust-bar { display: flex; gap: 0; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.trust-item { flex: 1; padding: 14px 0; text-align: center; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
.trust-num { font-size: 19px; font-weight: 700; color: var(--accent); letter-spacing: -0.02em; line-height: 1; margin-bottom: 3px; }
.trust-label { font-size: 10px; color: var(--text-muted); }

/* ── Service list ── */
.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 13px; padding: 15px 16px;
  transition: border-color 0.2s, transform 0.15s; text-decoration: none;
}
.service-item:hover { border-color: var(--border-hover); transform: translateY(-1px); }
.service-item-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.service-item-body { flex: 1; }
.service-item-name { font-size: 13.5px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.service-item-desc { font-size: 12px; color: var(--text-muted); line-height: 1.45; }
.service-item-price { flex-shrink: 0; font-size: 11px; font-weight: 700; color: var(--accent); background: var(--accent-dim); border: 1px solid var(--accent-border); border-radius: 6px; padding: 4px 9px; white-space: nowrap; }

/* ── Portfolio CTA ── */
.portfolio-cta {
  background: var(--accent-dim); border: 1px solid var(--accent-border);
  border-radius: 14px; padding: 22px 20px;
  display: flex; align-items: center; gap: 16px;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.portfolio-cta:hover { background: rgba(200,245,66,0.16); transform: translateY(-1px); }
.portfolio-cta-icon { width: 42px; height: 42px; background: rgba(200,245,66,0.18); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.portfolio-cta-text { flex: 1; }
.portfolio-cta-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.portfolio-cta-sub { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.portfolio-cta-arrow { font-size: 20px; color: var(--accent); }

/* ── Quick contact buttons ── */
.quick-row { display: flex; flex-direction: column; gap: 8px; }
.quick-btn {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 16px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 13px;
  text-decoration: none; transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.quick-btn:hover { border-color: var(--accent-border); background: var(--accent-soft); transform: translateY(-1px); }
.quick-btn:hover .quick-title { color: var(--accent); }
.quick-btn.primary-cta { background: var(--accent-dim); border-color: var(--accent-border); }
.quick-btn.primary-cta:hover { background: rgba(200,245,66,0.18); }
.quick-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.quick-icon.wa   { background: rgba(0,220,140,0.15); }
.quick-icon.mail { background: rgba(100,160,255,0.12); }
.quick-icon.ig   { background: rgba(255,120,80,0.12); }
.quick-text { flex: 1; }
.quick-title { font-size: 13.5px; font-weight: 600; color: var(--text); line-height: 1.3; }
.quick-sub   { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }
.quick-arrow { color: var(--text-dim); font-size: 18px; }

/* ── Response note ── */
.response-note { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--text-muted); margin-top: 10px; }
.response-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2.2s ease-in-out infinite; }

/* ── Contact identity ── */
.contact-identity { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.contact-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; border: 1.5px solid var(--accent-border); background: var(--surface2); flex-shrink: 0; }
.contact-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.contact-avatar-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.contact-meta { flex: 1; }
.contact-name { font-size: 13.5px; font-weight: 700; color: var(--text); }
.contact-role { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }

/* ── What happens next ── */
.next-block { background: var(--surface); border: 1px solid var(--border); border-radius: 13px; padding: 18px 20px; display: flex; flex-direction: column; gap: 10px; }
.next-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.next-row { display: flex; align-items: flex-start; gap: 11px; }
.next-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 5px; opacity: 0.7; }
.next-text { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.next-text strong { color: var(--text); font-weight: 600; }

/* ── More strip ── */
.more-strip { background: var(--surface); border: 1px solid var(--border); border-radius: 13px; padding: 16px 18px; text-align: center; font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }
.more-strip a { color: var(--accent); text-decoration: none; font-weight: 600; }
.more-strip a:hover { text-decoration: underline; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}
.anim   { animation: fadeUp 0.48s cubic-bezier(0.22,1,0.36,1) both; }
.anim-1 { animation-delay: 0.06s; }
.anim-2 { animation-delay: 0.12s; }
.anim-3 { animation-delay: 0.18s; }
.anim-4 { animation-delay: 0.24s; }
.anim-5 { animation-delay: 0.30s; }
.anim-6 { animation-delay: 0.36s; }
.anim-7 { animation-delay: 0.42s; }

/* ── Spacing ── */
.section-gap { margin-top: 22px; }

/* ── Mobile ── */
@media (max-width: 480px) {
  body { padding: 0 1rem 5rem; }
  .nav { padding: 10px; }
  .nav-inner { gap: 2px; }
  .nav-link { font-size: 12px; padding: 5px 9px; }
  .page-title { font-size: 22px; }
  .hero-headline { font-size: 26px; }
}

/* ── Tablet ── */
@media (min-width: 600px) {
  .container { max-width: 580px; }
}

/* ── Desktop ── */
@media (min-width: 860px) {
  html { font-size: 16px; }

  body { padding: 0 2rem 6rem; }

  .container { max-width: 820px; }

  /* Nav wider */
  .nav-link { font-size: 13.5px; padding: 7px 16px; }

  /* Hero */
  .hero-headline { font-size: 40px !important; }
  .hero-sub { max-width: 420px !important; font-size: 14px !important; }

  /* Trust bar: give items more breathing room */
  .trust-bar { border-radius: 16px; }
  .trust-item { padding: 18px 0; }
  .trust-num { font-size: 24px !important; }

  /* Services: 2-column grid */
  .service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Packages: 2-column for first two, then single full-width */
  .package-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .package-list .pkg.featured { grid-column: 1 / -1; }

  /* Pricing package header text bigger */
  .pkg-name { font-size: 16px; }
  .pkg-price-amount { font-size: 26px; }

  /* Process/steps: side by side */
  .process-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
  .process-row { margin-bottom: 0; }

  /* Add-ons: 2-column */
  .addon-list { display: grid; grid-template-columns: 1fr 1fr; }
  .addon-row { border-bottom: none; border-right: 1px solid var(--border); padding: 14px 16px; }
  .addon-row:nth-child(even) { border-right: none; }
  .addon-row:nth-child(n+3) { border-top: 1px solid var(--border); }

  /* Quick contact buttons: 3-column */
  .quick-row { flex-direction: row; gap: 10px; }
  .quick-btn { flex: 1; flex-direction: column; align-items: flex-start; gap: 10px; padding: 18px 16px; }
  .quick-arrow { display: none; }

  /* Project cards: 2-column grid */
  .project-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Page header bigger */
  .page-title { font-size: 32px !important; }
  .page-sub { font-size: 14px !important; max-width: 520px; }

  /* CTA accent wider */
  .cta-accent p { font-size: 14px; }
  .cta-accent { padding: 28px 30px; }

  /* Form: name + email row stays 2-col, brief textarea taller */
  .form-section { padding: 28px 30px; }
  #f-brief { min-height: 130px; }

  /* Portfolio CTA */
  .portfolio-cta { padding: 26px 24px; }
  .portfolio-cta-title { font-size: 16px; }
  .portfolio-cta-sub { font-size: 13px; }
  .portfolio-cta-icon { width: 50px; height: 50px; font-size: 22px; }

  /* Float CTA bigger */
  .float-cta { font-size: 14px; padding: 14px 26px; }

  /* Next block: 2-column */
  .next-block { padding: 22px 24px; }

  /* Section gap more breathing room */
  .section-gap { margin-top: 32px; }
}

/* ── Large desktop ── */
@media (min-width: 1200px) {
  .container { max-width: 960px; }
  .hero-headline { font-size: 48px !important; }
  .hero-sub { max-width: 500px !important; }
  .package-list { grid-template-columns: 1fr 1fr 1fr; }
  .package-list .pkg.featured { grid-column: auto; }
}
