/* =========================================================
   Nexlinks LLC — styles.css
   Design tokens, resets, components, layout, responsiveness
   ========================================================= */

/* -----  TOKENS  ----- */
:root {
  --red:        #E8202A;
  --red-dark:   #B8161E;
  --red-soft:   #FDECEC;
  --red-softer: #FFF5F5;
  --black:      #0A0A0A;
  --gray-900:   #1F2937;
  --gray-700:   #374151;
  --gray-500:   #6B7280;
  --gray-400:   #9CA3AF;
  --gray-300:   #D1D5DB;
  --gray-200:   #E5E7EB;
  --gray-100:   #F3F4F6;
  --gray-50:    #F9FAFB;
  --white:      #FFFFFF;
  --amber:      #F59E0B;

  --shadow-sm:  0 1px 2px rgba(10,10,10,.04), 0 1px 3px rgba(10,10,10,.06);
  --shadow-md:  0 4px 6px -1px rgba(10,10,10,.08), 0 2px 4px -2px rgba(10,10,10,.05);
  --shadow-lg:  0 12px 28px -8px rgba(10,10,10,.15), 0 8px 16px -8px rgba(10,10,10,.08);
  --shadow-xl:  0 24px 48px -12px rgba(10,10,10,.18), 0 12px 24px -8px rgba(10,10,10,.10);
  --shadow-red: 0 20px 40px -12px rgba(232,32,42,.35);

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --font-head:  "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body:  "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --container:  1200px;
  --header-h:   80px;
}

/* -----  RESET  ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--red-dark); }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--black);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.75rem); font-weight: 800; letter-spacing: -.025em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.625rem); letter-spacing: -.02em; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }
p  { margin: 0 0 1em; }

/* -----  SVG ICON  ----- */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -.15em;
  flex-shrink: 0;
}
.icon-fill { fill: currentColor; stroke: none; }

/* -----  LAYOUT  ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding: 96px 0; }
.section.alt { background: var(--gray-50); }
.section-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head p { color: var(--gray-500); font-size: 1.0625rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-soft);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow .icon { width: 1em; height: 1em; }

/* -----  BUTTONS  ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn .icon { width: 1.05em; height: 1.05em; }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 24px 44px -10px rgba(232, 32, 42, .45); }
.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--gray-300);
}
.btn-ghost:hover { border-color: var(--black); color: var(--black); transform: translateY(-2px); background: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--red);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { background: var(--gray-100); color: var(--red-dark); transform: translateY(-2px); }
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.12); color: var(--white); transform: translateY(-2px); }

/* -----  HEADER  ----- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--gray-100);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -.015em;
}
.brand:hover { color: var(--black); }
.brand-logo { width: 44px; height: 44px; object-fit: contain; }
.brand-text span { color: var(--red); }

.nav ul { display: flex; gap: 4px; }
.nav a {
  display: inline-block;
  padding: 10px 16px;
  color: var(--gray-900);
  font-weight: 500;
  font-size: .95rem;
  border-radius: 8px;
  transition: color .15s ease, background .15s ease;
}
.nav a:hover { color: var(--red); background: var(--red-soft); }

.header-cta { padding: 11px 20px; font-size: .9rem; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* -----  HERO  ----- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 110px;
  background: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--gray-200) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  opacity: .6;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
}
.hero-glow-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(232,32,42,.25), transparent 70%);
}
.hero-glow-2 {
  width: 400px;
  height: 400px;
  bottom: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(232,32,42,.15), transparent 70%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-copy .accent {
  color: var(--red);
  position: relative;
  white-space: nowrap;
  display: inline-block;
}
.hero-copy .accent::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: 2px;
  height: 14px;
  background: var(--red-soft);
  z-index: -1;
  border-radius: 6px;
  transform: skew(-4deg);
}
.hero-copy .lead {
  font-size: 1.1875rem;
  color: var(--gray-500);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: .95rem;
  color: var(--gray-700);
  font-weight: 500;
}
.hero-bullets li { display: flex; align-items: center; gap: 8px; }
.hero-bullets .icon { color: var(--red); width: 1.125em; height: 1.125em; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 500px;
  justify-self: center;
}
.hero-blob {
  position: absolute;
  inset: 10%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 42% 58% 62% 38% / 45% 40% 60% 55%;
  animation: blob 14s ease-in-out infinite;
  box-shadow: 0 40px 100px -20px rgba(232,32,42,.55);
}
.hero-ring {
  position: absolute;
  inset: 4%;
  border: 2px dashed rgba(232,32,42,.2);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
@keyframes blob {
  0%, 100% { border-radius: 42% 58% 62% 38% / 45% 40% 60% 55%; }
  50%      { border-radius: 58% 42% 38% 62% / 60% 55% 45% 40%; }
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-logo {
  position: absolute;
  inset: 20%;
  width: 60%;
  height: 60%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.2));
  background: var(--white);
  border-radius: 50%;
  padding: 6%;
}
.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  border: 1px solid var(--gray-100);
}
.hero-card .icon-box {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--red-soft);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 1.125rem;
}
.hero-card .icon-box-yellow { background: #FEF3C7; color: var(--amber); }
.hero-card strong { display: block; color: var(--black); font-size: 1.05rem; font-weight: 700; line-height: 1.2; }
.hero-card span  { display: block; color: var(--gray-500); font-size: .78rem; font-weight: 500; }
.hero-card.card-1 { top: 8%; left: -10%; animation: float 6s ease-in-out infinite; }
.hero-card.card-2 { bottom: 14%; right: -8%; animation: float 6s ease-in-out infinite 3s; }
.hero-card.card-3 { bottom: -2%; left: 10%; animation: float 7s ease-in-out infinite 1.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* -----  TRUST STRIP  ----- */
.trust-strip {
  background: var(--gray-50);
  padding: 24px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.trust-label {
  margin: 0;
  text-align: center;
  color: var(--gray-500);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .02em;
}

/* -----  GRIDS  ----- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* -----  SERVICE OVERVIEW CARDS  ----- */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  border-color: var(--red);
  box-shadow: var(--shadow-red);
  transform: translateY(-4px);
}
.service-card.featured::before { transform: scaleX(1); }
.service-card.featured:hover { transform: translateY(-10px); }
.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.service-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--red-soft), var(--red-softer));
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.service-card:hover .service-icon,
.service-card.featured .service-icon {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  transform: scale(1.05);
}
.service-card p { color: var(--gray-500); margin-bottom: 20px; }
.mini-list {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}
.mini-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-700);
  font-size: .92rem;
}
.mini-list .icon {
  width: 16px;
  height: 16px;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 50%;
  padding: 3px;
  stroke-width: 3;
}
.card-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link .icon { transition: transform .2s ease; width: 1em; height: 1em; }
.card-link:hover .icon { transform: translateX(4px); }

