/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container { padding: 0 32px; }
}

/* Section pad */
.section { padding: 56px 0; }
@media (min-width: 768px) { .section { padding: 88px 0; } }

/* Eyebrow & section titles */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.1;
  color: var(--text);
  max-width: 22ch;
  font-weight: 500;
}
.section-title em { color: var(--accent); }

.section-lede {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--text-2);
  max-width: 56ch;
  margin-top: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-family: var(--ff-ui);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.1;
  border: 1px solid transparent;
  transition: transform .18s ease, background-color .2s ease, box-shadow .2s ease, color .2s ease;
  text-align: center;
  cursor: pointer;
  min-height: 44px;
  min-width: 0;
}
.btn:hover { transform: translateY(-1px); }
@media (prefers-reduced-motion: reduce) { .btn { transition: none; } .btn:hover { transform: none; } }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--surface-deep); }

.btn-wa {
  background: var(--wa-green);
  color: #fff;
}
.btn-wa:hover { background: #1ebe5a; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: color-mix(in srgb, var(--text) 22%, transparent);
}
.btn-ghost:hover { background: color-mix(in srgb, var(--text) 6%, transparent); }

.btn-light {
  background: #fff;
  color: var(--accent);
  border-color: rgba(255,255,255,0.7);
}
.btn-light:hover { background: var(--surface); }

.btn-svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Brand mark */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 14%, var(--bg));
  border-radius: 50%;
  color: var(--accent);
  flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--ff-display);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text);
}
.brand-name em { color: var(--accent); font-style: italic; }
.brand-tag {
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  margin-top: 4px;
}
@media (max-width: 480px) { .brand-tag { display: none; } }

/* Cards radius-asym (LAY-6 card) */
.c-asym {
  background: color-mix(in srgb, var(--text) 4%, var(--bg));
  border-radius: 22px 4px 22px 4px;
  padding: 26px 24px;
  border: 1px solid color-mix(in srgb, var(--text) 7%, transparent);
}
.c-asym--alt {
  background: color-mix(in srgb, var(--accent) 8%, var(--bg));
  border-radius: 4px 22px 4px 22px;
}
.c-asym--dark {
  background: var(--surface-deep);
  border-radius: 22px 4px 22px 4px;
  color: #fff;
  border-color: rgba(255,255,255,0.08);
}
.c-asym--dark .c-asym__title,
.c-asym--dark .c-asym__text,
.c-asym--dark p,
.c-asym--dark li {
  color: #fff;
}
.c-asym--dark .c-asym__text,
.c-asym--dark p {
  color: rgba(255,255,255,0.78);
}

/* Form */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.field label {
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 14px;
  transition: border-color .18s, box-shadow .18s;
  min-height: 46px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

/* Pills / chips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, var(--bg));
  color: var(--accent);
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
}
.chip svg { width: 14px; height: 14px; }
