/* ── Ironweb Digital · shared.css ── */
:root {
  --void:      #0B0B0F;
  --dark:      #1A1A22;
  --iron:      #2A2A35;
  --red:       #C1121F;
  --red-hover: #A00E19;
  --blue:      #3A86FF;
  --white:     #F1F1F1;
  --muted:     #A0A0A8;
  --border:    #2A2A35;
  --font-d:    'Orbitron', sans-serif;
  --font-b:    'Montserrat', sans-serif;
  --spring:    cubic-bezier(0.34,1.56,0.64,1);
  --out:       cubic-bezier(0.16,1,0.3,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { background: var(--void); color: var(--white); font-family: var(--font-b); overflow-x: hidden; }
h1,h2,h3,h4 { font-family: var(--font-d); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::placeholder { color: var(--muted); opacity: 0.5; }

/* ══ LAYOUT ══ */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.sec { padding: 96px 0; }
.sec-dark { background: var(--dark); }
.sec-void { background: var(--void); }

/* ══ TYPOGRAPHY ══ */
.eye {
  display: inline-block;
  font-family: var(--font-b); font-weight: 600; font-size: 11px;
  color: var(--red); letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 14px;
}
.h2 {
  font-family: var(--font-d); font-weight: 700;
  font-size: clamp(24px,3.2vw,40px); letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 16px; line-height: 1.15;
}
.sub {
  font-family: var(--font-b); font-weight: 400;
  font-size: 16px; line-height: 1.75; color: var(--muted); max-width: 600px;
}

/* ══ BUTTONS ══ */
.btn-red {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-b); font-weight: 700; font-size: 14px; letter-spacing: 0.05em;
  color: var(--white); background: var(--red); border: none; border-radius: 6px;
  padding: 15px 32px; min-height: 50px; cursor: pointer; text-decoration: none;
  transition: background .2s var(--out), transform .2s var(--spring), box-shadow .2s var(--out);
}
.btn-red:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(193,18,31,.38); }

.btn-outline-red {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-b); font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
  color: var(--red); background: transparent; border: 1.5px solid var(--red);
  border-radius: 6px; padding: 13px 28px; min-height: 48px; cursor: pointer; text-decoration: none;
  transition: background .2s var(--out), color .2s ease, transform .2s var(--spring);
}
.btn-outline-red:hover { background: var(--red); color: var(--white); transform: translateY(-1px); }

.btn-ghost-white {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-b); font-weight: 600; font-size: 14px;
  color: var(--white); background: transparent; border: 1.5px solid rgba(241,241,241,.35);
  border-radius: 6px; padding: 13px 28px; min-height: 48px; cursor: pointer; text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s var(--spring);
}
.btn-ghost-white:hover { border-color: var(--white); background: rgba(241,241,241,.06); transform: translateY(-1px); }

.btn-white {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-b); font-weight: 700; font-size: 14px; letter-spacing: .05em;
  color: var(--red); background: var(--white); border: none; border-radius: 6px;
  padding: 15px 32px; min-height: 50px; cursor: pointer; text-decoration: none;
  transition: transform .2s var(--spring), box-shadow .2s ease;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }

.btn-ghost-on-red {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-b); font-weight: 600; font-size: 14px;
  color: var(--white); background: transparent; border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 6px; padding: 15px 32px; min-height: 50px; cursor: pointer; text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s var(--spring);
}
.btn-ghost-on-red:hover { border-color: var(--white); background: rgba(255,255,255,.1); transform: translateY(-1px); }

/* ══ CHECK LIST ══ */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.check-list li {
  font-family: var(--font-b); font-weight: 400; font-size: 15px; line-height: 1.6;
  color: var(--muted); display: flex; align-items: flex-start; gap: 12px;
}
.check-list li::before {
  content: '';
  display: block; width: 18px; height: 18px; min-width: 18px; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='rgba(193%2C18%2C31%2C0.15)' stroke='none'/%3E%3Cpath d='M9 12l2 2l4-4' stroke='%23C1121F' stroke-width='1.75' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain;
}

