:root {
  --bg-dark: #0f0f0f;
  --bg-section: #161616;
  --bg-card: #1c1c1c;
  --fg: #f0ece4;
  --fg-muted: #9a9590;
  --accent: #c94040;
  --accent-glow: #e04848;
  --accent-soft: rgba(201, 64, 64, 0.12);
  --gold: #d4a853;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --max-w: 1200px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* --- HERO --- */
.hero {
  position: relative;
  padding: var(--space-2xl) var(--space-md) var(--space-xl);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.4rem 1rem;
  margin-bottom: var(--space-md);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: var(--space-md);
}

.hero h1 em {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.hero-stats {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 180px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

.hero-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* --- PROBLEM --- */
.problem {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg-section);
}

.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.problem-left h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  position: sticky;
  top: var(--space-md);
}

.problem-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-md);
  border-radius: 4px;
}

.problem-icon {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.problem-card h3 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* --- SERVICES --- */
.services {
  padding: var(--space-xl) var(--space-md);
}

.services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.services-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.service-item {
  padding: var(--space-md) var(--space-md) var(--space-lg);
  border-top: 2px solid rgba(255,255,255,0.06);
}

.service-item:hover {
  border-top-color: var(--accent);
  transition: border-color 0.3s;
}

.service-number {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 400;
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.service-item h3 {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-item p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* --- WHY --- */
.why {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg-section);
}

.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: center;
}

.why-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.why-lead {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.why-point {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.why-marker {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 0.55rem;
}

.why-point div {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.why-point strong {
  color: var(--fg);
}

.why-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.quote-block {
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  padding: var(--space-md) var(--space-md);
  position: relative;
}

.quote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: -0.5rem;
}

.quote-block p {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
}

/* --- CLOSING --- */
.closing {
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.closing-tagline {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  font-style: italic;
}

/* --- FOOTER --- */
.site-footer {
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* --- NAV --- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

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

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

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  background: var(--accent);
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--accent-glow);
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  transition: all 0.3s;
}

/* --- PAGE HERO (interior pages) --- */
.page-hero {
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--fg);
  margin: var(--space-sm) 0 var(--space-md);
}

.page-hero h1 em {
  color: var(--accent);
  font-style: italic;
}

/* --- SERVICES DETAIL PAGE --- */
.service-detail {
  padding: var(--space-lg) var(--space-md) var(--space-xl);
}

.service-detail-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.service-full {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-lg);
}

.service-full-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.service-full-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-style: italic;
  min-width: 2rem;
}

.service-full-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
}

.service-full-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--space-lg);
  align-items: start;
}

.service-full-desc p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.service-checklist {
  list-style: none;
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.service-checklist li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.05em;
}

.service-full-meta {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.meta-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.meta-value {
  font-size: 1rem;
  color: var(--fg);
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--fg);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  background: var(--accent-glow);
}

.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--fg);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
  text-align: center;
}

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

.btn-full {
  width: 100%;
  display: block;
}

/* --- PAGE CTA --- */
.page-cta {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg-section);
  text-align: center;
}

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

.page-cta h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.page-cta p {
  color: var(--fg-muted);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.cta-pair {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- PRICING CALCULATOR --- */
.calculator-section {
  padding: var(--space-lg) var(--space-md) var(--space-xl);
}

.calculator-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: start;
}

.calculator-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-md) var(--space-lg);
}

.calculator-card h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.calc-field {
  margin-bottom: var(--space-md);
}

.calc-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.6rem;
}

.calc-field input[type="number"] {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 1.1rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.calc-field input[type="number"]:focus {
  border-color: var(--accent);
}

.calc-hint {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.calc-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: border-color 0.2s;
}

.calc-option:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.calc-option input[type="radio"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.calc-option-label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.calc-option-label strong {
  font-size: 0.95rem;
}

.calc-option-rate {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.calc-surcharge {
  color: var(--gold);
}

.calc-result {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: rgba(201, 64, 64, 0.08);
  border: 1px solid rgba(201, 64, 64, 0.25);
  margin-bottom: var(--space-md);
}

.calc-result-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.3rem;
}

.calc-result-price {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg);
}

.calc-result-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}

