/* ===========================================================
   Datacare Services — Shared Stylesheet
   =========================================================== */

:root {
  --navy: #111111;
  --navy-700: #222222;
  --navy-50: #f4f4f5;
  --red: #ce2029;
  --orange: #ce2029;
  --orange-600: #a91820;
  --white: #ffffff;
  --grey-50: #f4f4f6;
  --grey-100: #eef0f3;
  --grey-200: #dde1e8;
  --grey-400: #98a1b2;
  --grey-600: #5a6273;
  --grey-800: #2a313e;
  --shadow-sm: 0 1px 2px rgba(17, 17, 17, .06), 0 1px 3px rgba(17, 17, 17, .04);
  --shadow-md: 0 4px 12px rgba(17, 17, 17, .08);
  --shadow-lg: 0 12px 32px rgba(17, 17, 17, .12);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --container: 1200px;
  --header-h: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--orange); }

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--tight { padding: 56px 0; }
.section--navy {
  background: var(--navy);
  color: var(--navy-50);
}
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--grey { background: var(--grey-50); }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head p {
  color: var(--grey-600);
  font-size: 1.05rem;
}

/* ====== Header / Nav ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.05em;
}
.brand:hover { color: var(--navy); }
.brand-mark-svg {
  border-bottom: 3px solid #e3131b;
  padding-bottom: 2px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.04em;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute;
  right: -2px; bottom: -2px;
  width: 14px; height: 14px;
  background: var(--orange);
  border-top-left-radius: 6px;
}
.brand-text { display: flex; flex-direction: column; align-items: flex-end; line-height: 1; }
.brand-text small { font-size: 0.58rem; color: #4a4a4a; font-weight: 400; letter-spacing: 0.05em; margin-top: 2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--grey-800);
  font-weight: 500;
  font-size: .95rem;
  padding: 8px 0;
  position: relative;
  transition: color .15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 18px !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--orange-600); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  position: relative;
  transition: all .25s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px; height: 2px;
  background: var(--navy);
  transition: all .25s;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after  { top: 0; transform: rotate(-45deg); }

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--orange-600);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}
.btn--secondary:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: var(--white);
}
.btn--small { padding: 10px 18px; font-size: .85rem; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ====== Hero ====== */
.hero {
  background: var(--navy);
  color: var(--navy-50);
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(206,32,41,.18), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.04), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(206,32,41,.12);
  color: var(--orange);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  padding: 8px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  border: 1px solid rgba(206,32,41,.25);
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  margin-bottom: 20px;
  font-weight: 800;
}
.hero h1 .accent { color: var(--orange); }
.hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  max-width: 520px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-stat .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}
.hero-stat .lbl {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
  letter-spacing: .08em;
  letter-spacing: .04em;
}

.hero-visual {
  position: relative;
}
.hero-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-tile {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: all .3s;
  text-decoration: none;
}
.hero-tile:hover {
  background: rgba(206,32,41,.08);
  border-color: rgba(206,32,41,.3);
  transform: translateY(-2px);
}
.hero-tile-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: rgba(206,32,41,.15);
  color: var(--red);
  border-radius: 8px;
  display: grid; place-items: center;
}
.hero-tile-name {
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 4px;
}
.hero-tile-desc {
  color: rgba(255,255,255,.55);
  font-size: .78rem;
  line-height: 1.45;
}

/* ====== Hero Slideshow ====== */
.hero-slideshow {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  height: 440px;
  background: rgba(0,0,0,.4);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .75s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.0);
}
.hero-slide-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 56px 24px 60px;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.35) 55%, transparent 100%);
}
.hero-slide-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.hero-slide-name {
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 6px;
  line-height: 1.25;
}
.hero-slide-desc {
  color: rgba(255,255,255,.72);
  font-size: .84rem;
  line-height: 1.5;
}
.hero-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, background .2s, border-color .2s, transform .25s ease;
}
.hero-slide-arrow--prev { left: 14px; }
.hero-slide-arrow--next { right: 14px; }
.hero-slideshow:hover .hero-slide-arrow {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide-arrow--prev { transform: translateY(-50%) translateX(-4px); }
.hero-slide-arrow--next { transform: translateY(-50%) translateX(4px); }
.hero-slideshow:hover .hero-slide-arrow--prev { transform: translateY(-50%) translateX(0); }
.hero-slideshow:hover .hero-slide-arrow--next { transform: translateY(-50%) translateX(0); }
.hero-slide-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}
.hero-slide-controls {
  position: absolute;
  bottom: 18px; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.hero-slide-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
}
.hero-dot.active {
  background: var(--red);
  width: 22px;
  border-radius: 4px;
}
.hero-dot:hover:not(.active) {
  background: rgba(255,255,255,.65);
}


