/* ============================================================
   IRONWELD — style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;800;900&display=swap');

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

:root {
  --primary: #f97316;
  --primary-dim: rgba(249,115,22,0.15);
  --primary-border: rgba(249,115,22,0.3);
  --bg: #0d0d0d;
  --bg2: #111111;
  --bg3: #161616;
  --surface: rgba(255,255,255,0.04);
  --surface-border: rgba(255,255,255,0.08);
  --text: #ffffff;
  --text-muted: rgba(255,255,255,0.5);
  --text-dim: rgba(255,255,255,0.25);
  --font-display: 'Calibri', 'Gill Sans', 'Trebuchet MS', sans-serif;
  --font-hero: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  --font-body: 'Calibri', 'Gill Sans', 'Trebuchet MS', sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s;
  box-shadow: 0 0 20px rgba(249,115,22,0.3);
  white-space: nowrap;
}
.btn-primary:hover { filter: brightness(1.15); transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--surface-border);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-1px); }

/* ── Glass surface ── */
.glass {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Section spacing ── */
section { padding: 96px 0; }

/* ── Section headings ── */
.section-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
}
.text-gradient {
  background: linear-gradient(90deg, var(--primary), #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-orange { color: var(--primary); }
.text-blue { color: #3b82f6; }
.hero-line-brand,
.hero-line-white,
.hero-line-blue {
  display: block;
  line-height: 0.95;
}
.hero-line-brand { font-size: 0.55em; letter-spacing: 0.12em; margin-bottom: 4px; opacity: 0.9; }
.hero-line-white { color: #ffffff; }
.hero-line-blue {
  background: linear-gradient(90deg, #a0aec0 0%, #4299e1 40%, #63b3ed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--surface-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}
.logo .accent { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--primary); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.header-phone svg { flex-shrink: 0; }

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(13,13,13,0.97);
  border-top: 1px solid var(--surface-border);
  padding: 8px 0 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--primary); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-welding.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,0.80) 40%, rgba(13,13,13,0.2) 100%);
  z-index: 1;
}
.hero-overlay-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,1) 0%, transparent 40%, rgba(13,13,13,0.25) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 100px;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-dim);
  border: 1px solid var(--primary-border);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-h1 {
  font-family: var(--font-hero);
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.trust-item svg { color: var(--primary); flex-shrink: 0; }

/* Sparks */
.spark-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  animation: spark-fly var(--dur) var(--delay) ease-out infinite;
  opacity: 0;
}
@keyframes spark-fly {
  0%   { transform: translate(0,0) scale(1); opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--bg2); }
.services-header { text-align: center; margin-bottom: 64px; }
.services-divider {
  width: 48px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 20px auto 0;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.service-card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
  flex: 0 1 calc(33.333% - 16px);
  min-width: 300px;
  box-sizing: border-box;
}
.service-card:hover { transform: translateY(-6px); }
.service-card.accent {
  background: linear-gradient(135deg, rgba(249,115,22,0.18), rgba(249,115,22,0.06));
  border: 1px solid rgba(249,115,22,0.35);
}
.service-card.accent:hover { border-color: rgba(249,115,22,0.6); }
.service-card:not(.accent) {
  background: var(--surface);
  border: 1px solid var(--surface-border);
}
.service-card:not(.accent):hover { border-color: rgba(249,115,22,0.3); }
.service-badge-247 {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.4);
  border-radius: 999px;
  padding: 3px 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
}
.service-icon {
  width: 60px; height: 60px;
  border-radius: 12px;
  background: var(--primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(249,115,22,0.25); }
.service-icon svg { color: var(--primary); }
.service-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.service-card:hover .service-title { color: var(--primary); }
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.service-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0 0;
}
.service-list li {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.7;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why-us { background: var(--bg); }
.why-header { text-align: center; margin-bottom: 64px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px 48px;
}
.why-item { display: flex; gap: 20px; }
.why-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { color: var(--primary); }
.why-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.why-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   WORK SHOWCASE
   ============================================================ */
#work { background: var(--bg2); }
.work-header { text-align: center; margin-bottom: 64px; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .work-grid { grid-template-columns: 1fr; } }
.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--surface-border);
  transition: transform 0.3s, border-color 0.3s;
}
.work-card:hover { transform: translateY(-4px); border-color: rgba(249,115,22,0.3); }
.work-card-img {
  height: 220px;
  overflow: hidden;
}
.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.work-card:hover .work-card-img img { transform: scale(1.05); }
.work-card-body { padding: 20px; }
.work-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.work-card-desc { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   PROCESS
   ============================================================ */
#process { background: var(--bg); }
.process-header { text-align: center; margin-bottom: 64px; }

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

/* Connecting line between circles */
.process-icon-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.process-icon-wrap::before,
.process-icon-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1px;
  background: rgba(249,115,22,0.35);
  width: 50%;
  z-index: 0;
}
.process-icon-wrap::before { right: 50%; margin-right: 36px; }
.process-icon-wrap::after  { left: 50%;  margin-left: 36px; }
.process-step-new:first-child .process-icon-wrap::before { display: none; }
.process-step-new:last-child  .process-icon-wrap::after  { display: none; }

