@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400;500;600;700;800&family=Wix+Madefor+Text:wght@400;500;600;700&display=swap');


:root {
  --primary: #2D6A8A;
  --secondary: #1A3D52;
  --accent: #4BBFA0;

  --p-light: color-mix(in oklch, var(--primary), white 60%);
  --p-xlight: color-mix(in oklch, var(--primary), white 88%);
  --p-dark: color-mix(in oklch, var(--primary), black 30%);
  --p-xdark: color-mix(in oklch, var(--primary), black 55%);

  --a-light: color-mix(in oklch, var(--accent), white 55%);
  --a-xlight: color-mix(in oklch, var(--accent), white 85%);
  --a-dark: color-mix(in oklch, var(--accent), black 20%);

  --s-light: color-mix(in oklch, var(--secondary), white 70%);
  --s-xlight: color-mix(in oklch, var(--secondary), white 92%);

  --bg: #F7F9FB;
  --bg-tint: color-mix(in oklch, var(--primary), white 94%);
  --bg-dark: var(--secondary);

  --txt: #1C2B36;
  --txt-muted: color-mix(in oklch, var(--txt), white 35%);
  --txt-light: color-mix(in oklch, var(--txt), white 60%);

  --border: color-mix(in oklch, var(--primary), white 78%);
  --border-light: color-mix(in oklch, var(--primary), white 88%);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px color-mix(in oklch, var(--secondary), transparent 88%), 0 1px 2px color-mix(in oklch, var(--secondary), transparent 94%);
  --shadow-md: 0 4px 12px color-mix(in oklch, var(--secondary), transparent 82%), 0 2px 4px color-mix(in oklch, var(--secondary), transparent 90%);
  --shadow-lg: 0 10px 30px color-mix(in oklch, var(--secondary), transparent 78%), 0 4px 10px color-mix(in oklch, var(--secondary), transparent 88%);
  --shadow-xl: 0 20px 50px color-mix(in oklch, var(--secondary), transparent 72%), 0 8px 20px color-mix(in oklch, var(--secondary), transparent 84%);

  --hdr-h: 72px;
  --transition: 0.25s ease;
  --transition-slow: 0.45s ease;
}


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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Wix Madefor Text', sans-serif;
  background: var(--bg);
  color: var(--txt);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--a-dark); }

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Wix Madefor Display', sans-serif;
  color: var(--txt);
  line-height: 1.2;
  font-weight: 700;
}


.hero-h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.pg-h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sec-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.narrow {
  max-width: 780px;
}

.sec {
  padding: 5rem 0;
}

.sec-tinted { background: var(--bg-tint); }
.sec-dark { background: var(--secondary); }
.sec-dark .sec-title,
.sec-dark h2,
.sec-dark p { color: color-mix(in oklch, white, var(--s-light) 20%); }


.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--hdr-h);
  border-bottom: 1px solid transparent;
  transition: background var(--transition-slow), border-color var(--transition-slow), box-shadow var(--transition-slow);
}

.hdr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hdr-logo { flex-shrink: 0; display: flex; align-items: center; }
.hdr-logo img { height: 36px; width: auto; }

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 auto;
}

.hdr-lnk {
  font-family: 'Wix Madefor Text', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--txt);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.hdr-lnk:hover,
.hdr-lnk.active {
  background: var(--p-xlight);
  color: var(--primary);
}

.hdr-solid,
.hdr.scrolled {
  background: rgba(247, 249, 251, 0.97);
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.hdr-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hdr-burger:hover { background: var(--p-xlight); }

.hdr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}


.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 61, 82, 0.5);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
  backdrop-filter: blur(2px);
}

.mob-overlay.active { opacity: 1; pointer-events: all; }

.mob-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 340px;
  height: 100dvh;
  background: var(--bg);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform var(--transition-slow) cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-xl);
}

.mob-menu.open { transform: translateX(0); }

.mob-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  background: var(--p-xlight);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--primary);
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.mob-close:hover { background: var(--primary); color: white; }

.mob-nav { display: flex; flex-direction: column; gap: 0.25rem; }

.mob-lnk {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--txt);
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  opacity: 0;
  transform: translateX(-16px);
}

.mob-menu.open .mob-lnk {
  opacity: 1;
  transform: translateX(0);
  transition: background var(--transition), color var(--transition),
              opacity 0.35s ease calc(var(--i) * 0.06s),
              transform 0.35s ease calc(var(--i) * 0.06s);
}

