:root {
  --ink: #111512;
  --muted: #667068;
  --paper: #f4f4ef;
  --paper-2: #ebece5;
  --line: rgba(17, 21, 18, 0.13);
  --lime: #c8ff4a;
  --lime-dark: #94c91d;
  --night: #0a0d0b;
  --card: #151a16;
  --white: #fafcf7;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 30px 80px rgba(15, 21, 16, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Inter, system-ui, sans-serif;
  letter-spacing: -0.035em;
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
.skip-link { position: fixed; top: -60px; left: 20px; z-index: 100; padding: 12px 18px; background: var(--lime); color: #000; border-radius: 10px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 78px);
  color: var(--white);
  background: rgba(10, 13, 11, 0.82);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; letter-spacing: .05em; }
.brand small { font-size: 10px; font-weight: 600; letter-spacing: -.02em; color: #9ca29d; border-left: 1px solid rgba(255,255,255,.24); padding-left: 10px; }
.brand-mark { position: relative; width: 28px; height: 28px; display: inline-flex; gap: 3px; align-items: center; justify-content: center; border-radius: 8px; background: var(--lime); overflow: hidden; }
.brand-mark i { display: block; width: 4px; height: 16px; background: var(--night); border-radius: 9px; transform: rotate(-38deg); }
.brand-mark i:last-child { height: 10px; margin-top: 7px; }
.site-header nav { display: flex; gap: 34px; font-size: 14px; color: #b6bdb6; }
.site-header nav a:hover { color: var(--lime); }
.header-cta { display: inline-flex; align-items: center; gap: 12px; padding: 11px 15px; border: 1px solid rgba(255,255,255,.19); border-radius: 99px; font-size: 13px; }
.header-cta span { display: grid; place-items: center; width: 25px; height: 25px; color: var(--night); background: var(--lime); border-radius: 50%; }

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(440px, .83fr);
  align-items: center;
  gap: clamp(40px, 7vw, 115px);
  padding: clamp(78px, 9vw, 138px) clamp(24px, 7vw, 118px) 82px;
  color: var(--white);
  background: var(--night);
  overflow: hidden;
}
.hero-grid { position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to right, #000, transparent 80%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.orb-one { width: 460px; height: 460px; right: 5%; top: 14%; background: rgba(177, 255, 0, .10); }
.orb-two { width: 360px; height: 360px; left: -13%; bottom: -18%; background: rgba(87, 120, 242, .09); }
.hero-copy, .hero-visual { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 25px; display: flex; align-items: center; gap: 10px; color: #99a19a; font-size: 12px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { width: 27px; height: 2px; background: var(--lime); }
.eyebrow.light { color: rgba(255,255,255,.63); }
.hero h1 { margin: 0; font-size: clamp(44px, 4.95vw, 78px); line-height: 1.08; letter-spacing: -.075em; font-weight: 620; }
.hero h1 em { position: relative; color: var(--lime); font-style: normal; }
.hero h1 em::after { content: ""; position: absolute; left: 2px; right: 0; bottom: -5px; height: 7px; background: url("data:image/svg+xml,%3Csvg width='400' height='8' viewBox='0 0 400 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6C73 1 164 2 231 3C299 4 355 2 399 1' stroke='%23c8ff4a' stroke-width='2' fill='none'/%3E%3C/svg%3E") center/100% 100% no-repeat; opacity: .65; }
.hero-lead { margin: 34px 0 0; color: #aab1aa; font-size: clamp(16px, 1.4vw, 20px); line-height: 1.8; letter-spacing: -.035em; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 40px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 28px; min-height: 56px; padding: 0 24px; border: 0; border-radius: 13px; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #10130f; background: var(--lime); box-shadow: 0 14px 34px rgba(200,255,74,.13); }
.btn-primary:hover { background: #d4ff70; box-shadow: 0 17px 44px rgba(200,255,74,.2); }
.text-link { color: #c5cac5; font-size: 14px; padding: 10px 0; border-bottom: 1px solid #4a504b; }
.trust-list { display: flex; gap: clamp(20px, 3vw, 44px); list-style: none; padding: 29px 0 0; margin: 46px 0 0; border-top: 1px solid rgba(255,255,255,.10); color: #a0a7a0; font-size: 12px; }
.trust-list li { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.trust-list span { color: var(--lime); font-family: ui-monospace, monospace; font-size: 10px; }

.hero-visual { padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); box-shadow: 0 50px 110px rgba(0,0,0,.4); backdrop-filter: blur(8px); }
.visual-topline { display: flex; justify-content: space-between; align-items: start; padding: 2px 2px 20px; }
.visual-topline div { display: grid; gap: 5px; }
.visual-topline small { color: #697169; font-size: 9px; letter-spacing: .13em; }
.visual-topline strong { font-size: 17px; }
.live-dot { position: relative; padding: 7px 10px 7px 23px; border: 1px solid rgba(200,255,74,.22); border-radius: 99px; color: #dfff96; background: rgba(200,255,74,.06); font-size: 10px; }
.live-dot::before { content: ""; position: absolute; width: 6px; height: 6px; left: 10px; top: 10px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }
.journey { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.journey-step { position: relative; min-height: 114px; padding: 18px 14px; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; background: rgba(2,4,3,.45); }
.journey-step::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--lime); opacity: .75; border-radius: 0 0 16px 16px; }
.step-icon { display: grid; place-items: center; width: 28px; height: 28px; margin-bottom: 14px; color: var(--lime); border: 1px solid rgba(200,255,74,.2); border-radius: 8px; background: rgba(200,255,74,.05); }
.journey-step div { display: grid; gap: 4px; }
.journey-step small { color: #6c746d; font-size: 8px; letter-spacing: .12em; }
.journey-step strong { font-size: 12px; }
.journey-step b { position: absolute; right: 13px; top: 18px; color: #4b524c; font-size: 12px; }
.journey-step:last-child b { color: var(--lime); }
.signal-card { margin-top: 9px; padding: 18px; border-radius: 18px; color: var(--ink); background: #eef0e9; }
.signal-head { display: flex; align-items: center; justify-content: space-between; }
.signal-head span { font-size: 12px; font-weight: 800; }
.signal-head small { color: #838b84; font-size: 9px; }
.signal-chart { height: 105px; margin: 16px -2px 8px; border-bottom: 1px solid rgba(17,21,18,.08); background: repeating-linear-gradient(to bottom, transparent 0, transparent 34px, rgba(17,21,18,.055) 35px); }
.signal-chart svg { width: 100%; height: 100%; overflow: visible; }
.chart-area { fill: url(#chart-area-fill); }
.chart-line { fill: none; stroke: #769f18; stroke-width: 2.4; vector-effect: non-scaling-stroke; }
.signal-chart circle { fill: var(--lime); stroke: #111; stroke-width: 2; }
.signal-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.signal-stats div { display: grid; gap: 5px; padding: 10px; border-radius: 10px; background: rgba(255,255,255,.6); }
.signal-stats small { color: #858d86; font-size: 8px; }
.signal-stats strong { font-size: 9px; white-space: nowrap; }
.visual-note { margin: 16px 4px 0; color: #808881; font-size: 10px; text-align: center; }

.explore-section { padding: 130px clamp(22px, 6vw, 98px); background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; column-gap: 60px; max-width: 1280px; margin: 0 auto 60px; }
.section-heading .eyebrow { grid-column: 1 / -1; color: #747e76; margin-bottom: 22px; }
.section-heading h2 { margin: 0; font-size: clamp(42px, 5vw, 72px); line-height: 1.09; letter-spacing: -.072em; font-weight: 650; }
.section-heading > p { max-width: 470px; margin: 0 0 7px; color: var(--muted); line-height: 1.85; }
.goal-selector { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1280px; margin: 0 auto; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.goal-tab { display: grid; grid-template-columns: auto 1fr; gap: 3px 14px; padding: 26px 24px; text-align: left; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent; cursor: pointer; transition: background .2s ease, color .2s ease; }
.goal-tab span { grid-row: 1 / 3; padding-top: 3px; color: #919991; font-family: ui-monospace, monospace; font-size: 11px; }
.goal-tab strong { font-size: 17px; }
.goal-tab small { color: #7c847d; font-size: 11px; }
.goal-tab:hover, .goal-tab.active { background: var(--ink); color: var(--white); }
.goal-tab.active span { color: var(--lime); }
.goal-tab.active small { color: #919a93; }
.solution-shell { display: grid; grid-template-columns: 1.06fr .94fr; max-width: 1280px; margin: 0 auto 84px; border: 1px solid var(--line); border-top: 0; box-shadow: var(--shadow); }
.solution-main { padding: clamp(32px, 5vw, 68px); background: #f9f9f5; }
.solution-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.solution-kicker span { display: grid; place-items: center; width: 40px; height: 40px; color: var(--ink); background: var(--lime); border-radius: 50%; font: 800 12px ui-monospace, monospace; }
.solution-kicker small, .mini-label { color: #838c84; font: 750 10px ui-monospace, monospace; letter-spacing: .14em; }
.solution-main h3 { max-width: 620px; margin: 0; font-size: clamp(29px, 3vw, 44px); line-height: 1.25; letter-spacing: -.055em; }
.solution-main > p { max-width: 610px; margin: 20px 0 32px; color: var(--muted); line-height: 1.78; }
.deliverables { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.deliverable { display: flex; align-items: center; gap: 11px; padding: 15px; border: 1px solid var(--line); border-radius: 11px; background: #fff; font-size: 13px; }
.deliverable span { display: grid; place-items: center; flex: 0 0 auto; width: 23px; height: 23px; color: #54700f; border-radius: 6px; background: rgba(200,255,74,.38); font-size: 11px; }
.solution-foot { display: flex; justify-content: space-between; gap: 30px; margin-top: 34px; padding-top: 23px; border-top: 1px solid var(--line); }
.solution-foot span { color: #858d85; font-size: 11px; }
.solution-foot strong { font-size: 12px; text-align: right; }
.case-card { display: flex; flex-direction: column; padding: clamp(30px, 4vw, 54px); color: var(--white); background: var(--card); }
.case-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 44px; }
.case-tag { color: var(--lime); font: 700 10px ui-monospace, monospace; letter-spacing: .1em; }
.privacy-chip { padding: 7px 9px; color: #a8b0a9; border: 1px solid rgba(255,255,255,.12); border-radius: 99px; font-size: 9px; }
.case-category { margin: 0 0 12px; color: #8e978f; font-size: 12px; }
.case-card h3 { margin: 0 0 32px; font-size: clamp(24px, 2.2vw, 34px); line-height: 1.4; letter-spacing: -.045em; }
.case-flow { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 14px; }
.case-flow > div { padding: 17px; border: 1px solid rgba(255,255,255,.09); border-radius: 12px; background: rgba(255,255,255,.025); }
.case-flow > span { align-self: center; color: #5d665e; }
.case-flow small { color: #737c74; font: 700 8px ui-monospace, monospace; letter-spacing: .13em; }
.case-flow p { margin: 10px 0 0; color: #c0c6c1; font-size: 11px; line-height: 1.7; }
.case-result { display: flex; align-items: center; gap: 14px; margin-top: 18px; padding: 18px; border-radius: 13px; color: var(--ink); background: var(--lime); }
.case-result > span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(17,21,18,.25); border-radius: 50%; font-size: 18px; }
.case-result div { display: grid; gap: 4px; }
.case-result small { font-size: 9px; opacity: .7; }
.case-result strong { font-size: 13px; }
.disclosure { margin: auto 0 0; padding-top: 23px; color: #6f786f; font-size: 9px; line-height: 1.6; }

.service-compare { max-width: 1280px; margin: 0 auto 110px; }
.compare-title-row { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 26px; }
.compare-title-row h3 { margin: 9px 0 0; font-size: clamp(27px, 3vw, 42px); letter-spacing: -.055em; }
.compare-controls { display: flex; gap: 6px; padding: 5px; border: 1px solid var(--line); border-radius: 99px; background: rgba(255,255,255,.6); }
.compare-btn { padding: 10px 15px; border: 0; border-radius: 99px; color: #717a72; background: transparent; font-size: 12px; cursor: pointer; }
.compare-btn.active { color: var(--white); background: var(--ink); }
.compare-grid { display: grid; grid-template-columns: .9fr 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.compare-grid > div { min-height: 195px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.42); }
.compare-grid .compare-summary { background: var(--lime); }
.compare-grid small { color: #778078; font-size: 10px; }
.compare-grid .compare-summary small { color: rgba(17,21,18,.6); }
.compare-grid h4 { margin: 12px 0 15px; font-size: 20px; }
.compare-grid p { margin: 0; color: #687169; font-size: 13px; line-height: 1.7; }
.compare-grid .compare-summary p { color: rgba(17,21,18,.72); }
.compare-grid ul { list-style: none; padding: 0; margin: 0; }
.compare-grid li { position: relative; padding: 8px 0 8px 19px; color: #515a52; font-size: 12px; border-bottom: 1px solid rgba(17,21,18,.07); }
.compare-grid li::before { content: "✓"; position: absolute; left: 0; color: #6f9517; font-weight: 800; }

.food-specialties { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(42px, 7vw, 100px); max-width: 1280px; margin: 0 auto 110px; padding: clamp(35px, 5vw, 62px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: #f9f9f5; }
.specialties-heading h3 { margin: 12px 0 20px; font-size: clamp(29px, 3.2vw, 45px); line-height: 1.28; letter-spacing: -.06em; }
.specialties-heading > p:last-child { max-width: 480px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.specialty-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.specialty-grid article { min-height: 178px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.specialty-grid span { color: #759d17; font: 750 9px ui-monospace, monospace; letter-spacing: .12em; }
.specialty-grid h4 { margin: 14px 0 10px; font-size: 17px; letter-spacing: -.04em; }
.specialty-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.process-block { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px, 8vw, 120px); max-width: 1280px; margin: 0 auto 110px; padding: clamp(38px, 5vw, 65px); color: var(--white); background: var(--ink); border-radius: var(--radius-lg); }
.process-intro h3 { margin: 14px 0 22px; font-size: clamp(29px, 3.1vw, 44px); line-height: 1.3; letter-spacing: -.06em; }
.process-intro > p:last-child { color: #969e97; font-size: 13px; line-height: 1.75; }
.process-list { list-style: none; padding: 0; margin: 0; }
.process-list li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.process-list li:first-child { padding-top: 0; }
.process-list > li > span { display: grid; place-items: center; width: 39px; height: 39px; color: var(--lime); border: 1px solid rgba(200,255,74,.25); border-radius: 50%; font: 700 10px ui-monospace, monospace; }
.process-list strong { font-size: 16px; }
.process-list p { margin: 7px 0 0; color: #8f9890; font-size: 12px; line-height: 1.65; }

.faq-block { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(40px, 8vw, 120px); max-width: 1280px; margin: 0 auto; }
.faq-heading h3 { margin: 12px 0 0; font-size: clamp(34px, 4vw, 55px); line-height: 1.2; letter-spacing: -.065em; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 23px 4px; list-style: none; font-size: 16px; font-weight: 750; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: #8d968e; font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 690px; margin: -5px 0 24px; padding-right: 45px; color: var(--muted); font-size: 13px; line-height: 1.8; }

.consult-section { position: relative; display: grid; grid-template-columns: 1fr minmax(420px, .72fr); gap: clamp(50px, 9vw, 140px); align-items: center; padding: clamp(78px, 10vw, 145px) clamp(24px, 8vw, 135px); color: var(--white); background: #1514ac; overflow: hidden; }
.consult-section::before { content: "NONSTOP"; position: absolute; left: -2vw; bottom: -4vw; color: rgba(255,255,255,.035); font-size: 18vw; line-height: 1; font-weight: 900; letter-spacing: -.08em; }
.consult-glow { position: absolute; width: 500px; height: 500px; right: -150px; top: -200px; border-radius: 50%; background: rgba(200,255,74,.22); filter: blur(130px); }
.consult-copy, .consult-form { position: relative; z-index: 1; }
.consult-copy h2 { max-width: 780px; margin: 0; font-size: clamp(42px, 5vw, 72px); line-height: 1.15; letter-spacing: -.075em; }
.consult-copy > p { max-width: 580px; margin: 25px 0 36px; color: rgba(255,255,255,.65); line-height: 1.8; }
.consult-proof { display: flex; flex-wrap: wrap; gap: 13px 24px; color: rgba(255,255,255,.76); font-size: 12px; }
.consult-proof div { display: flex; align-items: center; gap: 7px; }
.consult-proof span { display: grid; place-items: center; width: 19px; height: 19px; color: #17200a; background: var(--lime); border-radius: 50%; font-size: 10px; font-weight: 900; }
.consult-route { max-width: 590px; list-style: none; padding: 28px 0 0; margin: 32px 0 0; border-top: 1px solid rgba(255,255,255,.16); }
.consult-route li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; padding: 10px 0; }
.consult-route > li > span { display: grid; place-items: center; width: 27px; height: 27px; color: var(--lime); border: 1px solid rgba(200,255,74,.3); border-radius: 50%; font: 700 9px ui-monospace, monospace; }
.consult-route div { display: grid; gap: 4px; }
.consult-route strong { font-size: 13px; }
.consult-route small { color: rgba(255,255,255,.52); font-size: 10px; }
.consult-form { padding: clamp(25px, 4vw, 40px); color: var(--ink); background: #f6f7f0; border-radius: 24px; box-shadow: 0 38px 90px rgba(0,0,0,.22); }
.form-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 17px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.form-title > div { display: grid; gap: 4px; }
.form-title small { color: #818a82; font: 700 8px ui-monospace, monospace; letter-spacing: .13em; }
.form-title strong { font-size: 18px; }
.form-title > span { padding: 6px 9px; color: #5b700f; border-radius: 99px; background: rgba(200,255,74,.42); font-size: 9px; font-weight: 800; }
.form-row { display: grid; grid-template-columns: 72px 1fr; align-items: center; margin-bottom: 9px; padding: 5px 0 12px; border-bottom: 1px solid var(--line); }
.form-row label, fieldset legend { color: #777f78; font-size: 11px; font-weight: 700; }
.form-row input, .form-row select { width: 100%; padding: 11px 8px; border: 0; outline: 0; color: var(--ink); background: transparent; font-weight: 750; }
.form-row input::placeholder { color: #adb3ae; font-weight: 500; }
fieldset { padding: 20px 0; margin: 0; border: 0; }
.radio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 11px; }
.radio-grid label { cursor: pointer; }
.radio-grid input { position: absolute; opacity: 0; pointer-events: none; }
.radio-grid span { display: block; padding: 12px; text-align: center; color: #717971; border: 1px solid var(--line); border-radius: 9px; font-size: 12px; background: #fff; }
.radio-grid input:checked + span { color: var(--ink); border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); font-weight: 800; }
.form-message { display: grid; gap: 9px; margin: 0 0 15px; }
.form-message label { color: #777f78; font-size: 11px; font-weight: 700; }
.form-message label span { margin-left: 5px; color: #a6ada7; font-size: 9px; font-weight: 500; }
.form-message textarea { width: 100%; resize: vertical; min-height: 78px; padding: 12px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: #fff; outline: 0; line-height: 1.55; }
.privacy-check { display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; margin: 4px 0 15px; cursor: pointer; }
.privacy-check input { margin: 2px 0 0; accent-color: var(--ink); }
.privacy-check span { color: #8a928b; font-size: 9px; line-height: 1.55; }
.privacy-check b { color: #59615a; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.btn-dark { width: 100%; margin-top: 3px; color: var(--white); background: var(--ink); }
.btn-dark:disabled { cursor: wait; opacity: .64; transform: none; }
.form-note { margin: 10px 0 0; color: #969e97; font-size: 9px; text-align: center; }
.consult-result { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; margin-top: 18px; padding: 16px; border: 1px solid rgba(58,135,35,.2); border-radius: 12px; background: rgba(84,168,48,.07); }
.consult-result[hidden] { display: none; }
.consult-result.error { border-color: rgba(190,45,45,.2); background: rgba(190,45,45,.06); }
.result-icon { display: grid; place-items: center; width: 35px; height: 35px; color: #fff; border-radius: 50%; background: #5d952d; font-weight: 900; }
.consult-result.error .result-icon { background: #b83939; }
.consult-result strong { font-size: 12px; }
.consult-result p { margin: 5px 0 4px; font-size: 11px; line-height: 1.6; }
.consult-result small { color: #7e867f; font-size: 9px; }

footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; padding: 42px clamp(24px, 6vw, 98px); color: #888f89; background: var(--night); font-size: 11px; }
.footer-brand { color: var(--white); }
footer > p { margin: 0; text-align: center; }
footer > div:last-child { display: flex; gap: 18px; }
footer a { color: var(--lime); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .14s; }

@media (max-width: 1050px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 95px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(670px, 100%); }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p { margin-top: 24px; }
  .solution-shell { grid-template-columns: 1fr; }
  .case-card { min-height: 560px; }
  .food-specialties, .process-block, .faq-block { grid-template-columns: 1fr; }
  .consult-section { grid-template-columns: 1fr; }
  .consult-form { max-width: 620px; }
}

@media (max-width: 700px) {
  .site-header { height: 68px; padding: 0 18px; }
  .brand { font-size: 13px; }
  .brand small { display: none; }
  .brand-mark { width: 25px; height: 25px; }
  .header-cta { padding: 9px 10px 9px 13px; font-size: 11px; }
  .header-cta span { width: 22px; height: 22px; }
  .hero { min-height: calc(100svh - 68px); display: block; padding: 70px 20px 54px; }
  .hero h1 { font-size: clamp(38px, 10.5vw, 48px); }
  .hero-lead { margin-top: 27px; font-size: 15px; }
  .hero-lead br { display: none; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; margin-top: 29px; }
  .hero-actions .text-link { align-self: flex-start; }
  .trust-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 29px; padding-top: 22px; }
  .hero-visual { margin-top: 52px; padding: 14px; border-radius: 21px; }
  .visual-topline { padding: 4px 3px 15px; }
  .journey { gap: 4px; }
  .journey-step { min-height: 101px; padding: 13px 8px; }
  .journey-step strong { font-size: 10px; }
  .journey-step b { display: none; }
  .signal-card { padding: 13px; }
  .signal-stats { overflow-x: auto; }
  .signal-stats div { min-width: 100px; }
  .explore-section { padding: 85px 18px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2 { font-size: 42px; }
  .goal-selector { grid-template-columns: 1fr; border-top: 0; }
  .goal-tab { min-height: 75px; padding: 18px; border-top: 1px solid var(--line); }
  .solution-main, .case-card { padding: 30px 22px; }
  .solution-main h3 { font-size: 28px; }
  .deliverables { grid-template-columns: 1fr; }
  .solution-foot { align-items: flex-start; flex-direction: column; gap: 8px; }
  .solution-foot strong { text-align: left; line-height: 1.5; }
  .case-card { min-height: 610px; }
  .case-head { margin-bottom: 32px; }
  .case-card h3 { font-size: 25px; }
  .case-flow { grid-template-columns: 1fr; }
  .case-flow > span { transform: rotate(90deg); justify-self: center; }
  .compare-title-row { align-items: stretch; flex-direction: column; }
  .compare-controls { display: grid; grid-template-columns: repeat(3, 1fr); border-radius: 15px; }
  .compare-btn { padding: 11px 7px; border-radius: 10px; font-size: 10px; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-grid > div { min-height: auto; padding: 22px; }
  .food-specialties { padding: 30px 22px; border-radius: 22px; }
  .specialty-grid { grid-template-columns: 1fr; }
  .specialty-grid article { min-height: auto; padding: 21px; }
  .process-block { margin-left: -1px; margin-right: -1px; padding: 35px 22px; border-radius: 22px; }
  .faq-list summary { font-size: 14px; }
  .consult-section { padding: 82px 18px; }
  .consult-copy h2 { font-size: 41px; }
  .consult-form { padding: 24px 18px; border-radius: 19px; }
  footer { grid-template-columns: 1fr; justify-items: start; padding: 38px 20px; }
  footer > p { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
