:root {
  --bg: #0a0a0a;
  --fg: #f0ece4;
  --fg-muted: #8a8580;
  --accent: #e8ff47;
  --accent-dark: #c4d93b;
  --card-bg: #141414;
  --card-border: #222;
  --tier-featured-bg: #1a1a0f;
  --nav-h: 68px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo-dot {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link--active {
  color: var(--fg);
}

.nav-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  padding: 9px 20px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: opacity 0.2s;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 48px 40px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--fg);
}

.hero-right {
  padding-bottom: 8px;
}

.hero-stat-block {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
}

.stat { display: flex; flex-direction: column; }

.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 6px;
  max-width: 160px;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 60px auto 0;
}

/* ---- PAGE HERO (interior pages) ---- */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 48px 80px;
  border-bottom: 1px solid var(--card-border);
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 16px 0 28px;
}

.page-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 580px;
}

/* ---- MANIFESTO ---- */
.manifesto {
  padding: 120px 48px;
  background: var(--bg);
}

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

.manifesto-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.manifesto h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.35;
  color: var(--fg);
  margin-bottom: 40px;
}

.manifesto-divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 40px;
}

.manifesto-counter {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 680px;
  font-style: italic;
}

/* ---- SERVICES ---- */
.services {
  padding: 100px 48px;
  background: var(--card-bg);
}

.services-header {
  max-width: 1280px;
  margin: 0 auto 60px;
}

.section-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.services-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.service-card {
  padding: 36px 28px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background: var(--bg);
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: var(--accent);
}

.service-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 20px;
  line-height: 1;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---- PROCESS / TIERS ---- */
.process {
  padding: 100px 48px;
  background: var(--bg);
}

.process-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.process h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 48px;
}

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

.tier {
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 40px 32px;
  background: var(--card-bg);
  position: relative;
}

.tier-featured {
  border-color: var(--accent);
  background: var(--tier-featured-bg);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent);
  color: var(--bg);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tier-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.tier-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 28px;
  line-height: 1;
}

.tier-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-muted);
}

.tier ul {
  list-style: none;
  padding: 0;
}

.tier li {
  padding: 10px 0;
  border-top: 1px solid var(--card-border);
  font-size: 15px;
  color: var(--fg-muted);
}

