:root {
  --ink: #0f172a;
  --muted: #475569;
  --paper: #f8fafc;
  --white: #ffffff;
  --line: #e2e8f0;
  --green: #059669;
  --green-hover: #047857;
  --green-dark: #064e3b;
  --mint: #d1fae5;
  --gold: #f59e0b;
  --coral: #ef4444;
  --blue: #3b82f6;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(248, 250, 252, 0.85);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 178px;
}

.brand img {
  display: block;
  width: min(260px, 45vw);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  padding: 10px 12px;
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--green-dark);
  color: var(--white) !important;
  border-radius: 6px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100svh - 82px);
  padding: clamp(56px, 9vw, 112px) clamp(20px, 6vw, 80px);
  background: radial-gradient(circle at 80% -20%, var(--mint) 0%, transparent 50%),
              radial-gradient(circle at -20% 120%, rgba(5, 150, 105, 0.1) 0%, transparent 40%),
              var(--paper);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.55rem, 7vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.6vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 10px 0 10px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 2px solid var(--green);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.button.primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.button.primary:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.button.secondary:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}















.section,
.band {
  padding: clamp(54px, 8vw, 92px) clamp(20px, 6vw, 80px);
}

.band {
  background: var(--green-dark);
  color: var(--white);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.intro p,
.bundle p {
  margin: 0;
  color: rgba(255, 253, 250, 0.8);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  min-height: 268px;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green);
}

.product-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 32px;
  color: var(--green);
  background: var(--mint);
  border-radius: 6px;
  font-weight: 900;
}

.product-card p {
  margin: 0 0 24px;
  color: var(--muted);
  flex-grow: 1;
}

.product-card a {
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.product-card a:hover {
  color: var(--green-hover);
  gap: 10px;
}

.custom-request {
  background: var(--white);
}

.custom-wrapper {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 64px);
  min-width: 0;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.custom-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.custom-info p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.contact-email {
  display: inline-block;
  margin-top: 20px;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.contact-email:hover {
  color: var(--green);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.form-group label {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.optional-label {
  color: var(--muted);
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.14);
}

.form-group textarea {
  min-height: 132px;
  resize: vertical;
}

.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-slot {
  min-height: 65px;
  max-width: 100%;
  overflow: hidden;
}

.turnstile-placeholder {
  margin: 0;
  padding: 12px 14px;
  color: var(--muted);
  background: var(--white);
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  font-size: 0.92rem;
}

.contact-form .button {
  align-self: flex-start;
  min-width: 164px;
  border: 0;
  font-size: 1rem;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-feedback {
  display: none;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-feedback:not(:empty) {
  display: block;
}

.form-feedback.is-success {
  color: #166534;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
}

.form-feedback.is-error {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fecaca;
}

.formats {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.formats .eyebrow {
  color: var(--mint);
}

.format-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.format-list span {
  padding: 10px 13px;
  background: rgba(255, 253, 250, 0.12);
  border: 1px solid rgba(255, 253, 250, 0.22);
  border-radius: 6px;
  color: var(--white);
  font-weight: 800;
}

.bundle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--mint);
}

.bundle div {
  max-width: 780px;
}

.bundle p {
  margin-top: 16px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px clamp(20px, 6vw, 80px);
  color: rgba(255, 253, 250, 0.78);
  background: var(--ink);
}

.site-footer img {
  width: 54px;
  height: auto;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--white);
  font-weight: 900;
}

.site-footer a {
  margin-left: auto;
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero,
  .intro,
  .formats,
  .custom-wrapper {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bundle {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: min(240px, 80vw);
  }

  .nav a {
    padding: 9px 10px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .custom-wrapper {
    padding: 28px 18px;
  }

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

  .contact-form .button {
    align-self: stretch;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer a {
    margin-left: 0;
  }
}
.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-hover);
  border: 4px solid var(--white);
  transition: var(--transition);
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.hero-image:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.08);
}
