/* ==========================================================================
   MetaFindSolutions - Design System
   ========================================================================== */

:root {
  --bg: #ffffff;
  --bg-alt: #f7f7f4;
  --bg-section: #fafaf7;
  --ink: #0b1220;
  --ink-soft: #475569;
  --ink-mute: #64748b;
  --line: #e6e6df;
  --line-soft: #efefe9;
  --accent: #1e40af;
  --accent-hover: #1e3a8a;
  --accent-soft: #eff4ff;
  --gold: #b08a3e;
  --radius: 4px;
  --maxw: 1240px;
  --shadow-sm: 0 1px 2px rgba(11,18,32,.04), 0 1px 1px rgba(11,18,32,.03);
  --shadow-md: 0 8px 24px rgba(11,18,32,.06), 0 2px 4px rgba(11,18,32,.04);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Typography
   ========================================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-block;
}

.lede {
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.65;
}

/* Layout
   ========================================================================== */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 500px) {
  .container {
    padding: 0 1rem;
  }
}

.section {
  padding: 6rem 0;
}
.section--tight { padding: 4rem 0; }
.section--alt { background: var(--bg-section); }

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
}

/* Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  max-width: var(--maxw);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
}
.logo-meta { color: var(--ink); }
.logo-find { color: var(--accent); font-style: italic; font-weight: 500; }

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.25s ease;
  transform-origin: center;
}

.mobile-cta-item {
  display: none;
}

@media (max-width: 900px) {
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  
  .nav-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    padding: 0 1.5rem;
    border-bottom: 0px solid var(--line-soft);
    gap: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, padding 0.35s ease, border-bottom 0.35s ease;
    pointer-events: none;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.03), 0 4px 6px -2px rgba(0,0,0,0.01);
  }
  .nav-links.open {
    padding: 1.5rem;
    border-bottom: 1px solid var(--line-soft);
    gap: 1.2rem;
    max-height: 420px;
    opacity: 1;
    pointer-events: all;
  }
  .nav-links.open a.active::after { display: none; }
  
  .mobile-cta-item {
    display: block;
    width: 100%;
  }
}

/* Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--font-sans);
  border-radius: var(--radius);
  transition: all .2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--ink); }
.btn-link {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.btn-link:hover { gap: 0.6rem; }

/* Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 7rem 0 6rem;
  overflow: hidden;
  background: linear-gradient(180deg, #fafaf7 0%, #ffffff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(11,18,32,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,18,32,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center top, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center top, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding: 4rem 0; }
}

.hero h1 {
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero-sub {
  font-size: 1.18rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 56ch;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  background: linear-gradient(135deg, #0b1220 0%, #1e293b 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  color: #fff;
}
@media (max-width: 900px) {
  .hero-visual {
    aspect-ratio: 16/10;
    max-height: 320px;
  }
}
.hero-visual::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(30,64,175,.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(176,138,62,.2) 0%, transparent 50%);
  pointer-events: none;
}
.hero-visual-content {
  position: relative;
  z-index: 1;
}
.hero-stat-big {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero-stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

/* Trust strip
   ========================================================================== */
.trust-strip {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: #fff;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 768px) {
  .trust-strip-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .trust-logos {
    justify-content: center;
    gap: 1.5rem 2rem;
  }
}
.trust-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  font-weight: 500;
}
.trust-logos {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-mute);
  opacity: 0.7;
  transition: opacity .2s;
}
.trust-logo:hover { opacity: 1; }

/* Section header
   ========================================================================== */
.section-head {
  margin-bottom: 3.5rem;
  max-width: 720px;
}
.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  margin-bottom: 1rem;
}
.section-head h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

/* Services grid
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  padding: 2.25rem 2rem;
  transition: background .25s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 240px;
}
.service-card:hover { background: var(--bg-alt); }
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.15rem; }
.service-card p { font-size: 0.94rem; line-height: 1.55; }
.service-card .btn-link {
  margin-top: auto;
  font-size: 0.88rem;
}

/* Why us
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.why-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 600px) { .why-pillars { grid-template-columns: 1fr; } }
.pillar h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pillar h4::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.pillar p { font-size: 0.92rem; line-height: 1.55; }

.why-visual {
  position: relative;
  padding: 3rem;
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .why-visual {
    padding: 2rem 1.5rem;
  }
}
.why-visual::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(30,64,175,.4), transparent 70%);
  pointer-events: none;
}
.why-visual h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 400;
  font-style: italic;
}
.why-visual p { color: rgba(255,255,255,0.75); }
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
@media (max-width: 500px) {
  .why-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.why-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.03em;
}
.why-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.35rem;
}

/* Model / process
   ========================================================================== */
.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 700px) { .model-grid { grid-template-columns: 1fr; } }
.model-card {
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  position: relative;
}
.model-card-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.model-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.model-card ul {
  list-style: none;
  margin-top: 1.5rem;
}
.model-card li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding-left: 1.5rem;
  position: relative;
}
.model-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Industries
   ========================================================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