/* -----  WHY US FEATURES  ----- */
.feature {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  transition: background .25s ease, transform .25s ease;
}
.feature:hover {
  background: var(--gray-50);
  transform: translateY(-4px);
}
.feature-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--red-soft), var(--red-softer));
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 1.85rem;
  transition: transform .25s ease, background .25s ease, color .25s ease;
  position: relative;
}
.feature-icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 28px;
  background: var(--red-soft);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: -1;
}
.feature:hover .feature-icon {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  transform: scale(1.06) rotate(-4deg);
}
.feature:hover .feature-icon::before { opacity: .6; }
.feature h4 { margin-bottom: 8px; font-size: 1.1875rem; }
.feature p { color: var(--gray-500); font-size: .95rem; margin: 0; }

/* -----  DETAILED SERVICE OFFER CARDS  ----- */
.offer-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red-soft);
}
.offer-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--red-soft);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 1.375rem;
  margin-bottom: 18px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.offer-card:hover .offer-icon {
  background: var(--red);
  color: var(--white);
  transform: scale(1.08) rotate(-4deg);
}
.offer-card h4 { margin-bottom: 8px; font-size: 1.125rem; }
.offer-card p { color: var(--gray-500); font-size: .94rem; margin: 0; }

.detailed-services.alt { background: var(--gray-50); }

/* -----  STATS STRIP  ----- */
.stats {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(232,32,42,.2), transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(232,32,42,.1), transparent 50%);
}
.stats::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.5vw, 3.25rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--red), #FF5F68);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat strong::after { content: "+"; -webkit-text-fill-color: var(--red); }
.stat span {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  letter-spacing: .02em;
  font-weight: 500;
}

