/*
Theme Name: LogicLoom Child
Template: hello-elementor
Version: 1.0.0
Description: LogicLoom custom child theme — built for performance and brand consistency
Author: LogicLoom Technologies
*/

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,700;12..96,800&family=Inter:wght@400;500;600&display=swap');

/* ─── Design Tokens ─────────────────────────────────────────────────────── */
:root {
  --blue:        #2864DF;
  --blue2:       #2D9AED;
  --blue-dim:    rgba(40, 100, 223, 0.07);
  --blue-br:     rgba(40, 100, 223, 0.18);
  --bg:          #FAFBFF;
  --bg2:         #FFFFFF;
  --bg3:         #F0F4FC;
  --br:          #E0E8F4;
  --t1:          #08162A;
  --t2:          #5A6E84;

  --font-head:   'Bricolage Grotesque', sans-serif;
  --font-body:   'Inter', sans-serif;

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   14px;

  --shadow-sm:   0 1px 3px rgba(8,22,42,0.06);
  --shadow-md:   0 4px 16px rgba(8,22,42,0.08);
}

/* ─── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--t1);
  background: var(--bg2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--t1);
}
h1 { font-size: clamp(38px, 5vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: 18px; font-weight: 700; }
h5 { font-size: 15px; font-weight: 700; }

p { color: var(--t2); line-height: 1.8; }

.ll-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.7;
  display: block;
  margin-bottom: 12px;
}

/* ─── Layout ─────────────────────────────────────────────────────────────── */
.ll-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

.ll-section {
  padding: 88px 0;
  border-bottom: 0.5px solid var(--br);
}

.ll-section--alt { background: var(--bg); }
.ll-section--dark { background: var(--t1); }
.ll-section--blue-tint { background: var(--bg3); }

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.ll-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--br);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ll-nav__logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.ll-nav__logo span { color: var(--blue); }

.ll-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.ll-nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--t1);
  text-decoration: none;
  transition: color 0.2s;
}
.ll-nav__links a:hover { color: var(--blue); }

.ll-nav__cta {
  background: var(--blue);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: opacity 0.2s;
}
.ll-nav__cta:hover { opacity: 0.9; }

/* Mobile nav toggle */
.ll-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.ll-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--t1);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.ll-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.ll-btn--primary {
  background: var(--blue);
  color: #fff;
}
.ll-btn--primary:hover { background: #1f55cc; }

.ll-btn--ghost {
  background: transparent;
  color: var(--t1);
  font-weight: 600;
}
.ll-btn--ghost:hover { color: var(--blue); }

.ll-btn--outline {
  background: transparent;
  color: var(--t1);
  border: 1.5px solid var(--t1);
}
.ll-btn--outline:hover { background: var(--t1); color: #fff; }

/* ─── Badge ──────────────────────────────────────────────────────────────── */
.ll-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-dim);
  border: 0.5px solid var(--blue-br);
  border-radius: 100px;
  padding: 5px 16px 5px 10px;
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 28px;
}
.ll-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue2);
  flex-shrink: 0;
}