.industry-card {
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  transition: border-color .2s, transform .2s;
}
.industry-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.industry-icon {
  width: 36px; height: 36px;
  margin: 0 auto 0.75rem;
  color: var(--ink);
}
.industry-name {
  font-size: 0.88rem;
  font-weight: 500;
}

/* Testimonial
   ========================================================================== */
.testimonial {
  padding: 4rem 3rem;
  background: var(--bg-section);
  border-radius: 8px;
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 2rem;
  font-weight: 400;
}
.testimonial-author {
  font-size: 0.95rem;
  font-weight: 600;
}
.testimonial-role {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-top: 0.25rem;
}

/* CTA band
   ========================================================================== */
.cta-band {
  background: var(--ink);
  color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(30,64,175,.25), transparent 60%);
  pointer-events: none;
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
}
@media (max-width: 700px) { .cta-band-inner { grid-template-columns: 1fr; } }
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
}
.cta-band h2 em { color: #93c5fd; font-style: italic; }
.cta-band p { color: rgba(255,255,255,0.7); margin-top: 0.75rem; }
.cta-band .btn-primary { background: #fff; color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--accent); color: #fff; }

/* Footer
   ========================================================================== */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line-soft);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p {
  font-size: 0.92rem;
  margin-top: 1rem;
  max-width: 32ch;
}
.footer h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.6rem; }
.footer a {
  font-size: 0.93rem;
  color: var(--ink-soft);
  transition: color .2s;
}
.footer a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--ink-mute);
}
.footer-bottom ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

/* Page hero (interior pages)
   ========================================================================== */
.page-hero {
  padding: 5rem 0 3rem;
  background: var(--bg-section);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(11,18,32,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,18,32,.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.page-hero-content { position: relative; }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 0.5rem; }

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 1.25rem;
  max-width: 18ch;
}
.page-hero h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
.page-hero p { font-size: 1.1rem; max-width: 60ch; }

/* Two col content
   ========================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; gap: 2rem; } }
.two-col p { margin-bottom: 1rem; }
.two-col p:last-child { margin-bottom: 0; }

/* Service detail list
   ========================================================================== */
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 700px) { .service-list { grid-template-columns: 1fr; } }
.service-list-item {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  transition: border-color .2s, transform .2s;
}
.service-list-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.service-list-item h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.service-list-item .num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 400;
}
.service-list-item p { font-size: 0.92rem; }

/* Process / steps
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.step h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.92rem; line-height: 1.55; }

/* Forms
   ========================================================================== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field-full { grid-column: 1 / -1; }
label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
input, textarea, select {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
textarea { resize: vertical; min-height: 140px; }

/* Contact cards
   ========================================================================== */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 600px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card {
  padding: 1.75rem;
  background: var(--bg-section);
  border-radius: 6px;
  border: 1px solid var(--line-soft);
}
.contact-card-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.contact-card p { font-size: 0.9rem; line-height: 1.6; }
.contact-card a {
  display: block;
  margin-top: 0.5rem;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.92rem;
}
.contact-card a:hover { color: var(--accent); }

/* Job listings (careers)
   ========================================================================== */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.job-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  transition: border-color .2s, transform .2s;
}
.job-row:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}
@media (max-width: 700px) {
  .job-row { grid-template-columns: 1fr; gap: 0.5rem; }
}
.job-title { font-size: 1.05rem; font-weight: 600; }
.job-meta { font-size: 0.88rem; color: var(--ink-mute); }

/* Utility
   ========================================================================== */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  background: var(--accent-soft);
  color: var(--accent);
  letter-spacing: 0.02em;
}
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* Subtle entrance animation & visual delays */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .9s cubic-bezier(.16, 1, .3, 1) forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.05s; }
.fade-up:nth-child(2) { animation-delay: 0.12s; }
.fade-up:nth-child(3) { animation-delay: 0.2s; }
.fade-up:nth-child(4) { animation-delay: 0.28s; }
.fade-up:nth-child(5) { animation-delay: 0.36s; }
.fade-up:nth-child(6) { animation-delay: 0.44s; }
.fade-up:nth-child(7) { animation-delay: 0.52s; }
.fade-up:nth-child(8) { animation-delay: 0.6s; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s cubic-bezier(.16, 1, .3, 1) forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* Glassmorphic Background Glow Orbs (Motion Graphics) */
.glow-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 0;
}
.glow-orb {
  position: absolute;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(30,64,175,0.06) 0%, rgba(147,197,253,0.02) 60%, transparent 100%);
  filter: blur(80px);
  pointer-events: none;
  animation: orbit-left 35s infinite ease-in-out;
}
.glow-orb-alt {
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle at center, rgba(176,138,62,0.04) 0%, rgba(252,211,77,0.01) 60%, transparent 100%);
  animation: orbit-right 40s infinite ease-in-out;
}
@keyframes orbit-left {
  0% { transform: translate(-10%, -10%) scale(1); }
  50% { transform: translate(15%, 10%) scale(1.1); }
  100% { transform: translate(-10%, -10%) scale(1); }
}
@keyframes orbit-right {
  0% { transform: translate(10%, 15%) scale(1.1); }
  50% { transform: translate(-15%, -10%) scale(1); }
  100% { transform: translate(10%, 15%) scale(1.1); }
}

