
:root {
  --green: #73a839;
  --green-dark: #4e7f24;
  --navy: #17324a;
  --ink: #203247;
  --muted: #647487;
  --cream: #f8f5ed;
  --panel: #ffffff;
  --gold: #d99a3d;
  --line: rgba(23,50,74,.13);
  --shadow: 0 18px 42px rgba(18, 45, 70, .12);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  color: var(--ink);
}
a { color: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  gap: 16px;
  align-items: center;
  text-decoration: none;
}
.brand svg { width: 76px; height: 76px; flex: 0 0 auto; }
.brand-line { line-height: .95; white-space: nowrap; }
.brand-grocery { color: var(--green); font-weight: 900; font-size: clamp(32px, 4vw, 58px); }
.brand-wholesale { color: var(--navy); font-weight: 900; font-size: clamp(32px, 4vw, 58px); }
.brand-com { color: var(--green); font-weight: 900; font-size: clamp(22px, 2.6vw, 36px); }
.tagline { display: block; color: #41576d; font-size: clamp(15px, 1.5vw, 21px); margin-top: 9px; letter-spacing: .01em; }
.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 16px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(18,45,70,.06);
}
.hero { padding: 54px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 32px;
  align-items: stretch;
}
.card {
  background: var(--panel);
  border: 1px solid rgba(23,50,74,.08);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.hero-copy { padding: 40px 38px 36px; }
.eyebrow {
  color: var(--green-dark);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow:after {
  content: "";
  width: 66px;
  height: 3px;
  border-radius: 99px;
  background: var(--green);
}
h1 {
  margin: 18px 0 10px;
  line-height: .96;
  font-size: clamp(42px, 6vw, 78px);
}
h1 .g { color: var(--green); }
h1 .w { color: var(--navy); }
h1 .c { color: var(--green); font-size: .56em; }
.subhead {
  color: var(--navy);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.12;
  font-weight: 900;
  margin: 0 0 18px;
}
.lead {
  color: #364b61;
  font-size: 20px;
  line-height: 1.68;
  margin: 0 0 26px;
}
.price-panel {
  border: 2px solid rgba(115,168,57,.95);
  border-radius: 24px;
  background: linear-gradient(180deg, #fbfff8 0%, #f2f9ed 100%);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.price-button {
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  border-radius: 16px;
  padding: 18px;
  min-width: 148px;
  text-align: center;
  font-weight: 900;
}
.price-center { text-align: center; }
.price-label {
  color: var(--navy);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
}
.price {
  color: var(--green);
  font-weight: 950;
  font-size: clamp(58px, 7vw, 88px);
  line-height: .95;
  margin-top: 2px;
}
.price-line {
  margin-top: 8px;
  color: #385169;
  font-size: 15px;
  font-weight: 800;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 17px;
  text-decoration: none;
  font-weight: 900;
  font-size: 19px;
  box-shadow: 0 10px 24px rgba(23,50,74,.12);
}
.btn-primary { background: var(--green); color: #fff; }
.btn-secondary { background: var(--navy); color: #fff; }
.contact {
  margin-top: 22px;
  display: flex;
  gap: 15px;
  align-items: center;
  border: 1px solid rgba(115,168,57,.2);
  background: #fbfdf8;
  border-radius: 18px;
  padding: 16px 18px;
}
.contact-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(115,168,57,.16);
  color: var(--green-dark);
  font-size: 27px;
  flex: 0 0 auto;
}
.contact small { display: block; color: var(--muted); margin-bottom: 4px; font-size: 15px; }
.contact a { color: var(--green-dark); text-decoration: none; font-size: clamp(22px, 3vw, 33px); font-weight: 950; word-break: break-word; }
.visual { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.visual img {
  width: 100%;
  display: block;
  border-radius: 24px;
  border: 1px solid rgba(23,50,74,.08);
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.mini {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
}
.mini h3 { margin: 0 0 8px; color: var(--navy); font-size: 18px; }
.mini p { margin: 0; color: var(--muted); line-height: 1.45; font-size: 14px; }
.bundle-section { padding: 4px 0 34px; }
.bundle {
  border-radius: 30px;
  background: linear-gradient(90deg, #10273b 0%, #17324a 56%, #10273b 100%);
  color: #fff;
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 26px;
  align-items: center;
}
.bundle h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}
.bundle p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.55;
}
.bundle-price {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  padding: 22px;
}
.bundle-price .label {
  color: #9fe05a;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
}
.bundle-price .big {
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 950;
  line-height: .95;
  margin: 6px 0 12px;
}
.domain-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.domain-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 15px;
  padding: 13px 15px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.domain-item strong { color: #fff; }
.domain-item span { color: rgba(255,255,255,.75); }
.feature-strip { padding: 0 0 24px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(18,45,70,.06);
}
.feature .icon { color: var(--green); font-size: 30px; margin-bottom: 10px; }
.feature h3 { margin: 0 0 8px; color: var(--navy); font-size: 20px; }
.feature p { margin: 0; color: var(--muted); line-height: 1.5; font-size: 15px; }
.inventory-cta {
  text-align:center;
  margin: 26px auto 56px;
  padding: 28px 20px;
  max-width: 900px;
  border-top: 1px solid rgba(23,50,74,.13);
}
.inventory-cta p { margin:0 0 12px; color:#20364c; font-size:1.05rem; }
.inventory-cta a { font-weight:900; color:var(--green-dark); text-decoration:none; font-size:1.06rem; }
footer {
  text-align: center;
  color: var(--muted);
  padding: 0 0 44px;
  font-size: 14px;
}
footer a { color: var(--green-dark); text-decoration: none; }
@media (max-width: 980px) {
  .header-inner, .hero-grid, .bundle { grid-template-columns: 1fr; display: grid; }
  .header-actions { justify-content: flex-start; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 700px) {
  .container { width: min(100% - 24px, 1180px); }
  .header-inner { min-height: auto; padding: 14px 0; }
  .brand { align-items: flex-start; gap: 10px; }
  .brand svg { width: 56px; height: 56px; }
  .tagline { font-size: 13px; white-space: normal; }
  .hero-copy { padding: 28px 22px; }
  .price-panel { grid-template-columns: 1fr; }
  .price-button, .btn { width: 100%; }
  .mini-grid, .feature-grid { grid-template-columns: 1fr; }
  .bundle { padding: 24px 20px; }
  .domain-item { display: block; }
  .domain-item span { display: block; margin-top: 5px; }
}