/* ─── Icon Box ───────────────────────────────────────────────────────────── */
.ll-icon-box {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--blue-dim);
  border: 0.5px solid var(--blue-br);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ll-icon-box svg {
  width: 17px;
  height: 17px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── Cards ──────────────────────────────────────────────────────────────── */
.ll-card {
  background: var(--bg2);
  border: 0.5px solid var(--br);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ll-card:hover {
  border-color: var(--blue-br);
  box-shadow: var(--shadow-sm);
}

/* ─── Grid ───────────────────────────────────────────────────────────────── */
.ll-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--br);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ll-grid-3 > * { background: var(--bg2); }

.ll-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* ─── Split (2-col border) ───────────────────────────────────────────────── */
.ll-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid var(--br);
}
.ll-split__col {
  padding: 56px 48px;
  background: var(--bg);
}
.ll-split__col:first-child { border-right: 0.5px solid var(--br); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.ll-hero {
  padding: 96px 48px 88px;
  border-bottom: 0.5px solid var(--br);
  background: var(--bg2);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  overflow: hidden;
}

.ll-hero__heading { color: var(--t1); }
.ll-hero__heading em { font-style: normal; color: var(--blue); }
.ll-hero__sub {
  font-size: 17px;
  color: var(--t2);
  line-height: 1.8;
  max-width: 460px;
  margin: 20px 0 36px;
}
.ll-hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* Hero illustration */
.ll-hero__illus {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ll-hero__service-cards {
  display: flex;
  flex-direction: column;
  border: 0.5px solid var(--br);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ll-hero__service-card {
  padding: 20px 22px;
  border-bottom: 0.5px solid var(--br);
  background: var(--bg);
  transition: background 0.2s;
}
.ll-hero__service-card:last-child { border-bottom: none; }
.ll-hero__service-card:hover { background: var(--bg3); }
.ll-hero__service-card .ll-eyebrow { margin-bottom: 4px; }
.ll-hero__service-card h5 { font-size: 14px; margin-bottom: 2px; }
.ll-hero__service-card p { font-size: 12px; line-height: 1.5; }

/* ─── Process Steps ──────────────────────────────────────────────────────── */
.ll-steps {
  display: flex;
  flex-direction: column;
  border: 0.5px solid var(--br);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 44px;
}
.ll-step {
  display: flex;
  gap: 20px;
  padding: 26px 30px;
  border-bottom: 0.5px solid var(--br);
  background: var(--bg2);
  align-items: flex-start;
  transition: background 0.2s;
}
.ll-step:last-child { border-bottom: none; }
.ll-step:hover { background: var(--bg3); }
.ll-step__content {}
.ll-step__title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.ll-step__desc { font-size: 14px; color: var(--t2); line-height: 1.8; }

/* ─── Careers Strip ──────────────────────────────────────────────────────── */
.ll-careers-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid var(--br);
}
.ll-careers-strip__left {
  padding: 56px 48px;
  border-right: 0.5px solid var(--br);
  background: var(--bg);
}
.ll-careers-strip__right {
  padding: 56px 48px;
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.ll-role {
  padding: 18px 20px;
  border: 0.5px solid var(--br);
  border-radius: var(--radius-md);
  background: var(--bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ll-role:hover {
  border-color: var(--blue-br);
  box-shadow: var(--shadow-sm);
}
.ll-role__title { font-size: 14px; font-weight: 600; color: var(--t1); margin-bottom: 3px; }
.ll-role__meta { font-size: 12px; color: var(--t2); }
.ll-role__arrow { color: var(--blue); font-size: 16px; }

/* ─── CTA Section ────────────────────────────────────────────────────────── */
.ll-cta {
  padding: 104px 48px;
  background: var(--t1);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ll-cta__illus {
  position: absolute;
  bottom: -20px;
  right: -20px;
  opacity: 0.07;
  pointer-events: none;
}
.ll-cta h2 { color: #fff; position: relative; z-index: 1; }
.ll-cta h2 em { font-style: normal; color: var(--blue2); }
.ll-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.35);
  max-width: 420px;
  margin: 16px auto 40px;
  position: relative;
  z-index: 1;
}
.ll-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.ll-cta .ll-btn--ghost { color: rgba(255,255,255,0.35); }
.ll-cta .ll-btn--ghost:hover { color: rgba(255,255,255,0.7); }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.ll-footer {
  background: var(--bg);
  border-top: 0.5px solid var(--br);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.ll-footer__logo {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--t1);
  text-decoration: none;
}
.ll-footer__logo span { color: var(--blue); }
.ll-footer__copy { font-size: 12px; color: var(--t1); font-weight: 500; }
.ll-footer__links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.ll-footer__links a { font-size: 12px; color: var(--t1); font-weight: 500; text-decoration: none; }
.ll-footer__links a:hover { color: var(--blue); }
.ll-footer__social {
  display: flex;
  gap: 16px;
  list-style: none;
}
.ll-footer__social a { font-size: 12px; color: var(--t1); font-weight: 500; text-decoration: none; }
.ll-footer__social a:hover { color: var(--blue); }

/* ─── Page Hero (inner pages) ────────────────────────────────────────────── */
.ll-page-hero {
  padding: 80px 48px 72px;
  border-bottom: 0.5px solid var(--br);
  background: var(--bg2);
}
.ll-page-hero h1 { max-width: 640px; margin-bottom: 16px; }
.ll-page-hero p { font-size: 17px; max-width: 520px; }

/* ─── Service Page Cards ─────────────────────────────────────────────────── */
.ll-service-card {
  padding: 36px 32px;
  background: var(--bg2);
  border-bottom: 0.5px solid var(--br);
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: background 0.2s;
}
.ll-service-card:hover { background: var(--bg3); }
.ll-service-card__body {}
.ll-service-card__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.ll-service-card__desc { font-size: 15px; color: var(--t2); line-height: 1.8; }

/* ─── Team Page ──────────────────────────────────────────────────────────── */
.ll-team-intro {
  padding: 72px 48px;
  border-bottom: 0.5px solid var(--br);
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ll-team-intro p { font-size: 17px; color: var(--t2); line-height: 1.85; }

.ll-dept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--br);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.ll-dept-card {
  background: var(--bg2);
  padding: 32px 28px;
  transition: background 0.2s;
}
.ll-dept-card:hover { background: var(--bg3); }
.ll-dept-card h4 { margin: 16px 0 10px; letter-spacing: -0.2px; }
.ll-dept-card p { font-size: 13px; line-height: 1.75; }

/* ─── Careers Page ───────────────────────────────────────────────────────── */
.ll-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.ll-why-card {
  padding: 28px 24px;
  background: var(--bg);
  border: 0.5px solid var(--br);
  border-radius: var(--radius-md);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.ll-why-card:hover { border-color: var(--blue-br); }
.ll-why-card h5 { margin-bottom: 6px; font-size: 15px; }
.ll-why-card p { font-size: 13px; line-height: 1.8; }

.ll-openings { margin-top: 48px; }
.ll-opening-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border: 0.5px solid var(--br);
  border-radius: var(--radius-md);
  background: var(--bg2);
  margin-bottom: 12px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ll-opening-card:hover {
  border-color: var(--blue-br);
  box-shadow: var(--shadow-sm);
}
.ll-opening-card__title { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--t1); margin-bottom: 6px; }
.ll-opening-card__meta { font-size: 13px; color: var(--t2); display: flex; gap: 16px; }
.ll-opening-card__tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-dim);
  border: 0.5px solid var(--blue-br);
  padding: 3px 10px;
  border-radius: 100px;
}
.ll-opening-card__arrow { color: var(--blue); font-size: 20px; flex-shrink: 0; }

/* ─── Contact Page ───────────────────────────────────────────────────────── */
.ll-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border-bottom: 0.5px solid var(--br);
}
.ll-contact-info {
  padding: 72px 48px;
  background: var(--bg);
  border-right: 0.5px solid var(--br);
}
.ll-contact-info h3 { margin-bottom: 14px; }
.ll-contact-info p { font-size: 15px; margin-bottom: 32px; }
.ll-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.ll-contact-detail p { margin: 0; font-size: 14px; }
.ll-contact-detail strong { color: var(--t1); font-weight: 600; display: block; margin-bottom: 2px; }

.ll-contact-form { padding: 72px 48px; background: var(--bg2); }
.ll-form-group { margin-bottom: 20px; }
.ll-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 7px;
}
.ll-form-group input,
.ll-form-group textarea,
.ll-form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--t1);
  background: var(--bg);
  border: 1px solid var(--br);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.ll-form-group input:focus,