/* ══ FADE-IN ══ */
.fi { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--out), transform .6s var(--out); }
.fi.on { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }

/* ══ NAV ══ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 70px; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--out), border-color .3s ease, backdrop-filter .3s ease;
}
#nav.stuck { background: rgba(11,11,15,.93); backdrop-filter: blur(14px); border-color: var(--border); }

.logo-a { display: flex; align-items: center; gap: 10px; }
.logo-mark { height: 48px; width: auto; object-fit: contain; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-d); font-weight: 700; font-size: 17px; letter-spacing: -.02em; color: var(--white); }
.logo-name em { color: var(--red); font-style: normal; }
.logo-tag { font-family: var(--font-d); font-weight: 600; font-size: 7.5px; letter-spacing: .2em; color: #8B9AA3; margin-top: 5px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-family: var(--font-b); font-weight: 600; font-size: 13px; color: var(--muted);
  padding: 8px 14px; border-radius: 4px; min-height: 44px; display: inline-flex; align-items: center;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--red); }
.nav-cta { background: var(--red) !important; color: var(--white) !important; border-radius: 6px !important; font-weight: 700 !important; font-size: 12px !important; letter-spacing: .05em !important; transition: background .2s ease, transform .2s var(--spring) !important; }
.nav-cta:hover { background: var(--red-hover) !important; transform: translateY(-1px) !important; color: var(--white) !important; }
.nav-cta.active { background: var(--red) !important; color: var(--white) !important; }

.burger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 10px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s var(--spring), opacity .2s ease; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mob-nav { display: none; position: fixed; inset: 0; z-index: 999; background: var(--void); flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
#mob-nav.open { display: flex; }
#mob-nav a { font-family: var(--font-d); font-weight: 700; font-size: 24px; letter-spacing: -.02em; color: var(--white); min-height: 44px; display: flex; align-items: center; transition: color .2s ease; }
#mob-nav a:hover { color: var(--red); }
#mob-nav .mob-cta { background: var(--red); color: var(--white) !important; padding: 14px 36px; border-radius: 6px; font-family: var(--font-b) !important; font-size: 15px !important; font-weight: 700 !important; letter-spacing: .04em !important; margin-top: 8px; }
#mob-nav .mob-cta:hover { background: var(--red-hover) !important; }

/* ══ INNER PAGE HERO ══ */
.page-hero {
  background: var(--void); padding: 140px 0 80px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(193,18,31,.07) 0%, transparent 70%);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 300px;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero-inner { text-align: center; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-b); font-weight: 600; font-size: 11px;
  color: var(--blue); letter-spacing: .24em; text-transform: uppercase; margin-bottom: 20px;
}
.page-hero-eyebrow::before, .page-hero-eyebrow::after { content: ''; display: block; width: 28px; height: 1px; background: var(--blue); opacity: .5; }
.page-hero h1 {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(30px,4.5vw,56px); line-height: 1.07; letter-spacing: -.03em;
  color: var(--white); margin-bottom: 20px;
}
.page-hero h1 em { color: var(--red); font-style: normal; }
.page-hero .sub { margin: 0 auto 32px; }

