:root {
  --bg: #0c0c0e;
  --bg-elevated: #141418;
  --bg-card: #1a1a20;
  --fg: #e8e6e1;
  --fg-muted: #8a877f;
  --gold: #c9a84c;
  --gold-light: #e0c36a;
  --gold-dim: #8a7433;
  --border: #2a2a30;
  --border-light: #3a3a42;
  --red-muted: #6b3a3a;
  --green-muted: #3a6b4a;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, 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;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 6px 16px;
  border-radius: 3px;
  margin-bottom: 40px;
  width: fit-content;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -1px;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* PROBLEM */
.problem {
  background: var(--bg-elevated);
  padding: 100px 40px;
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 48px;
  color: var(--fg);
}

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
}

.problem-icon {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-dim);
  margin-bottom: 20px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

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

/* SERVICES */
.services {
  padding: 100px 40px;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 56px;
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 12px;
}

.services-sub {
  font-size: 18px;
  color: var(--fg-muted);
}

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

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

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

.service-number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

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

/* DIFFERENCE */
.difference {
  background: var(--bg-elevated);
  padding: 100px 40px;
}

.difference-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.diff-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--fg);
}

.diff-text p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.diff-points {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.diff-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
}

.diff-marker {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.comparison-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.comp-them, .comp-us {
  border-radius: 8px;
  padding: 28px 20px;
}

.comp-them {
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.comp-us {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.04));
  border: 1px solid var(--gold-dim);
}

.comp-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  color: var(--fg-muted);
}

.comp-us .comp-label {
  color: var(--gold);
}

.comp-them ul, .comp-us ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comp-them li, .comp-us li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}

.comp-them li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--red-muted);
  border-radius: 50%;
}

.comp-us li {
  color: var(--fg);
}

.comp-us li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* CLOSING */
.closing {
  padding: 120px 40px;
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 20px;
}

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

.closing-location {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

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

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

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

.nav-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

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

.nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 7px 18px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold-light);
}

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

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

/* PAGE HERO (inner pages) */
.page-hero {
  padding: 80px 40px 60px;
  border-bottom: 1px solid var(--border);
}

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

.page-hero .hero-badge {
  margin-bottom: 28px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 20px;
}

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

/* PACKAGES */
.packages-section {
  padding: 80px 40px 100px;
}

.packages-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s;
}

.pkg-card:hover {
  border-color: var(--border-light);
}

.pkg-featured {
  border-color: var(--gold-dim);
  background: linear-gradient(160deg, rgba(201,168,76,0.07), var(--bg-card) 60%);
}

.pkg-featured:hover {
  border-color: var(--gold);
}

.pkg-badge-popular {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--gold);
  color: #0c0c0e;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 2px;
}

.pkg-tier {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.pkg-featured .pkg-tier {
  color: var(--gold);
}

.pkg-price {
  margin-bottom: 16px;
}

.pkg-amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -2px;
}

.pkg-period {
  font-size: 16px;
  color: var(--fg-muted);
  margin-left: 4px;
}

.pkg-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.pkg-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 32px;
}

.pkg-features li {
  font-size: 14px;
  color: var(--fg-muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pkg-featured .pkg-features li {
  color: var(--fg);
}

.pkg-check {
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pkg-btn {
  display: block;
  width: 100%;
  padding: 13px 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--fg);
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.pkg-btn:hover {
  border-color: var(--gold-dim);
  background: rgba(201,168,76,0.06);
}

.pkg-btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #0c0c0e;
}

.pkg-btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.packages-note {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.packages-note p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.gold-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dim);
  transition: border-color 0.2s;
}

.gold-link:hover {
  border-color: var(--gold);
}

/* CASE STUDIES */
.case-studies-section {
  padding: 80px 40px 100px;
}

.cs-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.cs-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px;
}

.cs-coming-soon {
  border-style: dashed;
}

.cs-status {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-dim);
  margin-bottom: 16px;
}

.cs-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cs-summary {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cs-metrics-preview {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.cs-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cs-metric-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
}

.cs-metric-val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}

.cs-active {
  color: #4ade80;
}

.cs-testimonial-block {
  background: var(--bg-elevated);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 0;
}

.cs-testimonial-inner {
  padding: 48px 56px;
}

.cs-quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 8px;
}

.cs-quote {
  font-size: 22px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 28px;
}

.cs-attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cs-attr-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}

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

.cs-what-we-track {
  padding-top: 20px;
}

.cs-track-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 40px;
}

.cs-track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cs-track-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}

.cs-track-card:hover {
  border-color: var(--gold-dim);
}

.cs-track-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.cs-track-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

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

.cs-cta-block {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02));
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  padding: 56px 48px;
  text-align: center;
}

.cs-cta-block h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 12px;
}

.cs-cta-block p {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.cs-cta-block .pkg-btn-gold {
  display: inline-block;
  width: auto;
  padding: 13px 32px;
}

/* CONTACT */
.contact-section {
  padding: 60px 40px 100px;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}

.contact-form-wrap {
  /* owns the form area */
}

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

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

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

.form-group label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  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='%238a877f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--fg);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  align-self: flex-start;
  padding: 14px 36px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--gold);
  color: #0c0c0e;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover {
  background: var(--gold-light);
}

.form-error-banner {
  background: rgba(107,58,58,0.4);
  border: 1px solid var(--red-muted);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  color: #f87171;
  margin-bottom: 4px;
}

.form-success {
  text-align: center;
  padding: 80px 40px;
}

.success-icon {
  width: 56px;
  height: 56px;
  background: rgba(74,222,128,0.15);
  border: 1px solid rgba(74,222,128,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #4ade80;
  margin: 0 auto 24px;
}

.form-success h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

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

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.sidebar-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
}

.sidebar-val {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.5;
}

.sidebar-promise {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.sidebar-promise p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 60px 24px 40px;
    min-height: 80vh;
  }

  .hero-badge {
    margin-bottom: 28px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .problem { padding: 60px 24px; }
  .problem-grid { grid-template-columns: 1fr; gap: 16px; }

  .services { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }

  .difference { padding: 60px 24px; }
  .difference-inner { grid-template-columns: 1fr; gap: 40px; }
  .comparison-block { grid-template-columns: 1fr; }

  .closing { padding: 80px 24px; }
  .site-footer { padding: 32px 24px; }

  /* nav mobile */
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg-elevated); border-bottom: 1px solid var(--border); padding: 20px 24px; gap: 20px; }
  .site-nav.open .nav-links { display: flex; }
  .nav-toggle { display: flex; }

  /* page hero mobile */
  .page-hero { padding: 48px 24px 40px; }

  /* packages mobile */
  .packages-section { padding: 48px 24px 60px; }
  .packages-grid { grid-template-columns: 1fr; }

  /* case studies mobile */
  .case-studies-section { padding: 48px 24px 60px; }
  .cs-inner { gap: 40px; }
  .cs-card { padding: 28px 24px; }
  .cs-testimonial-inner { padding: 28px 24px; }
  .cs-track-grid { grid-template-columns: 1fr; }
  .cs-cta-block { padding: 36px 24px; }
  .cs-metrics-preview { flex-direction: column; gap: 16px; }

  /* contact mobile */
  .contact-section { padding: 40px 24px 60px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { width: 100%; text-align: center; }
}