/* NutriLabels.com — brand: navy #002E5F, green #97D700 */
:root {
  --navy: #002E5F;
  --navy-deep: #00224a;
  --navy-tint: #e8eef5;
  --green: #97D700;
  --green-dark: #7ab300;
  --green-tint: #f2fadb;
  --ink: #14202e;
  --muted: #4d6076;
  --line: #dde4ec;
  --bg-soft: #f5f7fa;
  --white: #fff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 46, 95, .10);
  --shadow-sm: 0 4px 14px rgba(0, 46, 95, .08);
  --font-head: "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.6; font-size: 16.5px; }
img, svg { max-width: 100%; height: auto; }
a { color: var(--navy); }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; }
h3 { font-size: 1.22rem; font-weight: 700; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 640px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green-dark);
  background: var(--green-tint); border-radius: 999px; padding: 5px 14px; margin-bottom: 14px;
}

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 28px; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.logo svg { height: 40px; width: auto; }
.logo-word { font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 1.02rem; line-height: 1.02; letter-spacing: .02em; }
.logo-word .tm { font-size: .5em; vertical-align: super; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); box-shadow: 0 2px 0 var(--green); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.7rem; color: var(--navy); cursor: pointer; }

/* Buttons */
.btn { display: inline-block; font-family: var(--font-head); font-weight: 800; text-decoration: none; border-radius: 10px; padding: 13px 26px; font-size: 1rem; cursor: pointer; border: 0; transition: transform .12s ease, box-shadow .12s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-green { background: var(--green); color: var(--navy-deep); }
.btn-green:hover { background: #a3e60a; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: 11px 24px; }
.btn-lg { padding: 16px 34px; font-size: 1.08rem; }
.btn-sm { padding: 9px 18px; font-size: .9rem; }

/* Hero */
.hero { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 70%); color: #fff; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; padding: 84px 0; }
.hero h1 { color: #fff; }
.hero h1 em { color: var(--green); font-style: normal; }
.hero .lead { color: #c3d2e4; margin: 20px 0 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: .9rem; color: #8fa6c0; }
.hero-label { background: #fff; border-radius: var(--radius); padding: 18px; box-shadow: 0 24px 60px rgba(0,0,0,.35); transform: rotate(2deg); max-width: 340px; justify-self: center; }
.hero-badges { display: flex; gap: 22px; flex-wrap: wrap; padding: 18px 0 26px; border-top: 1px solid rgba(255,255,255,.14); color: #c3d2e4; font-size: .92rem; font-weight: 600; }
.hero-badges span::before { content: "✓ "; color: var(--green); font-weight: 800; }

/* Sections */
section { padding: 78px 0; }
section.alt { background: var(--bg-soft); }
.sec-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.sec-head .lead { margin: 14px auto 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .97rem; }
.card .num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--green); color: var(--navy-deep); font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; margin-bottom: 16px; }
.icon-chip { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--navy-tint); margin-bottom: 16px; font-size: 1.3rem; }

/* Two-track panel */
.tracks { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.track { border-radius: var(--radius); padding: 34px; }
.track-self { background: var(--navy); color: #fff; }
.track-self h3, .track-self h2 { color: #fff; }
.track-self p { color: #c3d2e4; }
.track-serve { background: #fff; border: 2px solid var(--navy-tint); }
.track ul { list-style: none; margin: 18px 0 26px; }
.track li { padding: 7px 0 7px 30px; position: relative; font-size: .98rem; }
.track li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.track-serve li { color: var(--muted); }
.track .tag { font-family: var(--font-head); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--green); }
.track-serve .tag { color: var(--green-dark); }

/* Label gallery */
.label-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.label-tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; box-shadow: var(--shadow-sm); }
.label-tile .frame { background: var(--bg-soft); border-radius: 10px; padding: 18px; height: 300px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; overflow: hidden; }
.label-tile img { max-height: 100%; width: auto; max-width: 100%; }
.label-tile h3 { font-size: 1.02rem; }
.label-tile p { font-size: .87rem; color: var(--muted); }

/* Pricing */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); position: relative; }
.price-card.featured { border: 3px solid var(--green); box-shadow: var(--shadow); }
.badge-pop { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--green); color: var(--navy-deep); font-family: var(--font-head); font-weight: 800; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; padding: 5px 16px; border-radius: 999px; white-space: nowrap; }
.price-card .plan { font-family: var(--font-head); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: .82rem; color: var(--muted); }
.price-card .amount { font-family: var(--font-head); font-weight: 800; font-size: 2.7rem; color: var(--navy); margin: 8px 0 2px; }
.price-card .amount small { font-size: 1rem; color: var(--muted); font-weight: 600; }
.price-card .blurb { color: var(--muted); font-size: .93rem; margin-bottom: 18px; }
.price-card ul { list-style: none; margin: 0 0 26px; flex: 1; }
.price-card li { padding: 7px 0 7px 28px; position: relative; font-size: .95rem; color: var(--ink); border-bottom: 1px dashed var(--line); }
.price-card li:last-child { border-bottom: 0; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green-dark); font-weight: 800; }
.price-card li.minus::before { content: "＋"; color: var(--muted); }
.price-note { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 26px; }

/* Compare table */
.compare { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare th, .compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: .95rem; }
.compare thead th { background: var(--navy); color: #fff; font-family: var(--font-head); font-size: .9rem; }
.compare td:first-child { font-weight: 600; }
.compare .yes { color: var(--green-dark); font-weight: 800; }

/* FAQ */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 18px 22px; font-family: var(--font-head); font-weight: 700; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--green-dark); font-weight: 800; }
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--muted); font-size: .97rem; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label.f { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--navy); }
input, textarea, select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-family: var(--font-body); font-size: 1rem; background: #fff; }
input:focus, textarea:focus, select:focus { outline: 2px solid var(--green); border-color: var(--green); }

/* CTA band */
.cta-band { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 70%); color: #fff; text-align: center; padding: 70px 0; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #c3d2e4; margin-bottom: 28px; }

/* Footer */
.site-footer { background: var(--navy-deep); color: #a9bdd4; padding: 56px 0 30px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; }
.site-footer a { color: #a9bdd4; text-decoration: none; display: block; padding: 4px 0; }
.site-footer a:hover { color: var(--green); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo svg { height: 34px; width: auto; }
.footer-logo .logo-word { color: #fff; }
.fine { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; font-size: .8rem; color: #7590ad; }

/* Steps (how it works) */
.step-row { display: grid; grid-template-columns: 64px 1fr; gap: 22px; margin-bottom: 34px; align-items: start; }
.step-row .num { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 16px; background: var(--green); color: var(--navy-deep); font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; }
.step-row p { color: var(--muted); }

.notice { background: var(--green-tint); border: 1px solid #d3ec91; border-radius: 12px; padding: 16px 20px; font-size: .95rem; color: #3c5410; }

@media (max-width: 900px) {
  .hero-grid, .grid-2, .tracks, .form-grid { grid-template-columns: 1fr; }
  .grid-3, .label-gallery, .price-cards { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { padding: 56px 0; }
  .hero-label { transform: none; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 18px 24px; border-bottom: 1px solid var(--line); gap: 4px; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; width: 100%; }
  .nav-toggle { display: block; }
}