/* ══ TRUST CARD ══ */
.trust-card {
  background: var(--dark); border: 1px solid var(--border); border-top: 3px solid var(--red);
  border-radius: 12px; padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(193,18,31,.12);
}
.trust-stars { display: flex; gap: 4px; margin-bottom: 10px; }
.trust-stars svg { width: 22px; height: 22px; color: var(--red); }
.trust-card h3 { font-family: var(--font-d); font-weight: 700; font-size: 18px; letter-spacing: -.01em; color: var(--white); margin-bottom: 6px; }
.trust-card p { font-family: var(--font-b); font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.trust-items { display: flex; flex-direction: column; gap: 12px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { width: 38px; height: 38px; background: rgba(193,18,31,.1); border: 1px solid rgba(193,18,31,.25); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--red); }
.trust-icon svg { width: 16px; height: 16px; }
.trust-item-text { font-family: var(--font-b); font-size: 13px; font-weight: 500; color: var(--white); }
.trust-item-sub { font-family: var(--font-b); font-size: 11px; color: var(--muted); }

/* ══ TESTIMONIAL CAROUSEL ══ */
.carousel-wrap { position: relative; padding: 0 30px; }
.carousel-track-outer { overflow: hidden; }
.carousel-track { display: flex; gap: 20px; transition: transform .45s var(--out); }
.tcard {
  background: var(--void); border: 1px solid var(--border); border-radius: 10px;
  padding: 28px; flex: 0 0 calc(33.333% - 14px); min-width: 0;
}
.tcard-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.tcard-stars svg { width: 16px; height: 16px; color: var(--red); }
.tcard-quote { font-family: var(--font-b); font-size: 14px; line-height: 1.7; color: var(--muted); margin-bottom: 20px; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--iron); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-d); font-weight: 700; font-size: 14px; color: var(--red); }
.tcard-name { font-family: var(--font-b); font-weight: 600; font-size: 13px; color: var(--white); }
.tcard-biz { font-family: var(--font-b); font-size: 11px; color: var(--muted); }

/* ══ CAROUSEL BUTTONS ══ */
.car-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--red); background: var(--red); color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s ease, transform .2s var(--spring); z-index: 2; }
.car-btn:hover { background: var(--red-hover); transform: translateY(-50%) scale(1.08); }
.car-btn svg { width: 18px; height: 18px; }
.car-prev { left: -6px; }
.car-next { right: -6px; }

/* ══ FINAL CTA BAND ══ */
.final-cta { background: var(--red); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.fcta-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,255,255,.05) 0%, transparent 70%); pointer-events: none; }
.final-cta .h2 { font-size: clamp(26px,4vw,44px); margin-bottom: 14px; }
.final-cta .sub { color: rgba(241,241,241,.75); margin: 0 auto 36px; }
.fcta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══ LEAD CAPTURE STRIP ══ */
.lc-strip { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 0; }
.lc-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.lc-strip-text h3 { font-family: var(--font-d); font-weight: 700; font-size: 18px; letter-spacing: -.01em; color: var(--white); margin-bottom: 4px; }
.lc-strip-text p { font-family: var(--font-b); font-size: 13px; color: var(--muted); }
.lc-promise { display: flex; align-items: center; gap: 6px; font-family: var(--font-b); font-size: 11px; color: var(--blue); margin-top: 6px; }
.lc-promise svg { width: 13px; height: 13px; }

/* ══ STICKY FLOAT CTA ══ */
.float-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  display: flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white); border-radius: 50px;
  padding: 14px 22px; font-family: var(--font-b); font-weight: 700; font-size: 13px;
  box-shadow: 0 4px 24px rgba(193,18,31,.45); letter-spacing: .03em;
  transition: background .2s ease, transform .2s var(--spring), box-shadow .2s ease;
  text-decoration: none;
}
.float-cta:hover { background: var(--red-hover); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(193,18,31,.55); }
.float-cta svg { width: 16px; height: 16px; }

/* ══ FEATURE SECTIONS ══ */
.feature-sec { padding: 88px 0; }
.feature-sec.bg-d { background: var(--dark); }
.feature-sec.bg-v { background: var(--void); }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feat-grid.rev { direction: rtl; }
.feat-grid.rev > * { direction: ltr; }
.feat-text .eye { display: block; }
.feat-text .h2 { font-size: clamp(22px,2.8vw,36px); }
.feat-text .sub { margin-bottom: 24px; }
.feat-text .check-list { margin-bottom: 28px; }
.feat-visual { background: var(--dark); border: 1px solid var(--border); border-radius: 14px; padding: 40px; display: flex; align-items: center; justify-content: center; min-height: 320px; position: relative; overflow: hidden; box-shadow: 0 4px 24px rgba(58,134,255,.08); }
.feat-visual.light-bg { background: var(--void); }
.feat-visual-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; position: relative; z-index: 1; }
.feat-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(193,18,31,.06) 0%, transparent 70%); pointer-events: none; }