/* Floating Animation Utility */
.animate-float {
  animation: float 6s ease-in-out infinite;
}
.animate-float-delayed {
  animation: float 6s ease-in-out infinite;
  animation-delay: 3s;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* Animated SVG Vector Nodes & Lines */
.svg-net-node {
  animation: pulseGlow 4s infinite ease-in-out;
}
.svg-net-node:nth-child(even) {
  animation-delay: 2s;
}
.svg-net-line {
  stroke-dasharray: 8;
  animation: dashFlow 25s infinite linear;
}
.svg-net-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawPath 3s cubic-bezier(.4, 0, .2, 1) forwards;
  animation-delay: 0.5s;
}
@keyframes pulseGlow {
  0%, 100% { r: 5px; fill-opacity: 0.8; }
  50% { r: 7.5px; fill-opacity: 1; }
}
@keyframes dashFlow {
  to { stroke-dashoffset: -1000; }
}
@keyframes drawPath {
  to { stroke-dashoffset: 0; }
}

/* Hover Accent Extensions */
.service-card {
  transition: border-color .3s ease, transform .3s cubic-bezier(.25, .8, .25, 1), box-shadow .3s ease, background-color .3s ease !important;
}
.service-card:hover {
  border-color: var(--accent) !important;
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-md);
  background: #fff !important;
}
.contact-card {
  transition: border-color .3s ease, transform .3s cubic-bezier(.25, .8, .25, 1), box-shadow .3s ease !important;
}
.contact-card:hover {
  border-color: var(--accent) !important;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.industry-card {
  transition: border-color .3s ease, transform .3s cubic-bezier(.25, .8, .25, 1), box-shadow .3s ease, background-color .3s ease !important;
}
.industry-card:hover {
  border-color: var(--accent) !important;
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  background: var(--bg-alt) !important;
}
.job-row {
  transition: border-color .3s ease, transform .3s cubic-bezier(.25, .8, .25, 1), box-shadow .3s ease, background-color .3s ease !important;
}
.job-row:hover {
  border-color: var(--accent) !important;
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}
.service-list-item {
  transition: border-color .3s ease, transform .3s cubic-bezier(.25, .8, .25, 1), box-shadow .3s ease, background-color .3s ease !important;
}
.service-list-item:hover {
  border-color: var(--accent) !important;
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

/* Button Micro-Interactions */
.btn-primary {
  transition: background-color .2s, transform .2s, box-shadow .2s;
}
.btn-primary:hover {
  box-shadow: 0 4px 12px rgba(30,64,175,0.2);
}
.btn-link svg {
  transition: transform .2s;
}
.btn-link:hover svg {
  transform: translateX(4px);
}

/* Job Search & Filter Bar Styles */
.jobs-filter-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  align-items: center;
  background: var(--bg-section);
  padding: 1.25rem;
  border-radius: 6px;
  border: 1px solid var(--line-soft);
  position: relative;
  z-index: 10;
}
.filter-search-wrapper {
  flex: 1;
  min-width: 250px;
  position: relative;
}
.filter-search-wrapper input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.filter-search-wrapper input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,64,175,0.08);
}
.filter-search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-mute);
  pointer-events: none;
  display: flex;
  align-items: center;
}
.filter-select-wrapper {
  min-width: 160px;
}
.filter-select-wrapper select {
  width: 100%;
  padding: 0.75rem 2rem 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  background: #fff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234b5563' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  transition: border-color 0.2s;
}
.filter-select-wrapper select:focus {
  outline: none;
  border-color: var(--accent);
}
.filter-info-text {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  display: block;
}

/* Drag & Drop Upload Zone Styles */
.upload-dropzone {
  border: 2px dashed var(--line);
  border-radius: 6px;
  padding: 2.25rem 1.5rem;
  text-align: center;
  background: var(--bg-section);
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
  position: relative;
  overflow: hidden;
}
.upload-dropzone:hover, .upload-dropzone.dragover {
  border-color: var(--accent);
  background: rgba(30,64,175,0.02);
}
.upload-dropzone input[type="file"] {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  cursor: pointer;
}
.upload-icon {
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
}
.upload-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.upload-hint {
  font-size: 0.78rem;
  color: var(--ink-mute);
}
.selected-file-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  margin-top: 1rem;
  box-shadow: var(--shadow-sm);
  z-index: 10;
  position: relative;
}
.selected-file-chip button {
  color: var(--ink-mute);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transition: background-color 0.2s, color 0.2s;
}
.selected-file-chip button:hover {
  background: #fee2e2;
  color: #ef4444;
}

/* FAQ Accordion Styles */
.faq-accordion {
  margin-top: 3.5rem;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-trigger:hover {
  color: var(--accent);
}
.faq-icon-chevron {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 1rem;
  display: flex;
  align-items: center;
}
.faq-trigger.open .faq-icon-chevron {
  transform: rotate(180deg);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.faq-content-inner {
  padding-bottom: 1.5rem;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq-content-inner p {
  margin-bottom: 1rem;
}
.faq-content-inner p:last-child {
  margin-bottom: 0;
}