.tier li:last-child {
  padding-bottom: 0;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 48px;
  background: linear-gradient(160deg, #111 0%, #0a0a0a 50%, #0f0f05 100%);
  text-align: center;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 40px 48px;
  border-top: 1px solid var(--card-border);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-meta {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ---- SHARED BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  color: var(--fg);
  border: 1px solid var(--card-border);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  border-color: var(--fg-muted);
  transform: translateY(-1px);
}

/* ---- PORTFOLIO ---- */
.portfolio-section {
  padding: 80px 48px 120px;
}

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

.portfolio-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--card-border);
  background: none;
  color: var(--fg-muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.filter-btn:hover {
  color: var(--fg);
  border-color: var(--fg-muted);
}

.filter-btn--active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

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

.portfolio-item {
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.portfolio-thumb {
  aspect-ratio: 4/3;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-thumb--dark   { background: linear-gradient(135deg, #1a1a1a 0%, #111 100%); }
.portfolio-thumb--warm   { background: linear-gradient(135deg, #1c1408 0%, #2a1d0d 100%); }
.portfolio-thumb--accent { background: linear-gradient(135deg, #161c00 0%, #1e2600 100%); }
.portfolio-thumb--green  { background: linear-gradient(135deg, #0a1a0f 0%, #0d2215 100%); }
.portfolio-thumb--blue   { background: linear-gradient(135deg, #0a0f1c 0%, #0e1528 100%); }
.portfolio-thumb--purple { background: linear-gradient(135deg, #140d1c 0%, #1c1026 100%); }

.portfolio-thumb-content {
  text-align: center;
  z-index: 1;
  position: relative;
}

.thumb-icon {
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.5;
  display: block;
  margin-bottom: 10px;
}

.thumb-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.7);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.2s;
}

.portfolio-thumb:hover .portfolio-overlay {
  opacity: 1;
}

.overlay-category {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232, 255, 71, 0.12);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
}

.portfolio-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.portfolio-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.portfolio-stats {
  display: flex;
  gap: 24px;
}

.pstat {
  font-size: 13px;
  color: var(--fg-muted);
}

.pstat strong {
  color: var(--accent);
  font-weight: 600;
}

.portfolio-cta {
  padding: 100px 48px;
  background: var(--card-bg);
  text-align: center;
  border-top: 1px solid var(--card-border);
}

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

.portfolio-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
}

.portfolio-cta p {
  color: var(--fg-muted);
  margin-bottom: 36px;
}

/* ---- ABOUT ---- */
.about-story {
  padding: 100px 48px;
  background: var(--card-bg);
  border-bottom: 1px solid var(--card-border);
}

.about-story-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-story-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.35;
  color: var(--fg);
  margin-bottom: 32px;
}

.about-story-text h2 em {
  font-style: italic;
  color: var(--accent);
}

.about-story-text p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
}

.about-photo-stack {
  position: relative;
  height: 420px;
}

.about-photo {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  display: flex;
  align-items: flex-end;
}

.about-photo--1 {
  width: 80%;
  aspect-ratio: 4/3;
  top: 0;
  left: 0;
  background: linear-gradient(160deg, #1c1408 0%, #2a1d0d 60%, #1a1208 100%);
  z-index: 1;
}

.about-photo--2 {
  width: 65%;
  aspect-ratio: 3/4;
  bottom: 0;
  right: 0;
  background: linear-gradient(160deg, #0a0a0a 0%, #141414 100%);
  z-index: 2;
  border-color: var(--accent);
}

.about-photo-inner {
  padding: 14px 16px;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.photo-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.about-values {
  padding: 100px 48px;
  background: var(--bg);
}

.about-values-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.about-values-inner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 56px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  padding: 32px 24px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  transition: border-color 0.2s;
}

.value-card:hover {
  border-color: var(--fg-muted);
}

.value-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 16px;
  line-height: 1;
}

.value-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.about-expertise {
  padding: 100px 48px;
  background: var(--card-bg);
}

.about-expertise-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.expertise-left h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.25;
  margin-top: 16px;
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.expertise-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 20px;
  align-items: start;
}

.expertise-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
}

.expertise-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.expertise-item p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ---- CONTACT ---- */
.contact-section {
  padding: 80px 48px 120px;
}

.contact-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.contact-expect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-expect-list li {
  font-size: 15px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.contact-expect-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 13px;
}

.contact-divider {
  width: 100%;
  height: 1px;
  background: var(--card-border);
  margin: 32px 0;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
  font-size: 15px;
}

.contact-detail-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--fg-muted);
  opacity: 0.6;
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-field select option {
  background: #1a1a1a;
}

.btn-submit {
  width: 100%;
  font-size: 16px;
  padding: 16px;
  border-radius: 8px;
}

.form-note {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
  opacity: 0.7;
}

.form-error-banner {
  background: rgba(255, 60, 60, 0.1);
  border: 1px solid rgba(255, 60, 60, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #ff6b6b;
}

/* Contact success */
.contact-success {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(232, 255, 71, 0.12);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.contact-success h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.contact-success p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-expertise-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(10,10,10,0.97); padding: 24px; gap: 20px; border-bottom: 1px solid var(--card-border); }
  .nav-links--open { display: flex; }
  .nav-burger { display: flex; }
  .nav-cta { width: 100%; text-align: center; border-radius: 8px; }

  .hero { padding: calc(var(--nav-h) + 40px) 24px 40px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-stat-block { gap: 24px; }

  .page-hero { padding: calc(var(--nav-h) + 48px) 24px 56px; }

  .manifesto,
  .services,
  .process,
  .closing,
  .portfolio-cta { padding: 80px 24px; }

  .portfolio-section { padding: 60px 24px 80px; }
  .portfolio-grid { grid-template-columns: 1fr; }

  .about-story { padding: 80px 24px; }
  .about-story-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-stack { height: 280px; }
  .about-photo--1 { width: 85%; }
  .about-photo--2 { width: 60%; }

  .about-values { padding: 80px 24px; }
  .values-grid { grid-template-columns: 1fr; }

  .about-expertise { padding: 80px 24px; }

  .contact-section { padding: 60px 24px 80px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .stat-number { font-size: 2.2rem; }
  .page-title { font-size: 2.2rem; }
}
