/* ============================================================
   Iron Dust Turnovers Ltd. — Main Stylesheet
   Brand: Deep Charcoal #111111 | Rust Orange #E8681A | Steel #8A9099
   ============================================================ */

/* === CUSTOM PROPERTIES ======================================= */
:root {
  --orange:        #E8681A;
  --orange-dark:   #C85510;
  --orange-glow:   rgba(232, 104, 26, 0.32);
  --orange-faint:  rgba(232, 104, 26, 0.10);
  --orange-border: rgba(232, 104, 26, 0.22);
  --dark:          #111111;
  --darker:        #0A0A0A;
  --card:          #1A1A1A;
  --border:        #252525;
  --steel:         #8A9099;
  --steel-light:   #B0B5BB;
  --light:         #F4F5F7;
  --white:         #FFFFFF;
  --text-muted:    #666666;
  --font:          'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
  --transition:    0.25s cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     18px;
  --shadow-card:   0 8px 32px rgba(0,0,0,0.08);
  --shadow-orange: 0 8px 28px rgba(232, 104, 26, 0.35);
  --max-w:         1120px;
  --section-pad:   88px 24px;
}

/* === RESET & BASE ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: var(--font); }
textarea { resize: vertical; }

/* === SCROLL ANIMATIONS ======================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }

/* === HERO LOAD ANIMATIONS ==================================== */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-anim-1 { animation: heroUp 0.65s 0.08s ease both; }
.hero-anim-2 { animation: heroUp 0.65s 0.20s ease both; }
.hero-anim-3 { animation: heroUp 0.65s 0.34s ease both; }
.hero-anim-4 { animation: heroUp 0.65s 0.48s ease both; }

/* === UTILITY ================================================= */
.container { max-width: var(--max-w); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* === PILL BADGE ============================================== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-faint);
  border: 1px solid var(--orange-border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange);
}
.pill svg { flex-shrink: 0; }

/* === BUTTONS ================================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 26px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.btn-primary svg { flex-shrink: 0; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  padding: 13px 26px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
}
.btn-outline svg { flex-shrink: 0; }

/* === NAVIGATION ============================================== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(17,17,17,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.3s, border-color 0.3s;
}
#navbar.scrolled {
  background: rgba(17,17,17,0.97);
  border-bottom-color: rgba(255,255,255,0.09);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 70px;
  gap: 32px;
}

/* Logo in nav */
.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-text strong {
  display: block;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
}
.nav-logo-text span {
  display: block;
  color: var(--steel);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; }

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.nav-ctas .btn-outline { padding: 9px 16px; font-size: 13px; }
.nav-ctas .btn-primary { padding: 9px 16px; font-size: 13px; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #fff;
  margin-left: auto;
}

.mobile-menu {
  display: none;
  background: rgba(17,17,17,0.98);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu-ctas {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.mobile-menu-ctas .btn-primary { flex: 1; justify-content: center; }
.mobile-menu-ctas .btn-outline { flex: 1; justify-content: center; }

/* === HERO SECTION ============================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 720px;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(17,17,17,1) 52%, rgba(17,17,17,0.55) 100%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  bottom: -180px;
  right: -80px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,104,26,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 24px 80px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-content { max-width: 680px; }
.hero-pill { margin-bottom: 28px; }
.hero-headline {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  color: #fff;
  line-height: 1.04;
  letter-spacing: -0.033em;
  margin-bottom: 22px;
}
.hero-headline .accent { color: var(--orange); }
.hero-sub {
  font-size: 17px;
  color: var(--steel);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-ctas .btn-primary { font-size: 15px; padding: 14px 28px; }
.hero-ctas .btn-outline { font-size: 15px; padding: 14px 28px; }
.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.48);
  font-size: 13px;
}
.hero-badge svg { color: var(--orange); flex-shrink: 0; }

/* Hero logo display */
.hero-logo-display {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-display img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.6));
}

