/* ReasonEngine — structured reasoning theme. Slate, green, graphite, copper. */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
  --slate: #334155;
  --slate-deep: #1E293B;
  --green: #059669;
  --green-light: #10B981;
  --white: #FFFFFF;
  --graphite: #1F2937;
  --copper: #B45309;
  --copper-light: #D97706;
  --muted: #64748B;
  --line: #E2E8F0;
  --cream: #F8FAFC;
  --logic-grid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M0 16h32M16 0v32' stroke='%23334155' stroke-width='0.5' opacity='0.12'/%3E%3C/svg%3E");
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Work Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--muted);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Libre Baskerville', Georgia, serif; line-height: 1.2; color: var(--graphite); font-weight: 700; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.75rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.65rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { color: var(--muted); }
a { color: var(--green); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--copper); }
img { max-width: 100%; display: block; }
.shell { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.block { padding: clamp(56px, 8vw, 108px) 0; position: relative; }
.block.tight { padding-top: 18px; }
.kicker { text-transform: uppercase; letter-spacing: .2em; font-size: .72rem; color: var(--copper); font-weight: 700; font-family: 'Work Sans', sans-serif; }
.lead { font-size: clamp(1.02rem, 1.55vw, 1.18rem); color: var(--muted); max-width: 640px; }
.mid { text-align: center; }
.mid .lead { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 6px; font-weight: 600;
  font-family: 'Work Sans', sans-serif; cursor: pointer; border: 2px solid transparent;
  font-size: .96rem; transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn--fill { background: var(--green); color: var(--white); }
.btn--fill:hover { background: var(--slate); color: var(--white); transform: translateY(-2px); }
.btn--line { background: var(--white); color: var(--slate); border-color: var(--slate); }
.btn--line:hover { background: var(--slate); color: var(--white); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.45); }
.btn--ghost:hover { background: var(--copper); color: var(--white); border-color: var(--copper); }

.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  background: transparent; border-bottom: 1px solid transparent;
}
.topbar.solid { background: var(--white); box-shadow: 0 4px 20px rgba(51,65,85,.08); border-bottom-color: var(--line); }
.bar-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: 'Libre Baskerville', serif; font-size: 1.38rem; color: var(--white); letter-spacing: -.01em; }
.topbar.solid .brand { color: var(--graphite); }
.brand .glyph {
  width: 36px; height: 36px; border-radius: 6px;
  background: linear-gradient(135deg, var(--green), var(--slate));
  position: relative; overflow: hidden; flex: 0 0 36px;
}
.brand .glyph::before {
  content: ""; position: absolute; inset: 6px;
  border: 2px solid rgba(255,255,255,.5); border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
}
.brand .glyph::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 8px; height: 8px;
  background: var(--copper); border-radius: 50%; transform: translate(-50%, -50%);
}
.brand b { color: var(--green-light); font-weight: 700; }
.topbar.solid .brand b { color: var(--green); }
.menu { display: flex; align-items: center; gap: 30px; list-style: none; }
.menu a { color: rgba(255,255,255,.92); font-weight: 600; font-size: .94rem; }
.menu a:hover { color: var(--copper-light); }
.topbar.solid .menu a { color: var(--slate); }
.topbar.solid .menu a:hover { color: var(--green); }
.bar-cta { display: flex; align-items: center; gap: 16px; }
.topbar:not(.solid) .bar-cta .btn--fill { background: var(--copper); border-color: var(--copper); }
.topbar:not(.solid) .bar-cta .btn--fill:hover { background: var(--white); color: var(--slate); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 26px; height: 2px; background: var(--white); transition: .3s; }
.topbar.solid .menu-toggle span { background: var(--graphite); }

.hero {
  background: linear-gradient(160deg, var(--graphite) 0%, var(--slate) 70%, #475569 100%);
  color: var(--white); padding: 168px 0 120px; position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--logic-grid); background-size: 32px 32px; opacity: .5;
}
.hero .shell { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
.hero .kicker { color: var(--copper-light); }
.hero h1 { color: var(--white); margin: 16px 0; font-weight: 400; }
.hero h1 .accent { color: var(--green-light); font-style: italic; }
.hero p.lead { color: #CBD5E1; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: 8px; box-shadow: 0 28px 64px rgba(0,0,0,.32); border: 1px solid rgba(5,150,105,.35); }
.hero-badge {
  position: absolute; bottom: -18px; left: -14px; background: var(--white);
  border-radius: 8px; padding: 14px 18px; display: flex; gap: 12px; align-items: center;
  box-shadow: 0 16px 36px rgba(31,41,55,.22); border-left: 4px solid var(--green);
}
.hero-badge .pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(5,150,105,.25); animation: beat 1.8s infinite; }
.hero-badge small { color: var(--muted); display: block; font-size: .72rem; }
.hero-badge strong { color: var(--graphite); font-family: 'Work Sans', sans-serif; font-weight: 700; font-size: .92rem; }
@keyframes beat { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.logic-sep {
  display: block; width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--green), var(--copper), var(--green), transparent);
  margin: 0; border: none; opacity: .6;
}