/* -----  INDUSTRIES  ----- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px 22px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.industry:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  background: var(--red-softer);
  box-shadow: var(--shadow-md);
}
.industry-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: var(--red-soft);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.industry:hover .industry-icon {
  background: var(--red);
  color: var(--white);
  transform: scale(1.08);
}
.industry span {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--black);
  font-size: .95rem;
}

/* -----  TESTIMONIALS  ----- */
.testimonials { background: var(--gray-50); }
.quote {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.quote:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.quote-mark {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 38px;
  height: 38px;
  fill: var(--red-soft);
  stroke: none;
}
.stars {
  display: flex;
  gap: 3px;
  color: var(--amber);
  margin-bottom: 16px;
  font-size: 1rem;
}
.stars .icon { width: 1.05em; height: 1.05em; }
.quote blockquote {
  margin: 0 0 24px;
  color: var(--gray-700);
  font-size: 1.02rem;
  line-height: 1.7;
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.quote figcaption strong {
  display: block;
  font-family: var(--font-head);
  color: var(--black);
  font-weight: 700;
  font-size: .98rem;
}
.quote figcaption span {
  display: block;
  color: var(--gray-500);
  font-size: .85rem;
}

/* -----  CTA STRIP  ----- */
.cta-strip {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.15), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(255,255,255,.08), transparent 50%);
  pointer-events: none;
}
.cta-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}
.cta-inner h2 { color: var(--white); margin-bottom: 8px; }
.cta-inner p  { color: rgba(255,255,255,.92); margin: 0; font-size: 1.05rem; }
.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* -----  CONTACT  ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 22px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .98rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--gray-400); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(232,32,42,.12);
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-info { padding: 10px 4px; }
.contact-info h3 { margin-bottom: 24px; font-size: 1.5rem; }
.info-list { display: grid; gap: 20px; margin-bottom: 28px; }
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.info-list .icon-box {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red-soft), var(--red-softer));
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  transition: background .2s ease, color .2s ease;
}
.info-list li:hover .icon-box {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
}
.info-list strong {
  display: block;
  font-family: var(--font-head);
  color: var(--black);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 2px;
}
.info-list a,
.info-list span {
  color: var(--gray-500);
  font-size: .95rem;
  line-height: 1.5;
}
.info-list a:hover { color: var(--red); }

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

/* -----  FOOTER  ----- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.7);
  padding-top: 80px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .brand { color: var(--white); margin-bottom: 18px; }
.footer-brand .brand:hover { color: var(--white); }
.footer-brand .brand-text { color: var(--white); }
.footer-brand p {
  color: rgba(255,255,255,.6);
  font-size: .94rem;
  max-width: 340px;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: .95rem;
  transition: background .2s ease, transform .2s ease, color .2s ease;
}
.socials a:hover { background: var(--red); transform: translateY(-3px); color: var(--white); }
.socials .icon { width: 1.05em; height: 1.05em; }

.footer-col h5 {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a {
  color: rgba(255,255,255,.65);
  font-size: .94rem;
  transition: color .15s ease, padding-left .15s ease;
}
.footer-col a:hover { color: var(--red); padding-left: 4px; }

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .92rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}
.footer-contact .icon { color: var(--red); margin-top: 3px; width: 1em; height: 1em; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { margin: 0; font-size: .88rem; color: rgba(255,255,255,.5); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .hero-inner { gap: 40px; }
  .hero-visual { max-width: 420px; }
  .service-card.featured { transform: none; }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 44px; }

  /* Nav → mobile drawer */
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform .3s ease;
    visibility: hidden;
  }
  .nav.open { transform: translateY(0); visibility: visible; }
  .nav ul { flex-direction: column; gap: 4px; }
  .nav a { display: block; padding: 14px 16px; font-size: 1rem; }
  .header-cta span { display: none; }
  .header-cta { padding: 11px 14px; }
  .menu-toggle { display: flex; }

  /* Hero */
  .hero { padding-top: calc(var(--header-h) + 56px); padding-bottom: 84px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 56px; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-bullets { justify-content: center; }
  .hero-visual { max-width: 340px; order: -1; }
  .hero-card.card-1 { left: -4%; }
  .hero-card.card-2 { right: -2%; }
  .hero-card.card-3 { left: 15%; }

  /* Grids */
  .grid-3 { grid-template-columns: 1fr; gap: 20px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA */
  .cta-inner { flex-direction: column; text-align: center; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 32px 24px; }
  .field-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
}

@media (max-width: 480px) {
  .container { padding-inline: 20px; }
  .btn-lg { padding: 14px 24px; font-size: .95rem; }
  .hero-card.card-1 { left: 0; top: 4%; padding: 10px 14px; }
  .hero-card.card-2 { right: 0; bottom: 8%; padding: 10px 14px; }
  .hero-card.card-3 { display: none; }
  .hero-card .icon-box { width: 34px; height: 34px; font-size: 1rem; }
  .hero-card strong { font-size: .95rem; }
  .hero-card span { font-size: .72rem; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .grid-4 { grid-template-columns: 1fr; }
  .service-card, .offer-card { padding: 28px 22px; }
}

/* -----  REDUCED MOTION  ----- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