/* ====== Cards & Grids ====== */
.grid {
  display: grid;
  gap: 24px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
  transition: all .25s;
}
.card:hover {
  border-color: rgba(206,32,41,.3);
  box-shadow: 0 6px 24px rgba(206,32,41,.08), 0 2px 8px rgba(0,0,0,.06);
  transform: translateY(-4px);
}
.card-icon {
  width: 52px; height: 52px;
  background: var(--grey-50);
  color: var(--navy);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 16px;
  border: 1px solid var(--grey-100);
}
.card--accent .card-icon {
  background: rgba(206,32,41,.08);
  color: var(--red);
  border-color: rgba(206,32,41,.15);
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--grey-600); font-size: .95rem; margin: 0; }

/* Why-cards (numbered) */
.why-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
  transition: all .25s;
  border-left: 3px solid var(--red);
}
.why-card:hover {
  box-shadow: 0 6px 24px rgba(206,32,41,.08), 0 2px 8px rgba(0,0,0,.06);
  transform: translateY(-3px);
}
.why-card .num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}
.why-card h3 { margin-bottom: 10px; }
.why-card p { color: var(--grey-600); margin: 0; }

/* Category cards (Products & Services + Home overview) */
.cat-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #ffffff 0%, #fdf5f5 100%);
  border: 1px solid rgba(206,32,41,.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .3s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.04);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #f87171);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, rgba(206,32,41,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cat-card:hover {
  border-color: rgba(206,32,41,.3);
  box-shadow: 0 12px 36px rgba(206,32,41,.12), 0 4px 12px rgba(0,0,0,.07);
  transform: translateY(-5px);
  color: inherit;
  background: linear-gradient(160deg, #ffffff 0%, #fceaea 100%);
}
.cat-card .cat-icon {
  width: 52px; height: 52px;
  background: rgba(206,32,41,.08);
  color: var(--red);
  border-radius: 12px;
  border: 1px solid rgba(206,32,41,.18);
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: all .28s ease;
}
.cat-card:hover .cat-icon {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(206,32,41,.35);
  transform: scale(1.08);
}
.cat-card h3 { margin: 0 0 8px; font-size: 1.05rem; color: var(--navy); }
.cat-card p { color: var(--grey-600); font-size: .88rem; margin: 0 0 18px; flex-grow: 1; }
.cat-card .link {
  color: var(--red);
  font-weight: 600;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ====== Brand Marquee ====== */
.brand-marquee {
  display: flex;
  overflow: hidden;
  gap: 16px;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.brand-track {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  animation: scroll-brands 30s linear infinite;
}
.brand-marquee:hover .brand-track {
  animation-play-state: paused;
}
@keyframes scroll-brands {
  to { transform: translateX(calc(-100% - 16px)); }
}
.brand-logo-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 140px;
  transition: all .2s;
}
.brand-logo-card img {
  max-width: 120px;
  max-height: 48px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.brand-logo-card:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ====== CTA Banner ====== */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: 50%; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(206,32,41,.25), transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin: 0 0 8px; max-width: 520px; }
.cta-banner p { color: rgba(255,255,255,.7); margin: 0; max-width: 520px; }
.cta-banner-actions { position: relative; display: flex; gap: 12px; flex-wrap: wrap; }

/* ====== Page header (sub-pages) ====== */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(206,32,41,.15), transparent 70%);
  pointer-events: none;
}
.page-header h1 { color: var(--white); margin-bottom: 12px; position: relative; }
.page-header p { color: rgba(255,255,255,.75); margin: 0; max-width: 640px; font-size: 1.05rem; position: relative; }