.pillars { background: var(--white); padding: clamp(48px, 7vw, 88px) 0; border-bottom: 1px solid var(--line); }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar {
  text-align: center; padding: 36px 28px; border-radius: 8px;
  background: var(--cream); border: 1px solid var(--line);
  position: relative; transition: transform .35s ease, box-shadow .35s ease;
}
.pillar:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(51,65,85,.1); }
.pillar-num {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--slate), var(--green));
  color: var(--white); display: grid; place-items: center;
  font-family: 'Libre Baskerville', serif; font-size: 1.1rem; font-weight: 700;
}
.pillar h3 { margin-bottom: 10px; color: var(--slate); }
.pillar p { font-size: .94rem; }

.calm-image {
  position: relative; min-height: 380px; overflow: hidden;
  background: var(--slate-deep);
}
.calm-image img {
  width: 100%; height: 100%; min-height: 380px; object-fit: cover; opacity: .88;
}
.calm-image .caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(31,41,55,.85));
  padding: 60px 0 40px;
}
.calm-image .caption .shell { color: var(--white); }
.calm-image .caption h2 { color: var(--white); max-width: 560px; margin-bottom: 10px; font-weight: 400; }
.calm-image .caption p { color: #CBD5E1; max-width: 520px; }

.head { max-width: 680px; margin-bottom: 44px; }
.head.mid { margin-left: auto; margin-right: auto; }
.head h2 { margin: 12px 0 14px; }

.grid { display: grid; gap: 24px; }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g2 { grid-template-columns: repeat(2, 1fr); }

.sol-list { display: grid; gap: 16px; }
.sol-item {
  display: flex; gap: 20px; align-items: flex-start; padding: 24px 26px;
  background: var(--white); border: 1px solid var(--line); border-radius: 8px;
  border-left: 4px solid var(--green); transition: transform .3s ease, box-shadow .3s ease;
}
.sol-item:hover { transform: translateX(6px); box-shadow: 0 14px 32px rgba(51,65,85,.08); }
.sol-item .sol-ic {
  flex: 0 0 44px; height: 44px; border-radius: 6px;
  background: var(--slate); color: var(--white);
  display: grid; place-items: center; font-weight: 700; font-size: .82rem;
}
.sol-item h3 { margin-bottom: 6px; font-size: 1.12rem; }
.sol-item p { font-size: .93rem; margin: 0; }
.sol-item a { font-weight: 600; font-size: .88rem; margin-top: 8px; display: inline-block; }

.svc-rows { display: grid; gap: 22px; }
.svc-row { display: grid; gap: 22px; }
.svc-row.r3 { grid-template-columns: repeat(3, 1fr); }
.svc-row.r2 { grid-template-columns: repeat(2, 1fr); max-width: 780px; margin: 0 auto; }
.svc-row.r1 { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 8px;
  padding: 30px 26px; transition: transform .35s ease, box-shadow .35s ease;
  border-top: 3px solid var(--copper);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(51,65,85,.1); }
.svc-card .tag { font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; color: var(--green); font-weight: 700; }
.svc-card h3 { margin: 10px 0 10px; }
.svc-card p { font-size: .93rem; }
.svc-card a { font-weight: 600; font-size: .9rem; margin-top: 12px; display: inline-block; }

.testimonial-large {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: clamp(36px, 5vw, 56px); position: relative; text-align: center;
  max-width: 880px; margin: 0 auto;
}
.testimonial-large::before {
  content: "\201C"; position: absolute; top: 16px; left: 32px;
  font-family: 'Libre Baskerville', serif; font-size: 5rem; color: var(--green); opacity: .2; line-height: 1;
}
.testimonial-large blockquote {
  font-family: 'Libre Baskerville', serif; font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: var(--graphite); font-style: italic; line-height: 1.55; margin-bottom: 28px;
}
.testimonial-large .who { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-large .av {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--slate), var(--green));
  display: grid; place-items: center; font-weight: 700; color: var(--white); font-size: .9rem;
}
.testimonial-large .who b { color: var(--graphite); display: block; font-style: normal; font-family: 'Work Sans', sans-serif; }
.testimonial-large .who small { color: var(--muted); font-size: .88rem; }

.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 24px; font-family: 'Libre Baskerville', serif; font-size: 1.05rem;
  color: var(--graphite); font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::after {
  content: "+"; font-family: 'Work Sans', sans-serif; font-size: 1.4rem; color: var(--green); font-weight: 400;
  transition: transform .3s ease;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 280px; padding: 0 24px 20px; }