.mob-lnk:hover { background: var(--p-xlight); color: var(--primary); }

.mob-cta {
  margin-top: auto;
  text-align: center;
  width: 100%;
}


.btn-pri {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  font-family: 'Wix Madefor Text', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  text-decoration: none;
}

.btn-pri:hover {
  background: var(--p-dark);
  border-color: var(--p-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary);
  font-family: 'Wix Madefor Text', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-ghost:hover {
  background: var(--p-xlight);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: white;
  font-family: 'Wix Madefor Text', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  margin-top: 1.5rem;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  color: white;
  transform: translateY(-2px);
}

.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.82rem; }


.sec-hd {
  text-align: center;
  margin-bottom: 3.5rem;
}

.sec-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--a-xlight);
  border: 1px solid var(--a-light);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 0.9rem;
}

.sec-tag-light {
  color: var(--a-light);
  background: rgba(75, 191, 160, 0.15);
  border-color: rgba(75, 191, 160, 0.3);
}

.sec-desc {
  max-width: 640px;
  margin: 0.75rem auto 0;
  color: var(--txt-muted);
  font-size: 1.05rem;
}


.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--hdr-h);
  padding-bottom: 0;
  background: var(--bg);
  overflow: hidden;
  gap: 0;
}

.hero-content {
  flex: 0 0 45%;
  padding: 4rem 3rem 4rem 2rem;
  max-width: 580px;
  animation: heroFadeIn 0.9s ease both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--a-xlight);
  border: 1px solid var(--a-light);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--txt-muted);
  margin: 1.5rem 0 2rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.hero-stat { display: flex; flex-direction: column; gap: 0.2rem; }

.stat-num {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-lbl {
  font-size: 0.78rem;
  color: var(--txt-light);
  font-weight: 500;
}

.hero-img-wrap {
  flex: 0 0 55%;
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  animation: heroImgIn 1.1s ease 0.2s both;
}

@keyframes heroImgIn {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-float-card {
  position: absolute;
  bottom: 2.5rem;
  left: -2rem;
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 220px;
  border: 1px solid var(--border-light);
  animation: floatIn 1.2s ease 0.5s both;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-card-ico {
  font-size: 1.6rem;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-float-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--txt);
  font-weight: 700;
  font-family: 'Wix Madefor Display', sans-serif;
}

.hero-float-card span {
  font-size: 0.78rem;
  color: var(--txt-muted);
}


.intro-strip { padding: 3.5rem 0; }

.intro-lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--txt-muted);
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.7;
}


.masonry-grid {
  columns: 3;
  column-gap: 1.5rem;
}

.crd {
  break-inside: avoid;
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--p-light);
}

.crd-ico-wrap {
  width: 48px;
  height: 48px;
  background: var(--a-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background var(--transition);
}

.crd:hover .crd-ico-wrap { background: var(--a-light); }

.crd-ico {
  font-size: 1.2rem;
  color: var(--accent);
}

.crd-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--txt);
}

.crd-txt {
  font-size: 0.9rem;
  color: var(--txt-muted);
  line-height: 1.65;
}

.crd-img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: 1.2rem;
  object-fit: cover;
  aspect-ratio: 16/9;
}


.approach-prev-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.approach-prev-img img {
  border-radius: var(--radius-xl);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.approach-prev-txt .sec-title { color: white; margin-bottom: 1.2rem; }
.approach-prev-txt p {
  color: color-mix(in oklch, white, var(--s-light) 30%);
  margin-bottom: 1rem;
  font-size: 0.97rem;
}


.paths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.path-crd {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-left-color var(--transition);
}

.path-crd:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--accent);
}

.path-crd-accent {
  border-left-color: var(--accent);
  background: color-mix(in oklch, var(--accent), white 93%);
}

.path-num {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.path-crd:hover .path-num { color: var(--p-light); }
.path-crd-accent .path-num { color: var(--a-light); }

.path-crd h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--txt);
}

.path-crd p {
  font-size: 0.88rem;
  color: var(--txt-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.path-lnk {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition), color var(--transition);
}

.path-lnk:hover { gap: 0.7rem; color: var(--accent); }


.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 12px color-mix(in oklch, var(--primary), transparent 60%);
}