.process-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(249,115,22,0.1);
  border: 1.5px solid rgba(249,115,22,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  position: relative;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s;
}
.process-step-new:hover .process-icon-circle {
  background: rgba(249,115,22,0.2);
  border-color: var(--primary);
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.process-step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .process-step-new:nth-child(2) .process-icon-wrap::after  { display: none; }
  .process-step-new:nth-child(3) .process-icon-wrap::before { display: none; }
}
@media (max-width: 480px) {
  .process-track { grid-template-columns: 1fr; gap: 40px 0; }
  .process-icon-wrap::before,
  .process-icon-wrap::after { display: none !important; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--bg2); }
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.testimonial-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { color: var(--primary); fill: var(--primary); }
.testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.testimonial-loc { font-size: 12px; color: var(--text-dim); }

/* ============================================================
   SERVICE AREA
   ============================================================ */
#service-area { background: var(--bg); }
.area-header { text-align: center; margin-bottom: 48px; }
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.area-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.area-tag:hover { border-color: var(--primary-border); color: var(--primary); }
.area-tag svg { color: var(--primary); flex-shrink: 0; }

/* ============================================================
   QUOTE FORM
   ============================================================ */
#quote-form { background: var(--bg2); }
.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
}
.form-header { text-align: center; margin-bottom: 48px; }
.form-card {
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(249,115,22,0.12);
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 15px;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: rgba(249,115,22,0.5);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.08);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: auto;
  padding: 12px 40px;
  font-size: 15px;
  display: flex;
  margin: 0 auto;
}
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 0;
  text-align: center;
}
.form-success.show { display: flex; }
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-icon svg { color: var(--primary); }
.success-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
}
.success-sub { color: var(--text-muted); }
.form-error {
  display: none;
  text-align: center;
  color: #f87171;
  font-size: 14px;
  margin-top: 12px;
}
.form-error.show { display: block; }

/* ============================================================
   FINAL CTA
   ============================================================ */
#final-cta {
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-dim);
  border: 1px solid var(--primary-border);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
}
.cta-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #0a0a0a;
  border-top: 1px solid var(--surface-border);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand-wrap .logo { font-size: 20px; }
.footer-phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  transition: color 0.2s;
}
.footer-phone-link:hover { color: var(--primary); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
}
.footer-nav a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--primary); }
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--surface-border);
}

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
#floating-call {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(249,115,22,0.5);
  animation: pulse-ring 2.5s ease-out infinite;
  transition: filter 0.2s, transform 0.15s;
}
#floating-call:hover { filter: brightness(1.15); transform: scale(1.08); }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(249,115,22,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .header-phone { display: none; }
  .burger { display: block; }
  #floating-call { display: flex; }
  .hero-content { padding: 140px 0 80px; }
  .hero-h1 { font-size: clamp(40px, 10vw, 60px); }
  .form-card { padding: 28px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 900px) {
  .service-card { flex: 0 1 calc(50% - 12px); }
}
@media (max-width: 560px) {
  .service-card { flex: 0 1 100%; min-width: 0; }
}
@media (min-width: 769px) {
  .btn-primary.header-cta-btn { display: inline-flex; }
}