.faq-a p { font-size: .94rem; }

.cta-green {
  background: linear-gradient(135deg, var(--green), #047857);
  border-radius: 10px; padding: clamp(40px, 6vw, 68px); text-align: center;
  position: relative; overflow: hidden;
}
.cta-green::before {
  content: ""; position: absolute; inset: 0; background-image: var(--logic-grid); background-size: 32px 32px; opacity: .25;
}
.cta-green .shell { position: relative; z-index: 1; }
.cta-green h2 { color: var(--white); font-weight: 400; }
.cta-green p { color: rgba(255,255,255,.88); max-width: 560px; margin: 14px auto 24px; }
.cta-green .btn--fill { background: var(--white); color: var(--green); }
.cta-green .btn--fill:hover { background: var(--copper); color: var(--white); }
.cta-green .inline-email { margin-top: 18px; font-size: .95rem; color: rgba(255,255,255,.85); }
.cta-green .inline-email a { color: var(--white); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.cta-green .inline-email a:hover { color: var(--copper-light); }

.page-head {
  background: linear-gradient(160deg, var(--graphite), var(--slate));
  color: var(--white); padding: 150px 0 70px; position: relative; overflow: hidden;
}
.page-head::before { content: ""; position: absolute; inset: 0; background-image: var(--logic-grid); background-size: 32px 32px; opacity: .35; }
.page-head .shell { position: relative; z-index: 1; }
.page-head h1 { color: var(--white); margin: 10px 0; font-weight: 400; }
.page-head .kicker { color: var(--copper-light); }
.page-head .lead { color: #CBD5E1; }
.crumb { color: rgba(255,255,255,.7); font-size: .86rem; margin-bottom: 12px; }
.crumb a { color: rgba(255,255,255,.7); }
.crumb a:hover { color: var(--copper-light); }

.reason-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 8px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.reason-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(51,65,85,.12); }
.reason-card img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.reason-body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; border-bottom: 3px solid var(--green); }
.reason-cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--copper); font-weight: 700; }
.reason-ref { font-size: .76rem; color: var(--muted); }
.reason-meta { list-style: none; font-size: .87rem; color: var(--slate); display: grid; gap: 4px; }
.reason-meta li b { color: var(--graphite); font-weight: 700; }
.reason-price { font-size: 1.15rem; color: var(--green); font-weight: 700; margin-top: auto; font-family: 'Work Sans', sans-serif; }
.reason-price span { color: var(--muted); font-size: .8rem; font-weight: 600; }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.filter-btn {
  background: var(--white); border: 1px solid var(--line); color: var(--slate);
  padding: 9px 18px; border-radius: 999px; cursor: pointer;
  font-weight: 600; font-size: .86rem; transition: .25s;
}
.filter-btn:hover { border-color: var(--green); color: var(--green); }
.filter-btn.active { background: var(--slate); color: var(--white); border-color: var(--slate); }