.ll-form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-dim);
}
.ll-form-group textarea { resize: vertical; min-height: 140px; }
.ll-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── Illustration: Node Network ─────────────────────────────────────────── */
.ll-illus-node { /* SVG inline */ }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ll-container { padding: 0 32px; }
  .ll-nav { padding: 0 32px; }
  .ll-hero { grid-template-columns: 1fr; padding: 72px 32px; }
  .ll-hero__illus { display: none; }
  .ll-split { grid-template-columns: 1fr; }
  .ll-split__col:first-child { border-right: none; border-bottom: 0.5px solid var(--br); }
  .ll-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ll-careers-strip { grid-template-columns: 1fr; }
  .ll-careers-strip__left { border-right: none; border-bottom: 0.5px solid var(--br); }
  .ll-contact-layout { grid-template-columns: 1fr; }
  .ll-contact-info { border-right: none; border-bottom: 0.5px solid var(--br); }
  .ll-team-intro { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .ll-nav { padding: 0 20px; }
  .ll-nav__links { display: none; }
  .ll-nav__toggle { display: block; }
  .ll-nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 0.5px solid var(--br);
    padding: 20px;
    gap: 16px;
  }
  .ll-hero { padding: 56px 20px; }
  .ll-section { padding: 64px 0; }
  .ll-container { padding: 0 20px; }
  .ll-grid-3 { grid-template-columns: 1fr; }
  .ll-grid-2 { grid-template-columns: 1fr; }
  .ll-why-grid { grid-template-columns: 1fr; }
  .ll-dept-grid { grid-template-columns: 1fr; }
  .ll-footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .ll-cta { padding: 72px 20px; }
  .ll-form-row { grid-template-columns: 1fr; }
  .ll-page-hero { padding: 56px 20px; }
  .ll-split__col { padding: 40px 20px; }
  .ll-contact-info,
  .ll-contact-form { padding: 48px 20px; }
  .ll-careers-strip__left,
  .ll-careers-strip__right { padding: 40px 20px; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
}


