:root {
  --bg: #0a0a0c;
  --bg-elevated: #131318;
  --bg-card: #1a1a22;
  --fg: #f0efe9;
  --fg-muted: #8a8a96;
  --accent: #ff4d1c;
  --accent-glow: rgba(255, 77, 28, 0.15);
  --green: #22c55e;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --max-w: 1140px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(200px, 30vw, 500px);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 77, 28, 0.08);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

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

.hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 77, 28, 0.3);
  border-radius: 2px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.hero h1 .strikethrough {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

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

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}

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

/* SERVICES */
.services {
  padding: 120px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}

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

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 12px;
}

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

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

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 40px 36px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-color: rgba(255, 77, 28, 0.25);
  transform: translateY(-2px);
}

.card-number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.6;
}

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

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

.card-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* PROOF */
.proof {
  padding: 120px 40px;
  background: var(--bg-elevated);
}

.proof-content {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.proof-left h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  position: sticky;
  top: 100px;
}

.proof-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.proof-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.proof-x {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 60, 60, 0.12);
  color: #ff4444;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
}

.proof-yes {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
  border-radius: 6px;
}

.proof-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

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

.proof-check {
  background: rgba(34, 197, 94, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.12);
}

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

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.closing-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

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

.closing-sub {
  color: var(--fg-muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-location {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}

/* FOOTER */
.site-footer {
  padding: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 1px;
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s ease;
}

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

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

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

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

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

.nav-cta {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

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

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

/* ============================================================
   SHARED HELPERS
   ============================================================ */
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.9;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255, 77, 28, 0.25);
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 77, 28, 0.35);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 120px 40px;
  background: var(--bg-elevated);
}

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

.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.pricing-sub {
  color: var(--fg-muted);
  font-size: 18px;
  margin-bottom: 64px;
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(255, 77, 28, 0.2);
  transform: translateY(-3px);
}

.pricing-card-featured {
  border-color: rgba(255, 77, 28, 0.35);
  background: linear-gradient(160deg, rgba(255, 77, 28, 0.06) 0%, var(--bg-card) 60%);
  transform: scale(1.03);
}

.pricing-card-featured:hover {
  transform: scale(1.03) translateY(-3px);
  border-color: rgba(255, 77, 28, 0.55);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card-header { margin-bottom: 28px; }

.pricing-tier-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: var(--fg);
}

.price-dollar {
  font-size: 28px;
  font-weight: 700;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
  color: var(--fg-muted);
}

.pricing-period {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.feat-check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.2s;
}

.pricing-cta-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 77, 28, 0.3);
}

.pricing-cta-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 77, 28, 0.4);
}

.pricing-cta-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-cta-ghost:hover {
  border-color: rgba(255, 77, 28, 0.4);
  color: var(--accent);
}

.pricing-note {
  margin-top: 48px;
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
}

.pricing-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.pricing-link:hover { opacity: 0.8; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 120px 40px;
  background: var(--bg);
}

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

.gallery-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  margin-bottom: 16px;
}

.gallery-sub {
  color: var(--fg-muted);
  font-size: 18px;
  margin-bottom: 56px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 56px;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.gallery-item-tall .gallery-thumb { min-height: 496px; }
.gallery-item-wide .gallery-thumb { min-height: 240px; }

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #181820 0%, #1e1e2a 100%);
  transition: transform 0.4s ease;
}

.gallery-placeholder-2 { background: linear-gradient(135deg, #0f1a1a 0%, #1a2020 100%); }
.gallery-placeholder-3 { background: linear-gradient(135deg, #1a1208 0%, #221a0e 100%); }
.gallery-placeholder-4 { background: linear-gradient(135deg, #0a1a0a 0%, #121e12 100%); }
.gallery-placeholder-5 { background: linear-gradient(135deg, #0e0e1e 0%, #141428 100%); }

.gallery-placeholder svg {
  width: 40px;
  height: 40px;
  color: rgba(255, 77, 28, 0.3);
  transition: color 0.3s, transform 0.3s;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 12, 0.92) 0%, transparent 50%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-thumb:hover .gallery-overlay { opacity: 1; }
.gallery-thumb:hover .gallery-placeholder { transform: scale(1.04); }
.gallery-thumb:hover .gallery-placeholder svg { color: var(--accent); transform: scale(1.2); }

.gallery-sport-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 3px 10px;
  border: 1px solid rgba(255, 77, 28, 0.4);
  border-radius: 3px;
  margin-bottom: 8px;
  align-self: flex-start;
}

.gallery-item-meta strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 2px;
}

.gallery-item-meta span {
  font-size: 13px;
  color: var(--fg-muted);
}

.gallery-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.gallery-cta-note {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 120px 40px;
  background: var(--bg-elevated);
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-desc {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fg-muted);
}

.contact-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 77, 28, 0.08);
  border-radius: 8px;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
}

.inquiry-form {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px 36px;
}

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

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

.form-group-full {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

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

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(138, 138, 150, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 77, 28, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-submit-row {
  display: flex;
  justify-content: flex-end;
}

.form-submit-btn {
  min-width: 160px;
  font-size: 15px;
}

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 10px;
  text-align: center;
}

.success-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
  font-size: 20px;
  border-radius: 50%;
}

.form-success strong {
  display: block;
  font-size: 16px;
  color: var(--green);
  margin-bottom: 6px;
}

.form-success p {
  font-size: 14px;
  color: var(--fg-muted);
}

.form-error {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(255, 60, 60, 0.08);
  border: 1px solid rgba(255, 60, 60, 0.2);
  border-radius: 8px;
  font-size: 14px;
  color: #ff6666;
}

/* ============================================================
   FOOTER UPDATES
   ============================================================ */
.footer-content {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer-left { }

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}

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

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

.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
  opacity: 0.6;
  text-align: right;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .services {
    padding: 80px 24px;
  }

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

  .service-card {
    padding: 28px 24px;
  }

  .proof {
    padding: 80px 24px;
  }

  .proof-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .proof-left h2 {
    position: static;
  }

  .closing {
    padding: 100px 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .footer-copy { text-align: center; }

  .footer-nav { flex-wrap: wrap; gap: 16px; }

  .site-nav { padding: 0 24px; }

  .nav-links { display: none; }

  .nav-mobile-toggle { display: flex; }

  .pricing { padding: 80px 24px; }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-3px); }

  .gallery { padding: 80px 24px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item-tall,
  .gallery-item-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .gallery-thumb,
  .gallery-item-tall .gallery-thumb,
  .gallery-item-wide .gallery-thumb {
    min-height: 220px;
  }

  .gallery-overlay { opacity: 1; }

  .contact { padding: 80px 24px; }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .inquiry-form { padding: 28px 20px; }

  .form-row { grid-template-columns: 1fr; }
}