.step-title { font-size: 1rem; margin-bottom: 0.7rem; }
.step-txt { font-size: 0.87rem; color: var(--txt-muted); line-height: 1.6; }


.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-crd {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-crd:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.blog-crd-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-crd:hover .blog-crd-img { transform: scale(1.03); }

.blog-crd-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--p-xlight);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.blog-crd-title {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.blog-crd-txt {
  font-size: 0.875rem;
  color: var(--txt-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.blog-lnk {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition), color var(--transition);
  margin-top: auto;
}

.blog-lnk:hover { gap: 0.7rem; color: var(--accent); }


.dual-cta {
  background: var(--secondary);
  padding: 5rem 0;
}

.dual-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.dual-cta-pri {
  background: var(--primary);
  padding: 3.5rem;
}

.dual-cta-sec {
  background: color-mix(in oklch, var(--secondary), white 8%);
  padding: 3.5rem;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.dual-cta-pri h2,
.dual-cta-sec h2 {
  color: white;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin: 0.75rem 0 1rem;
}

.dual-cta-pri p,
.dual-cta-sec p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  line-height: 1.65;
}


.pg-hero {
  padding-top: calc(var(--hdr-h) + 4rem);
  padding-bottom: 4rem;
  background: var(--bg);
}

.pg-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pg-hero-txt .sec-tag { margin-bottom: 1rem; }

.pg-hero-sub {
  font-size: 1.05rem;
  color: var(--txt-muted);
  margin-top: 1rem;
  line-height: 1.7;
}

.pg-hero-sub.centered { text-align: center; max-width: 640px; margin: 1rem auto 0; }
.centered { text-align: center; }

.pg-hero-img img {
  border-radius: var(--radius-xl);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.pg-hero-center {
  text-align: center;
}


.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pillar-crd {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.pillar-crd:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.pillar-num {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--a-light);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.pillar-crd h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}

.pillar-crd p {
  font-size: 0.88rem;
  color: var(--txt-muted);
  line-height: 1.65;
}


.approach-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.approach-detail-txt .sec-tag { margin-bottom: 1rem; }

.approach-detail-txt p {
  color: var(--txt-muted);
  margin-bottom: 1rem;
  font-size: 0.97rem;
  line-height: 1.7;
}

.approach-detail-img img {
  border-radius: var(--radius-xl);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}


.lp-full-grid { display: flex; flex-direction: column; gap: 2rem; }

.lp-crd {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition);
}

.lp-crd:hover { box-shadow: var(--shadow-xl); }

.lp-crd-header {
  padding: 2.5rem 3rem;
  position: relative;
}

.lp-col-a { background: linear-gradient(135deg, var(--primary), color-mix(in oklch, var(--primary), var(--accent) 30%)); }
.lp-col-b { background: linear-gradient(135deg, var(--accent), color-mix(in oklch, var(--accent), var(--primary) 40%)); }
.lp-col-c { background: linear-gradient(135deg, color-mix(in oklch, var(--secondary), white 10%), var(--primary)); }
.lp-col-d { background: linear-gradient(135deg, color-mix(in oklch, var(--accent), var(--secondary) 50%), var(--secondary)); }

.lp-num {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
}

.lp-title {
  color: white;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 0.5rem;
}

.lp-sub {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.lp-crd-body { padding: 2.5rem 3rem; }

.lp-crd-body > p {
  color: var(--txt-muted);
  margin-bottom: 1rem;
  font-size: 0.97rem;
  line-height: 1.7;
}

.lp-modules { margin: 1.5rem 0; }

.lp-modules h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--txt-light);
  margin-bottom: 0.8rem;
}

.lp-module-list { display: flex; flex-direction: column; gap: 0.5rem; }

.lp-module-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--txt-muted);
}

.lp-module-list li i {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.85rem;
}

.lp-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border-light);
}

.lp-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--txt-muted);
  font-weight: 500;
}

.lp-meta i { color: var(--accent); }


.blog-full-grid { display: flex; flex-direction: column; gap: 2.5rem; }

.blog-full-crd {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 380px 1fr;
}

.blog-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.blog-full-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.blog-full-body-wide {
  grid-column: 1 / -1;
}

.blog-full-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--txt-light);
  font-weight: 500;
}