/* ═══════════════════════════════════════════════════════
   FIXES — ROUND 2
   ═══════════════════════════════════════════════════════ */

/* 1. Crisp headings */
html body h1,html body h2,html body h3,html body h4,html body h5,html body h6,
.ll-nav__logo,.ll-footer__logo,.elementor-heading-title {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: optimizeLegibility !important;
  font-synthesis: none !important;
}

/* 2. LogicLoom — consistent 800 weight on both words */
.ll-nav__logo,.ll-footer__logo { font-weight: 800 !important; }
.ll-nav__logo span,.ll-footer__logo span { font-weight: 800 !important; color: var(--blue) !important; }

/* 3. Sticky navbar */
.ll-nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 999 !important;
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

/* 4. All sections full screen width */
.ll-hero,.ll-section,.ll-section--alt,.ll-split,.ll-cta,.ll-page-hero,
.ll-job-hero,.ll-job-body,.ll-contact-layout,.ll-team-intro,.ll-footer,
.ll-careers-strip,.ll-why,.ll-how,.ll-openings-section {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* 5. Spider/node illustration — bigger, fills half */
.ll-hero__illus { display: flex !important; align-items: center !important; justify-content: center !important; }
.ll-hero__illus svg { width: 100% !important; max-width: 520px !important; min-height: 320px !important; height: auto !important; }

/* 6. Services — remove left/right gaps */
.ll-section .ll-container,.ll-hero .ll-container {
  max-width: 1200px !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* 7. What We Offer — left align */
.ll-wc-title,.ll-section h2,.ll-section h3,.ll-section .ll-eyebrow { text-align: left !important; }
.ll-service-card,.ll-wc-card { text-align: left !important; }

/* 8. Our Approach — full screen */
.ll-section--alt { width: 100% !important; max-width: 100% !important; }
.ll-steps { width: 100% !important; }

/* 9. Darker light background sections */
.ll-section--alt,.ll-split__col.ll-split__col--light,.ll-vm-section,.ll-how,
.ll-job-body,.ll-why-grid,.ll-dept-section,.ll-careers-strip__inner { background: #E8EDF8 !important; }

/* 10. Burger — brand blue when active */
.ll-nav__toggle span { background: #08162A !important; transition: background 0.2s !important; }
.ll-nav__toggle.is-active span { background: #2864DF !important; }
.ll-nav__toggle:hover span { background: #2864DF !important; }

/* 11. Contact form vertical spacing */
.wpcf7-form p { margin-bottom: 20px !important; }
.wpcf7-form-control-wrap { display: block !important; margin-top: 8px !important; }
.wpcf7-form br { display: none !important; }
.wpcf7-form-control-wrap input[type=text],
.wpcf7-form-control-wrap input[type=email],
.wpcf7-form-control-wrap input[type=tel],
.wpcf7-form-control-wrap textarea,
.wpcf7-form-control-wrap select {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1.5px solid var(--br) !important;
  border-radius: 8px !important;
  font-family: "Inter",sans-serif !important;
  font-size: 14px !important;
  background: #fff !important;
  box-sizing: border-box !important;
  margin-bottom: 0 !important;
}
.wpcf7-form label {
  display: block !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--t1) !important;
  margin-bottom: 6px !important;
}

/* 12. Hero grid full width */
.ll-hero {
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 56px !important;
  align-items: center !important;
  padding: 96px 48px 88px !important;
}
@media (max-width: 960px) {
  .ll-hero { grid-template-columns: 1fr !important; padding: 64px 24px !important; }
  .ll-hero__illus { display: none !important; }
  .ll-section .ll-container { padding-left: 24px !important; padding-right: 24px !important; }
}
@media (max-width: 600px) {
  .ll-section .ll-container { padding-left: 16px !important; padding-right: 16px !important; }
  .ll-nav { padding: 0 16px !important; }
}


/* ════════════════════════════════════════════════════
   LOGICLOOM FIXES — FINAL ROUND
   ════════════════════════════════════════════════════ */

/* ── CRISP HEADINGS: antialiasing on all section titles ── */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
h1,h2,h3,h4,h5,h6,
.ll-hero__title,.ll-page-hero h1,.ll-section h2,.ll-section h3,
.ll-section-title,.ll-wc-title,.ll-step__title,.ll-service-card__title,
.ll-why-card h5,.ll-trait-title,.ll-job-resp-header h4,
.ll-opening-card__title,.ll-dept-card h4,.ll-vm-title,
.ll-job-summary-label,.elementor-heading-title {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: optimizeLegibility !important;
  font-synthesis: none !important;
  font-family: "Bricolage Grotesque", sans-serif !important;
  letter-spacing: -0.03em !important;
}
h1 { font-weight: 800 !important; letter-spacing: -0.04em !important; line-height: 1.06 !important; }
h2 { font-weight: 800 !important; letter-spacing: -0.035em !important; line-height: 1.08 !important; }
h3 { font-weight: 700 !important; }
h4,h5,h6 { font-weight: 700 !important; }

/* ── LOGO: both Logic and Loom at weight 800 ── */
.ll-nav__logo { font-weight: 800 !important; font-size: 20px !important; letter-spacing: -0.04em !important; font-family: "Bricolage Grotesque", sans-serif !important; text-decoration: none !important; }
.ll-nav__logo span { font-weight: 800 !important; color: #2864DF !important; }
.ll-footer__logo { font-weight: 800 !important; font-family: "Bricolage Grotesque", sans-serif !important; }
.ll-footer__logo span { font-weight: 800 !important; color: #2864DF !important; }

/* ── STICKY NAVBAR ── */
.ll-nav {
  position: sticky !important; top: 0 !important; z-index: 9999 !important;
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(16px) !important; -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 0.5px solid #E0E8F4 !important;
  width: 100% !important; box-sizing: border-box !important;
}

/* ── FULL SCREEN: every section edge to edge ── */
body > *,
.ll-hero, .ll-section, .ll-section--alt, .ll-split, .ll-cta, .ll-page-hero,
.ll-job-hero, .ll-job-body, .ll-contact-wrap, .ll-footer,
.ll-team-intro, .ll-why, .ll-how, .ll-dept-section,
.ll-openings-section, .ll-careers-strip, .site-main > section,
.site-main > div > section {
  width: 100% !important; max-width: 100% !important; box-sizing: border-box !important;
}

/* ── CONTAINER: consistent max-width with padding ── */
.ll-container {
  max-width: 1200px !important; width: 100% !important;
  padding-left: 48px !important; padding-right: 48px !important;
  margin-left: auto !important; margin-right: auto !important;
  box-sizing: border-box !important;
}

/* ── SPIDER/NODE ILLUSTRATION: fill half the hero ── */
.ll-hero__illus {
  display: flex !important; align-items: center !important;
  justify-content: center !important; width: 100% !important; height: 100% !important;
}
.ll-hero__illus svg {
  width: 100% !important; max-width: 560px !important;
  min-height: 340px !important; height: auto !important;
}

/* ── HERO: two equal halves ── */
.ll-hero {
  display: grid !important; grid-template-columns: 1fr 1fr !important;
  gap: 48px !important; align-items: center !important;
  padding: 88px 48px 80px !important; width: 100% !important; box-sizing: border-box !important;
}

/* ── SERVICES: no side gaps, left-aligned headings ── */
.ll-section h2, .ll-section h3, .ll-section .ll-eyebrow,
.ll-wc-title, .ll-section-title { text-align: left !important; }
.ll-grid-3 { display: grid !important; width: 100% !important; box-sizing: border-box !important; }

/* ── OUR APPROACH: full screen width ── */
.ll-section--alt { width: 100% !important; max-width: 100% !important; }

/* ── DARKER LIGHT BG ── */
.ll-section--alt { background-color: #E6ECF7 !important; }

/* ── BURGER: brand blue when active ── */
.ll-nav__toggle span { background: #08162A !important; transition: background 0.15s ease !important; }
.ll-nav__toggle.is-active span { background: #2864DF !important; }
.ll-nav__toggle:hover span { background: #2864DF !important; }
/* Close X lines also blue */
.ll-nav__toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: #2864DF !important; }
.ll-nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.ll-nav__toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: #2864DF !important; }

/* ── CONTACT FORM: vertical spacing between fields ── */
.wpcf7-form p { margin-bottom: 22px !important; display: block !important; }
.wpcf7-form br { display: none !important; }
.wpcf7-form-control-wrap { display: block !important; margin-top: 7px !important; }
.wpcf7-form label,
.wpcf7-form .wpcf7-form-control-wrap + br + * { display: block !important; margin-bottom: 4px !important; font-size: 13px !important; font-weight: 600 !important; color: #08162A !important; }
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea,
.wpcf7-form-control-wrap select {
  width: 100% !important; display: block !important; box-sizing: border-box !important;
  padding: 12px 16px !important; border: 1.5px solid #E0E8F4 !important;
  border-radius: 8px !important; font-size: 14px !important;
  font-family: "Inter", sans-serif !important; background: #fff !important;
  color: #08162A !important; outline: none !important; margin: 0 !important;
  transition: border-color 0.2s !important;
}
.wpcf7-form-control-wrap input:focus,
.wpcf7-form-control-wrap textarea:focus { border-color: #2864DF !important; }
.wpcf7-form input[type="submit"], .wpcf7-submit {
  background: #2864DF !important; color: #fff !important; font-weight: 600 !important;
  padding: 13px 32px !important; border-radius: 8px !important; border: none !important;
  font-size: 14px !important; cursor: pointer !important; margin-top: 8px !important;
  font-family: "Inter", sans-serif !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ll-hero { grid-template-columns: 1fr !important; padding: 60px 32px !important; }
  .ll-hero__illus { display: none !important; }
  .ll-container { padding-left: 32px !important; padding-right: 32px !important; }
}
@media (max-width: 640px) {
  .ll-container { padding-left: 20px !important; padding-right: 20px !important; }
  .ll-nav { padding: 0 20px !important; }
}