/* Pricing notes sidebar */
.pricing-notes {
  padding: var(--space-md);
}

.pricing-notes h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}

.pricing-note {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--fg-muted);
}

.pricing-note-icon {
  font-size: 1.1rem;
  min-width: 1.5rem;
  margin-top: 0.1rem;
}

.pricing-note strong {
  color: var(--fg);
  display: block;
  margin-bottom: 0.15rem;
}

/* Pricing table */
.pricing-table-section {
  padding: var(--space-lg) var(--space-md);
  background: var(--bg-section);
}

.pricing-table-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.pricing-table-inner h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.pricing-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.pricing-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--fg-muted);
}

.pricing-table td:first-child {
  color: var(--fg);
  font-weight: 500;
}

.pricing-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

/* --- ABOUT PAGE --- */
.about-section {
  padding: var(--space-lg) var(--space-md) var(--space-xl);
}

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-block {
  margin-bottom: var(--space-lg);
}

.about-block h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.about-block p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: var(--space-sm);
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: sticky;
  top: calc(60px + var(--space-md));
}

.about-stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-md);
}

.about-stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.about-stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.about-quote {
  margin-top: var(--space-sm);
}

/* --- SUBMIT FORM --- */
.submit-section {
  padding: var(--space-lg) var(--space-md) var(--space-xl);
}

.submit-inner {
  max-width: 760px;
  margin: 0 auto;
}

.submit-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

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

.field-hint {
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--fg-muted);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="number"],
.form-field input[type="date"],
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

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

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239a9590' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-field textarea {
  resize: vertical;
}

/* File drop zone */
.file-drop {
  border: 1px dashed rgba(255,255,255,0.2);
  padding: var(--space-md);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.file-drop:hover,
.file-drop.drag-over {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.file-drop-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}

.file-drop-icon {
  font-size: 1.8rem;
}

.file-link {
  color: var(--accent);
  text-decoration: underline;
}

/* Inline estimate */
.form-estimate {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 1rem;
  background: var(--accent-soft);
  border: 1px solid rgba(201, 64, 64, 0.2);
}

.estimate-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  flex-shrink: 0;
}

.estimate-value {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
}

/* Form error / success */
.form-error-banner {
  background: rgba(201, 64, 64, 0.15);
  border: 1px solid rgba(201, 64, 64, 0.4);
  color: var(--fg);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.95rem;
}

.submit-success {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto var(--space-md);
}

.submit-success h2 {
  font-family: var(--serif);
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.submit-success p {
  color: var(--fg-muted);
  margin-bottom: var(--space-sm);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.submit-success .btn-secondary {
  margin-top: var(--space-md);
}

.form-fine-print {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.5;
}

.btn-submit {
  font-size: 1rem;
  padding: 1rem;
  letter-spacing: 0.02em;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: var(--space-xl) var(--space-sm) var(--space-lg);
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .stat-divider {
    display: none;
  }

  .problem-inner {
    grid-template-columns: 1fr;
  }

  .problem-left h2 {
    position: static;
  }

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

  .why-inner {
    grid-template-columns: 1fr;
  }

  .why-visual {
    margin-top: var(--space-md);
  }

  .footer-inner {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  /* Nav mobile */
  .nav-links {
    display: none;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-sm) 0 var(--space-md);
    align-items: flex-start;
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-inner {
    flex-wrap: wrap;
    gap: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-open .nav-inner {
    flex-wrap: wrap;
  }

  /* Service detail mobile */
  .service-full-body {
    grid-template-columns: 1fr;
  }

  /* Calculator mobile */
  .calculator-inner {
    grid-template-columns: 1fr;
  }

  /* About mobile */
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-sidebar {
    position: static;
  }

  /* Form mobile */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Pricing table mobile — hide last two columns */
  .pricing-table th:nth-child(3),
  .pricing-table th:nth-child(4),
  .pricing-table td:nth-child(3),
  .pricing-table td:nth-child(4) {
    display: none;
  }
}