/* === TRUST BAR =============================================== */
.trust-bar { background: var(--white); }
.trust-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid #EAEAEA;
}
.trust-stat:last-child { border-right: none; }
.trust-stat-value {
  font-size: 50px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1;
}
.trust-stat-label {
  font-size: 13px;
  color: var(--steel);
  margin-top: 8px;
  font-weight: 500;
}

/* === SECTION HEADERS ========================================= */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .pill { margin-bottom: 18px; }
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 14px;
}
.section-title.light { color: var(--white); }
.section-title.dark  { color: var(--dark); }
.section-sub {
  font-size: 16px;
  line-height: 1.65;
  max-width: 460px;
  margin: 0 auto;
}
.section-sub.light { color: var(--steel); }
.section-sub.dark  { color: var(--text-muted); }

/* === SERVICES SECTION ======================================== */
.services-section {
  background: var(--dark);
  padding: var(--section-pad);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  cursor: default;
  transition: border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(232,104,26,0.09);
}
.service-card:hover .service-more { color: var(--orange); transform: translateX(4px); }
.service-icon {
  width: 50px;
  height: 50px;
  background: var(--orange-faint);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 18px;
}
.service-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.service-desc  { font-size: 14px; color: var(--steel); line-height: 1.65; }
.service-more {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--steel);
  margin-top: 20px;
  transition: color var(--transition), transform var(--transition);
}

/* === WHY CHOOSE SECTION ====================================== */
.why-section {
  background: var(--light);
  padding: var(--section-pad);
}
.why-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-copy .pill { margin-bottom: 20px; }
.why-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 18px;
}
.why-title .accent { color: var(--orange); }
.why-body {
  font-size: 16px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 28px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature-card {
  background: var(--white);
  border: 1px solid #EAEAEA;
  border-radius: 14px;
  padding: 20px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  border-color: var(--orange-border);
  box-shadow: 0 8px 28px rgba(232,104,26,0.07);
}
.feature-icon {
  width: 38px;
  height: 38px;
  background: var(--orange-faint);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 12px;
}
.feature-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.feature-desc  { font-size: 12.5px; color: #777; line-height: 1.55; }

/* === BEFORE / AFTER ========================================== */
.before-after-section {
  background: #0D0D0D;
  padding: var(--section-pad);
}
.slider-container {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  box-shadow: 0 40px 80px rgba(0,0,0,0.65);
}
.slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.slider-before {
  position: absolute;
  inset: 0;
}
.slider-before-inner {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
}
.slider-before-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.slider-before-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
}
.slider-label {
  position: absolute;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.72);
  bottom: 16px;
  pointer-events: none;
  z-index: 5;
}
.slider-label.label-before { left: 16px; }
.slider-label.label-after  { right: 16px; }
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.9);
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
}
.slider-handle-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  cursor: ew-resize;
  pointer-events: all;
  position: relative;
}
.slider-hint {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* === PROCESS SECTION ========================================= */
.process-section {
  background: var(--white);
  padding: var(--section-pad);
}
.process-steps {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process-connector {
  position: absolute;
  top: 26px;
  left: calc(12.5% + 27px);
  right: calc(12.5% + 27px);
  height: 2px;
  background: #EAEAEA;
  z-index: 0;
}
.process-step {
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 14px;
  font-weight: 800;
}
.process-num.active {
  background: var(--orange);
  border: 2px solid var(--orange);
  color: #fff;
  box-shadow: 0 8px 24px var(--orange-glow);
}
.process-num.inactive {
  background: var(--white);
  border: 2px solid #DEDEDE;
  color: #AAAAAA;
}
.process-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.process-desc  { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

/* === INDUSTRIES ============================================== */
.industries-section {
  background: var(--light);
  padding: var(--section-pad);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 13px;
}
.industry-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid #EAEAEA;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition);
  cursor: default;
}
.industry-card:hover {
  background: var(--dark);
  border-color: var(--border);
  transform: translateY(-2px);
}
.industry-card:hover .industry-text  { color: #fff; }
.industry-card:hover .industry-icon  { background: var(--orange-faint); color: var(--orange); }
.industry-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #EBEBEB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.industry-text {
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  transition: color var(--transition);
}

/* === TESTIMONIALS ============================================ */
.testimonials-section {
  background: #0C0C0C;
  padding: var(--section-pad);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--orange);
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.75;
  color: #333;
  font-style: italic;
  margin-bottom: 22px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #F0F0F0;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #C55010);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.author-role { font-size: 12px; color: #888; }

/* === SERVICE AREA =========================================== */
.area-section {
  background: var(--white);
  padding: var(--section-pad);
}
.area-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.area-copy .pill { margin-bottom: 20px; }
.area-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 18px;
}
.area-body {
  font-size: 16px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 28px;
}
.area-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.area-tag {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--light);
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.area-tag svg { color: var(--orange); flex-shrink: 0; }
.area-map {
  background: #F7F8FA;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #EAEAEA;
}

/* === QUOTE FORM ============================================== */
.quote-section {
  background: var(--dark);
  padding: var(--section-pad);
}
.quote-section .section-header { margin-bottom: 48px; }
.quote-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--steel);
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9px;
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-faint);
}
.form-input::placeholder { color: rgba(255,255,255,0.28); }
.form-input option { background: #1A1A1A; color: #fff; }
.form-textarea { width: 100%; margin-bottom: 24px; }
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 15px;
  border-radius: 9px;
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--steel);
  margin-top: 12px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  background: var(--orange-faint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin: 0 auto 18px;
}
.form-success h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}
.form-success p { color: var(--steel); font-size: 16px; }