.blog-full-title {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.blog-full-body > p {
  font-size: 0.93rem;
  color: var(--txt-muted);
  line-height: 1.72;
  margin-bottom: 0.9rem;
}

.blog-full-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-wrap h2,
.contact-info-wrap h2 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}

.contact-intro {
  color: var(--txt-muted);
  font-size: 0.93rem;
  margin-bottom: 1.8rem;
}

.frm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.frm-group { display: flex; flex-direction: column; gap: 0.4rem; }
.frm-group-msg { grid-column: 1 / -1; }

.frm-lbl {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--txt);
  letter-spacing: 0.02em;
}

.frm-input {
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Wix Madefor Text', sans-serif;
  font-size: 0.9rem;
  color: var(--txt);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.frm-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary), transparent 80%);
}

.frm-textarea { resize: vertical; min-height: 80px; }

.frm-bottom {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.frm-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--txt-muted);
  cursor: pointer;
  flex: 1;
}

.frm-check input { margin-top: 0.15rem; flex-shrink: 0; cursor: pointer; accent-color: var(--primary); }
.frm-check a { color: var(--primary); font-weight: 600; }

.frm-note {
  font-size: 0.78rem;
  color: var(--txt-light);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.contact-detail-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-ico {
  width: 44px;
  height: 44px;
  background: var(--a-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  transition: background var(--transition);
}

.contact-detail-item:hover .contact-detail-ico { background: var(--a-light); }

.contact-detail-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--txt-light);
  margin-bottom: 0.25rem;
}

.contact-detail-item p,
.contact-detail-item a {
  font-size: 0.93rem;
  color: var(--txt-muted);
  line-height: 1.5;
}

.contact-detail-item a:hover { color: var(--primary); }


.office-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.office-txt .sec-title { margin: 0.75rem 0 1rem; }
.office-txt p { color: var(--txt-muted); margin-bottom: 1rem; font-size: 0.97rem; line-height: 1.7; }

.office-img img {
  border-radius: var(--radius-xl);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}


.map-sec { padding: 3rem 0 5rem; }
.map-sec .sec-title { margin-bottom: 1.5rem; }

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}


.frm-news {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.frm-news .frm-input {
  flex: 1;
  min-width: 220px;
}


.ftr { background: var(--secondary); color: rgba(255,255,255,0.8); margin-top: auto; }

.ftr-news {
  background: color-mix(in oklch, var(--secondary), black 15%);
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ftr-news-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.ftr-news-txt { flex: 1; }
.ftr-news-txt h3 { color: white; font-size: 1.1rem; margin-bottom: 0.3rem; }
.ftr-news-txt p { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

.ftr-news .frm-input {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: white;
}

.ftr-news .frm-input::placeholder { color: rgba(255,255,255,0.45); }
.ftr-news .frm-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent), transparent 75%); }

.ftr-main { padding: 4rem 0 2rem; }

.ftr-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.ftr-logo { margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.9; }

.ftr-desc { font-size: 0.87rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

.ftr-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.2rem;
}

.ftr-links { display: flex; flex-direction: column; gap: 0.5rem; }

.ftr-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}

.ftr-links a:hover { color: white; padding-left: 4px; }

.ftr-contact-list { display: flex; flex-direction: column; gap: 0.9rem; }

.ftr-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
}

.ftr-contact-list i {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.ftr-contact-list span,
.ftr-contact-list a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.ftr-contact-list a:hover { color: white; }

.ftr-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}

.ftr-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}


.cookie-split {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  background: white;
  box-shadow: 0 -4px 24px rgba(26,61,82,0.18), 0 -1px 4px rgba(26,61,82,0.08);
  border-top: 2px solid var(--accent);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 280px;
}

.cookie-split.visible { transform: translateY(0); }

.cookie-left {
  flex: 1;
  padding: 1.8rem 2rem;
  border-right: 1px solid var(--border-light);
}

.cookie-left h4 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--txt);
}

.cookie-left p {
  font-size: 0.85rem;
  color: var(--txt-muted);
  line-height: 1.6;
}

.cookie-left a { color: var(--primary); font-weight: 600; }

.cookie-right {
  flex: 1;
  padding: 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-toggles { display: flex; flex-direction: column; gap: 0.6rem; }

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.87rem;
  color: var(--txt);
  font-weight: 500;
  cursor: pointer;
}

.cookie-toggle input { display: none; }