.logic-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 8px;
  padding: 28px 26px 34px; position: relative; overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.logic-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--copper));
}
.logic-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(51,65,85,.1); }
.logic-card .step-label { color: var(--copper); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.logic-card h3 { margin: 10px 0 8px; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: clamp(26px, 4vw, 42px); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; margin-bottom: 7px; color: var(--graphite); font-size: .92rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 6px; border: 1px solid var(--line);
  background: var(--cream); color: var(--graphite); font-family: inherit; font-size: .96rem;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(5,150,105,.12);
}
.field textarea { min-height: 130px; resize: vertical; }
.field .err { color: #dc2626; font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #dc2626; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.success-msg { display: none; text-align: center; padding: 30px; }
.success-msg.show { display: block; animation: fadein .6s ease; }
.success-msg .ic {
  width: 64px; height: 64px; border-radius: 8px;
  background: linear-gradient(135deg, var(--slate), var(--green));
  display: grid; place-items: center; margin: 0 auto 18px;
  font-size: 1.8rem; color: var(--white);
}
.success-msg h2 { color: var(--graphite); font-family: 'Libre Baskerville', serif; font-weight: 400; }
@keyframes fadein { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.info-card { background: var(--cream); border-radius: 8px; border-left: 4px solid var(--green); padding: 20px; }
.info-card small { color: var(--copper); text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; font-weight: 700; }
.info-card p { color: var(--graphite); margin-top: 6px; font-weight: 600; }

.prose { max-width: 840px; }
.prose h2 { margin: 36px 0 14px; font-size: clamp(1.35rem, 2.5vw, 1.8rem); font-weight: 700; }
.prose h3 { margin: 26px 0 10px; color: var(--slate); font-family: 'Work Sans', sans-serif; font-weight: 700; font-size: 1.05rem; }
.prose p, .prose li { color: var(--muted); margin-bottom: 12px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 14px; }
.prose strong { color: var(--graphite); }
.prose a { color: var(--green); }
.prose a:hover { color: var(--copper); }

.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split img { border-radius: 8px; box-shadow: 0 18px 48px rgba(51,65,85,.12); border: 1px solid var(--line); }
.split.rev .split-txt { order: 2; }
.cert-list { list-style: none; display: grid; gap: 12px; }
.cert-list li {
  padding: 14px 18px; background: var(--white); border-radius: 8px;
  display: flex; gap: 12px; align-items: center; color: var(--graphite); font-weight: 600;
  border: 1px solid var(--line);
}
.cert-list li::before { content: "\25B8"; color: var(--green); font-weight: 800; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  text-align: center; padding: 26px 18px; border-radius: 8px;
  background: var(--white); border: 1px solid var(--line);
}
.stat b { font-family: 'Libre Baskerville', serif; font-size: clamp(1.85rem, 4vw, 2.5rem); color: var(--green); display: block; }
.stat span { color: var(--muted); font-size: .88rem; }

.svc-block {
  display: flex; gap: 20px; align-items: flex-start; padding: 26px;
  background: var(--white); border-radius: 8px; border: 1px solid var(--line); border-left: 4px solid var(--green);
  transition: transform .3s ease, box-shadow .3s ease;
}
.svc-block:hover { transform: translateX(6px); box-shadow: 0 14px 32px rgba(51,65,85,.08); }
.svc-block .svc-ic {
  flex: 0 0 52px; height: 52px; border-radius: 6px;
  background: linear-gradient(135deg, var(--slate), var(--green));
  color: var(--white); display: grid; place-items: center;
  font-weight: 700; font-size: .85rem;
}

footer.site { background: var(--graphite); color: #94A3B8; padding: 62px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 36px; }
.foot-grid h4 { color: var(--white); margin-bottom: 16px; font-size: 1rem; font-family: 'Work Sans', sans-serif; font-weight: 700; }
.foot-brand { display: flex; align-items: center; gap: 11px; font-family: 'Libre Baskerville', serif; font-size: 1.28rem; color: var(--white); }
.foot-brand b { color: var(--green-light); font-weight: 700; }
.foot-about p { color: #94A3B8; font-size: .92rem; margin-top: 14px; }
.foot-links { list-style: none; display: grid; gap: 9px; }
.foot-links a { color: #94A3B8; font-size: .92rem; }
.foot-links a:hover { color: var(--green-light); }
.foot-contact p { color: #94A3B8; font-size: .9rem; margin-bottom: 8px; }
.foot-contact b { color: var(--white); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: #64748B; font-size: .84rem;
}

.cookie-bar {
  position: fixed; left: 22px; right: 22px; bottom: 22px; max-width: 560px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 20px 22px; z-index: 200; display: none;
  box-shadow: 0 20px 48px rgba(51,65,85,.16); border-bottom: 4px solid var(--green);
}
.cookie-bar.show { display: block; animation: fadein .5s ease; }
.cookie-bar p { font-size: .88rem; color: var(--slate); }
.cookie-bar .row { display: flex; gap: 12px; margin-top: 14px; align-items: center; }
.cookie-bar .btn { padding: 10px 22px; font-size: .88rem; }
.cookie-bar a { color: var(--green); font-weight: 600; }
.cookie-bar a:hover { color: var(--copper); }

.rise, .reason-in { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s ease; }
html.js .rise { opacity: 0; transform: translateY(28px); }
html.js .reason-in { opacity: 0; transform: translateX(-30px); }
html.js .rise.visible, html.js .reason-in.visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .hero-grid, .split, .about-grid { grid-template-columns: 1fr; }
  .split.rev .split-txt { order: 0; }
  .pillar-grid, .g4 { grid-template-columns: repeat(2, 1fr); }
  .svc-row.r3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .menu {
    position: fixed; top: 76px; left: 0; right: 0; background: var(--white);
    flex-direction: column; padding: 24px; gap: 18px;
    border-bottom: 1px solid var(--line); transform: translateY(-150%);
    transition: transform .35s ease; box-shadow: 0 10px 28px rgba(51,65,85,.1);
  }
  .menu a { color: var(--slate); }
  .menu.open { transform: translateY(0); }
  .menu-toggle { display: flex; }
  .bar-cta .btn { display: none; }
  .g3, .g2, .info-grid, .form-row, .pillar-grid, .svc-row.r3, .svc-row.r2 { grid-template-columns: 1fr; }
  .svc-row.r2, .svc-row.r1 { max-width: none; }
}
@media (max-width: 520px) {
  .g4, .stats { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
}