/* Browser mockup */
.mini-browser { width: 100%; max-width: 300px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.mini-browser-bar { background: var(--iron); padding: 8px 12px; display: flex; align-items: center; gap: 6px; }
.mini-browser-bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.mini-browser-bar .url { flex: 1; background: var(--void); border-radius: 3px; height: 14px; margin-left: 6px; }
.mini-browser-body { background: var(--void); padding: 16px; }
.mini-row { height: 8px; background: var(--iron); border-radius: 3px; margin-bottom: 7px; }
.mini-row.r-red { background: rgba(193,18,31,.4); width: 60%; }
.mini-row.r-80 { width: 80%; } .mini-row.r-65 { width: 65%; }
.mini-cards-row { display: flex; gap: 8px; margin-top: 12px; }
.mini-card-sm { flex: 1; height: 40px; background: var(--dark); border: 1px solid var(--border); border-radius: 5px; }

/* Automation tiles */
.auto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; max-width: 300px; }
.auto-tile { background: var(--dark); border: 1px solid var(--border); border-radius: 10px; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.auto-tile.active { border-color: var(--red); background: rgba(193,18,31,.06); }
.auto-tile-icon { width: 30px; height: 30px; border-radius: 8px; background: rgba(193,18,31,.1); display: flex; align-items: center; justify-content: center; color: var(--red); }
.auto-tile-icon svg { width: 14px; height: 14px; }
.auto-tile-label { font-family: var(--font-b); font-size: 11px; font-weight: 600; color: var(--white); }
.auto-tile-val { font-family: var(--font-d); font-size: 18px; font-weight: 700; color: var(--red); letter-spacing: -.02em; }
.auto-tile-sub { font-family: var(--font-b); font-size: 10px; color: var(--muted); }

/* Social dashboard mockup */
.social-dash { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 300px; }
.social-post { background: var(--iron); border-radius: 10px; padding: 12px 14px; border: 1px solid var(--border); }
.social-post-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.social-avatar { width: 28px; height: 28px; border-radius: 50%; background: rgba(193,18,31,.2); border: 1px solid var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-d); font-size: 8px; color: var(--red); font-weight: 700; }
.social-handle { font-family: var(--font-b); font-size: 11px; font-weight: 600; color: var(--white); }
.social-time { font-family: var(--font-b); font-size: 10px; color: var(--muted); margin-left: auto; }
.social-text { height: 6px; background: var(--void); border-radius: 3px; margin-bottom: 4px; }
.social-text.w90 { width: 90%; } .social-text.w70 { width: 70%; } .social-text.w60 { width: 60%; } .social-text.w55 { width: 55%; }
.social-stats { display: flex; gap: 12px; margin-top: 10px; }
.social-stat { font-family: var(--font-b); font-size: 10px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.social-stat-val { color: var(--white); font-weight: 600; }
.social-platform-row { display: flex; gap: 8px; justify-content: center; margin-top: 4px; }
.social-plat { width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--blue); background: rgba(58,134,255,.07); }
.social-plat svg { width: 14px; height: 14px; }