.tog-slider {
  position: relative;
  width: 40px;
  height: 22px;
  background: var(--border);
  border-radius: 11px;
  flex-shrink: 0;
  transition: background var(--transition);
  cursor: pointer;
}

.tog-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: var(--shadow-sm);
}

.cookie-toggle input:checked + .tog-slider { background: var(--accent); }
.cookie-toggle input:checked + .tog-slider::after { transform: translateX(18px); }
.tog-disabled { opacity: 0.5; cursor: not-allowed; }

.cookie-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }


.cookie-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.cookie-table th {
  background: var(--bg-tint);
  padding: 0.8rem 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--txt);
  border-bottom: 1px solid var(--border-light);
  white-space: nowrap;
}

.cookie-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--txt-muted);
  vertical-align: top;
}

.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: var(--bg-tint); }


.legal-hero {
  padding-top: calc(var(--hdr-h) + 3rem);
  padding-bottom: 2rem;
}

.legal-h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--txt-muted);
}

.legal-body { padding-top: 1rem; }

.legal-body p {
  color: var(--txt-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.legal-body h2 {
  font-size: 1.15rem;
  margin: 2rem 0 0.8rem;
  color: var(--txt);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-light);
}

.legal-body strong { color: var(--txt); }


.thanks-main {
  min-height: calc(100vh - var(--hdr-h) - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--hdr-h) + 2rem) 1.5rem 4rem;
}

.thanks-wrap {
  text-align: center;
  max-width: 520px;
}

.thanks-ico {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thanks-h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }

.thanks-txt {
  color: var(--txt-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.thanks-redirect {
  font-size: 0.9rem;
  color: var(--txt-light);
  margin-bottom: 2rem;
}

.thanks-btn { margin: 0 auto; }


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 1100px) {
  .masonry-grid { columns: 2; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .hero { flex-direction: column; min-height: auto; padding-top: var(--hdr-h); }
  .hero-content { flex: none; width: 100%; max-width: 100%; padding: 3rem 1.5rem 2rem; }
  .hero-img-wrap { flex: none; width: 100%; height: 55vw; min-height: 280px; }
  .hero-float-card { left: 1rem; bottom: 1.5rem; }

  .approach-prev-inner,
  .approach-detail-inner,
  .pg-hero-inner,
  .office-inner,
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  .approach-detail-img { order: -1; }

  .dual-cta-grid { grid-template-columns: 1fr; }
  .dual-cta-pri, .dual-cta-sec { padding: 2.5rem; }
  .dual-cta-sec { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }

  .paths-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  .blog-full-crd { grid-template-columns: 1fr; }
  .blog-full-img { height: 240px; }

  .lp-crd-header { padding: 2rem; }
  .lp-crd-body { padding: 2rem; }

  .hdr-nav, .hdr-cta { display: none; }
  .hdr-burger { display: flex; }
}

@media (max-width: 640px) {
  .sec { padding: 3.5rem 0; }

  .masonry-grid { columns: 1; }
  .steps-grid { grid-template-columns: 1fr; }
  .ftr-grid { grid-template-columns: 1fr; }
  .ftr-news-inner { flex-direction: column; align-items: stretch; gap: 1.5rem; }

  .hero-stats { gap: 1.2rem; }

  .frm-row { grid-template-columns: 1fr; }

  .cookie-split { flex-direction: column; max-height: 90vh; overflow-y: auto; }
  .cookie-left { border-right: none; border-bottom: 1px solid var(--border-light); padding: 1.2rem 1.5rem; }
  .cookie-right { padding: 1.2rem 1.5rem; }

  .ftr-bar-inner { flex-direction: column; text-align: center; }

  .lp-meta { gap: 0.8rem; }

  .hero-content { padding: 2.5rem 1.5rem 1.5rem; }

  .pg-hero { padding-top: calc(var(--hdr-h) + 2.5rem); padding-bottom: 2.5rem; }

  .dual-cta-pri, .dual-cta-sec { padding: 2rem 1.5rem; }

  .contact-form-wrap, .contact-info-wrap { padding: 0; }

  .frm-bottom { flex-direction: column; align-items: stretch; }
  .frm-bottom .btn-pri { width: 100%; }
}

@media (max-width: 400px) {
  .hero-h1 { font-size: 2rem; }
  .hero-float-card { min-width: 180px; padding: 0.9rem 1rem; }
}