.breadcrumb {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { opacity: .4; }
.breadcrumb .current { color: var(--orange); }

/* ====== Product cards ====== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .25s;
}
.product-card:hover {
  border-color: var(--grey-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-image {
  aspect-ratio: 4/3;
  background:
    linear-gradient(135deg, var(--grey-50), var(--grey-100));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--grey-100);
}
.product-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(17,17,17,.06) 1px, transparent 0);
  background-size: 16px 16px;
  opacity: .8;
}
.product-image-glyph {
  position: relative;
  width: 88px; height: 88px;
  background: var(--white);
  border-radius: 14px;
  display: grid; place-items: center;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
}
.product-image-name {
  position: relative;
  font-weight: 600;
  color: var(--grey-600);
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.product-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}
.product-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  margin: 0;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-tag {
  font-size: .72rem;
  background: var(--navy-50);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 500;
}
.product-desc {
  color: var(--grey-600);
  font-size: .88rem;
  margin: 0;
  flex-grow: 1;
}
.product-card .btn {
  width: 100%;
  justify-content: center;
}

/* ====== Bottom strip ====== */
.bottom-strip {
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
  color: var(--white);
  padding: 36px 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 56px;
}
.bottom-strip h3 { color: var(--white); margin: 0 0 6px; }
.bottom-strip p { margin: 0; color: rgba(255,255,255,.75); font-size: .95rem; }
.bottom-strip .actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.bottom-strip a.contact-link {
  color: var(--orange);
  font-weight: 600;
}

/* ====== About page ====== */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.about-stat {
  background: var(--grey-50);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 3px solid var(--orange);
}
.about-stat .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.about-stat .lbl {
  color: var(--grey-600);
  font-size: .9rem;
  margin-top: 6px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-list li {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
}
.feature-list .check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: rgba(206,32,41,.12);
  color: var(--orange);
  border-radius: 50%;
  display: grid; place-items: center;
}
.feature-list .feat-name {
  font-weight: 600;
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
}
.feature-list .feat-desc {
  font-size: .9rem;
  color: var(--grey-600);
}

/* ====== Contact page ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
}
.info-card {
  background: linear-gradient(160deg, #ffffff 0%, #fdf5f5 100%);
  border: 1px solid rgba(206,32,41,.12);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.04);
  position: relative;
  overflow: hidden;
  transition: all .28s ease;
}
.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #f87171);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}
.info-card:hover::before { transform: scaleX(1); }
.info-card:hover {
  border-color: rgba(206,32,41,.3);
  box-shadow: 0 8px 28px rgba(206,32,41,.1), 0 2px 8px rgba(0,0,0,.06);
  transform: translateY(-3px);
  background: linear-gradient(160deg, #ffffff 0%, #fceaea 100%);
}
.info-card .info-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(206,32,41,.08);
  color: var(--red);
  border-radius: 12px;
  border: 1px solid rgba(206,32,41,.18);
  display: grid; place-items: center;
  transition: all .25s ease;
}
.info-card:hover .info-icon {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 14px rgba(206,32,41,.3);
}
.info-card .info-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.info-card .info-value {
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
}
.info-card .info-value a { color: var(--navy); }
.info-card .info-value a:hover { color: var(--orange); }

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card {
  background: linear-gradient(160deg, #ffffff 0%, #fdf5f5 100%);
  border: 1px solid rgba(206,32,41,.12);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #f87171);
}
.form-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(206,32,41,.06) 0%, transparent 70%);
  pointer-events: none;
}
.form-card h2 { margin-bottom: 8px; }
.form-card .form-sub {
  color: var(--grey-600);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(206,32,41,.15);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--grey-800);
  background: #fdfafa;
  transition: all .15s;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(206,32,41,.12);
}
.form-field textarea { min-height: 130px; resize: vertical; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-100);
  height: 360px;
  background: var(--grey-50);
  position: relative;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ====== Footer ====== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { color: var(--white); }
.footer-brand .brand { color: var(--white); margin-bottom: 16px; }
.footer-brand .brand-text small { color: rgba(255,255,255,.6); }
.footer-tagline {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  line-height: 1.6;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--white);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: color .15s;
}
.footer-col a:hover { color: var(--red); }
.footer-info p {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
  line-height: 1.55;
}
.footer-info a {
  color: rgba(255,255,255,.85);
  transition: color .15s;
}
.footer-info a:hover { color: var(--red); }
.footer-info .lbl {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  display: block;
  margin-bottom: 4px;
}
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

/* ====== Tablet Landscape / Small Desktop ====== */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 40px; }
}

/* ====== Tablet Portrait ====== */
@media (max-width: 820px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .bottom-strip { flex-direction: column; align-items: flex-start; }
}

/* ====== Nav backdrop (mobile drawer overlay) ====== */
.nav-backdrop {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.45);
  z-index: 98;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s ease, visibility 0s .3s;
}
.nav-backdrop.is-active {
  visibility: visible;
  opacity: 1;
  transition: opacity .3s ease, visibility 0s;
}

/* ====== Mobile — right-side drawer ====== */
@media (max-width: 600px) {
  .nav-toggle { display: inline-flex; }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    width: 72vw;
    max-width: 280px;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 32px;
    border-left: 1px solid var(--grey-100);
    box-shadow: -6px 0 32px rgba(0,0,0,.15);
    overflow-y: auto;
    z-index: 99;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1), visibility 0s .3s;
  }
  .nav-links.is-open {
    visibility: visible;
    transform: translateX(0);
    transition: transform .3s cubic-bezier(.4,0,.2,1), visibility 0s;
  }
  .nav-links li { list-style: none; }
  .nav-links a {
    display: block;
    padding: 16px 28px;
    border-bottom: 1px solid var(--grey-100);
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
  }
  .nav-links a.active::after { display: none; }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links .nav-cta {
    display: block;
    margin: 16px 28px 0;
    padding: 13px 22px;
    text-align: center;
    border-bottom: none;
    border-radius: var(--radius-sm);
  }

  .section { padding: 56px 0; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero-stat .num { font-size: 1.3rem; }
  .hero-stat .lbl { font-size: .68rem; white-space: normal; }
  .hero-visual-grid { grid-template-columns: 1fr; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 32px; flex-direction: column; align-items: flex-start; }
  .bottom-strip { padding: 28px; flex-direction: column; align-items: flex-start; }
  .page-header { padding: 48px 0 40px; }
}