/* === CTA STRIP ============================================== */
.cta-strip {
  background: var(--orange);
  padding: 56px 24px;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.cta-strip p { font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 32px; }
.cta-strip-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--orange);
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 26px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-sm);
  padding: 13px 26px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* === FOOTER ================================================= */
footer {
  background: #090909;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 24px 28px;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand {
  max-width: 280px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 56px;
  width: 56px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.footer-logo-text strong {
  display: block;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
}
.footer-tagline {
  font-size: 13.5px;
  color: var(--steel);
  line-height: 1.75;
  margin-bottom: 22px;
}
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--steel);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--steel-light); }
.footer-contact-item svg { color: var(--orange); flex-shrink: 0; }
.footer-col h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a, .footer-col span {
  display: block;
  color: var(--steel);
  font-size: 13px;
  margin-bottom: 9px;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--steel-light); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--steel); font-size: 12px; }

/* === RESPONSIVE ============================================= */
@media (max-width: 1024px) {
  .hero-logo-display { display: none; }
  .why-layout { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 20px; }

  /* Nav */
  .nav-links  { display: none; }
  .nav-ctas .btn-outline { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-inner { padding: 80px 20px 64px; }

  /* Trust bar */
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-stat { border-right: none; border-bottom: 1px solid #EAEAEA; }
  .trust-stat:nth-child(2) { border-right: none; border-bottom: 1px solid #EAEAEA; }
  .trust-stat:last-child { border-bottom: none; }
  .trust-stat:nth-last-child(2) { border-bottom: none; }

  /* Two-col layouts */
  .why-layout  { grid-template-columns: 1fr; gap: 40px; }
  .area-layout { grid-template-columns: 1fr; gap: 36px; }

  /* Process */
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-connector { display: none; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { max-width: 100%; }

  /* Form */
  .form-grid { grid-template-columns: 1fr; }
  .quote-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .trust-grid   { grid-template-columns: 1fr; }
  .trust-stat   { border-right: none; border-bottom: 1px solid #EAEAEA; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .hero-ctas    { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { width: 100%; justify-content: center; }
  .cta-strip-btns { flex-direction: column; align-items: center; }
  .features-grid { grid-template-columns: 1fr; }
}