/* SEO visual */
.seo-visual { display: flex; flex-direction: column; align-items: center; gap: 14px; width: 100%; }
.seo-rank { background: var(--void); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; width: 100%; max-width: 280px; }
.seo-rank-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; }
.seo-rank-row:not(:last-child) { border-bottom: 1px solid var(--border); }
.seo-rank-num { font-family: var(--font-d); font-size: 13px; font-weight: 700; color: var(--red); width: 20px; text-align: center; flex-shrink: 0; }
.seo-rank-bar-wrap { flex: 1; height: 6px; background: var(--iron); border-radius: 3px; overflow: hidden; }
.seo-rank-bar { height: 100%; background: var(--red); border-radius: 3px; }
.seo-rank-kw { font-family: var(--font-b); font-size: 11px; color: var(--muted); width: 90px; text-align: right; flex-shrink: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Drone visual */
.drone-visual { display: flex; flex-direction: column; align-items: center; gap: 16px; width: 100%; max-width: 300px; }
.drone-icon-large { width: 80px; height: 80px; background: rgba(58,134,255,.1); border: 1px solid rgba(58,134,255,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue); position: relative; }
.drone-icon-large svg { width: 38px; height: 38px; }
.drone-ring { position: absolute; inset: -8px; border: 1px dashed rgba(58,134,255,.25); border-radius: 50%; animation: spin-slow 12s linear infinite; }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.drone-apps { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.drone-app { background: var(--dark); border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; display: flex; align-items: center; gap: 10px; }
.drone-app-icon { width: 28px; height: 28px; background: rgba(58,134,255,.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue); }
.drone-app-icon svg { width: 13px; height: 13px; }
.drone-app-label { font-family: var(--font-b); font-size: 12px; font-weight: 600; color: var(--white); }
.drone-app-sub { font-family: var(--font-b); font-size: 10px; color: var(--muted); }

/* Coming soon badge */
.badge-soon { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-b); font-weight: 700; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); background: rgba(58,134,255,.1); border: 1px solid rgba(58,134,255,.3); border-radius: 20px; padding: 4px 12px; margin-bottom: 14px; }
.badge-soon::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); display: block; animation: pulse-dot 1.8s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }

/* ══ INDUSTRIES CAROUSEL ══ */
.ind-header { text-align: center; margin-bottom: 48px; }
.ind-track-outer { overflow: hidden; }
.ind-track { display: flex; gap: 16px; transition: transform .45s var(--out); }
.ind-card { flex: 0 0 calc(20% - 13px); min-width: 0; background: var(--void); border: 1px solid var(--border); border-radius: 10px; padding: 24px 16px; display: flex; flex-direction: column; align-items: center; gap: 12px; transition: border-color .2s ease, transform .2s var(--spring); cursor: default; }
.ind-card:hover { border-color: var(--red); transform: translateY(-3px); }
.ind-icon { width: 48px; height: 48px; color: var(--blue); }
.ind-label { font-family: var(--font-b); font-weight: 600; font-size: 13px; color: var(--white); text-align: center; }

/* ══ PROCESS CARDS ══ */
.process-header { text-align: center; margin-bottom: 56px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.proc-card { background: var(--dark); border: 1px solid var(--border); border-radius: 12px; padding: 36px 28px; position: relative; overflow: hidden; transition: transform .3s var(--spring), border-color .2s ease, box-shadow .3s ease; }
.proc-card:hover { transform: translateY(-4px); border-color: var(--red); box-shadow: 0 8px 32px rgba(193,18,31,.12); }
.proc-num { font-family: var(--font-d); font-weight: 900; font-size: 72px; color: var(--iron); letter-spacing: -.05em; line-height: 1; position: absolute; top: 16px; right: 20px; transition: color .2s ease; }
.proc-card:hover .proc-num { color: rgba(193,18,31,.2); }
.proc-icon-wrap { width: 52px; height: 52px; background: rgba(193,18,31,.1); border: 1px solid rgba(193,18,31,.25); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--red); }
.proc-icon-wrap svg { width: 24px; height: 24px; }
.proc-card h3 { font-family: var(--font-d); font-weight: 700; font-size: 16px; letter-spacing: -.01em; color: var(--white); margin-bottom: 10px; }
.proc-card p { font-family: var(--font-b); font-size: 14px; line-height: 1.7; color: var(--muted); }

/* ══ WHY CARDS ══ */
.why-header { text-align: center; margin-bottom: 16px; }
.why-header .sub { margin: 0 auto 52px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { background: var(--void); border: 1px solid var(--border); border-radius: 10px; padding: 28px 24px; transition: border-color .2s ease, transform .2s var(--spring); }
.why-card:hover { border-color: var(--red); transform: translateY(-3px); }
.why-card-icon { width: 44px; height: 44px; background: rgba(193,18,31,.1); border: 1px solid rgba(193,18,31,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--red); }
.why-card-icon svg { width: 20px; height: 20px; }
.why-card h3 { font-family: var(--font-d); font-weight: 600; font-size: 14px; letter-spacing: -.01em; color: var(--white); margin-bottom: 10px; }
.why-card p { font-family: var(--font-b); font-size: 13px; line-height: 1.65; color: var(--muted); }

/* ══ FORM STYLES ══ */
.lform { display: flex; flex-direction: column; gap: 13px; }
.lfield { display: flex; flex-direction: column; gap: 7px; }
.lfield label { font-family: var(--font-b); font-weight: 600; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.lfield input, .lfield select, .lfield textarea {
  font-family: var(--font-b); font-size: 14px; color: var(--white);
  background: var(--void); border: 1px solid var(--iron); border-radius: 6px;
  padding: 13px 16px; min-height: 48px; width: 100%; -webkit-appearance: none; appearance: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.lfield textarea { min-height: 110px; resize: vertical; }
.lfield input:focus, .lfield select:focus, .lfield textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(193,18,31,.13); }
.lfield select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23A0A0A8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 10px; padding-right: 36px; cursor: pointer; }
.lfield select option { background: var(--dark); }
.lform-submit { font-family: var(--font-b); font-weight: 700; font-size: 15px; letter-spacing: .05em; color: var(--white); background: var(--red); border: none; border-radius: 6px; padding: 16px; width: 100%; min-height: 52px; cursor: pointer; margin-top: 4px; transition: background .2s ease, transform .2s var(--spring), box-shadow .2s ease; }
.lform-submit:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(193,18,31,.38); }
.lform-success { display: none; background: var(--dark); border: 1px solid var(--border); border-left: 3px solid var(--red); border-radius: 8px; padding: 24px; }
.lform-success.show { display: block; }
.lform-success h4 { font-family: var(--font-d); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.lform-success p { font-family: var(--font-b); font-size: 14px; color: var(--muted); line-height: 1.7; }
.form-consent { font-family: var(--font-b); font-size: 11px; color: var(--muted); line-height: 1.5; margin-top: 6px; opacity: .7; }

/* ══ FOOTER ══ */
#footer { background: var(--void); border-top: 1px solid var(--border); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-col h4 { font-family: var(--font-d); font-weight: 600; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-family: var(--font-b); font-size: 13px; color: var(--muted); transition: color .2s ease; }
.footer-col ul a:hover { color: var(--white); }
.footer-brand p { font-family: var(--font-b); font-size: 13px; color: var(--muted); line-height: 1.7; margin-top: 14px; max-width: 220px; }
.footer-contact-line { display: flex; align-items: center; gap: 8px; margin-top: 14px; }
.footer-contact-line a { font-family: var(--font-b); font-size: 13px; color: var(--muted); transition: color .2s ease; }
.footer-contact-line a:hover { color: var(--white); }
.footer-contact-line svg { width: 14px; height: 14px; color: var(--red); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid var(--border); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-family: var(--font-b); font-size: 12px; color: var(--muted); }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: border-color .2s ease, color .2s ease; }
.footer-socials a:hover { border-color: var(--white); color: var(--white); }
.footer-socials a svg { width: 14px; height: 14px; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .feat-grid { gap: 48px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  #nav { padding: 0 20px; }
  .wrap { padding: 0 20px; }
  .sec { padding: 64px 0; }
  .feat-grid { grid-template-columns: 1fr; gap: 36px; }
  .feat-grid.rev { direction: ltr; }
  .feat-visual { min-height: 220px; }
  .auto-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tcard { flex: 0 0 100%; }
  .ind-card { flex: 0 0 calc(50% - 8px); }
  .car-prev { left: -16px; } .car-next { right: -16px; }
  .float-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 12px; }
  .lc-strip-inner { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 120px 0 60px; }
  .feature-sec { padding: 60px 0; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .fi { opacity: 1; transform: none; }
  .drone-ring { animation: none; }
}
