/* =========================================================
   DeliveryLinker — Shared Stylesheet v2
   Palette: purple + green (from logo)
   ========================================================= */

:root {
  --purple-900: #3d1556;
  --purple-700: #6b1f8c;
  --purple-500: #8e2dbd;
  --purple-300: #c084db;
  --purple-050: #f6ecfa;

  --green-700: #3a8c2e;
  --green-500: #5cc04a;
  --green-300: #9fdc92;
  --green-050: #eef9eb;

  --ink: #1a0f24;
  --body: #4a3f55;
  --muted: #8a7f94;
  --rule: #e6dfec;
  --paper: #fbf8fc;
  --white: #ffffff;

  --shadow-sm: 0 1px 2px rgba(61, 21, 86, 0.06), 0 1px 3px rgba(61, 21, 86, 0.04);
  --shadow-md: 0 4px 12px rgba(61, 21, 86, 0.08), 0 2px 4px rgba(61, 21, 86, 0.04);
  --shadow-lg: 0 20px 40px rgba(61, 21, 86, 0.12), 0 8px 16px rgba(61, 21, 86, 0.06);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --max-w: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--body);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: 'Sora', 'Inter', sans-serif;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 0.5rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--purple-700); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--purple-500); }

img { max-width: 100%; height: auto; display: block; }

/* =========================================================
   BRAND STYLING — deliveryLINKER wordmark
   Use: <span class="brand"><span class="brand-d">delivery</span><span class="brand-l">LINKER</span></span>
   ========================================================= */
.brand {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-d { color: var(--purple-700); }
.brand-l { color: var(--green-700); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 252, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
}

.nav-brand img {
  height: 38px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--body);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--purple-700);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--ink);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--purple-700);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--purple-500);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--white);
  color: var(--purple-700);
  border-color: var(--purple-300);
}

.btn-secondary:hover {
  border-color: var(--purple-700);
  color: var(--purple-700);
}

.btn-green {
  background: var(--green-500);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-700);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: 1.05rem 2rem;
  font-size: 1.05rem;
}

/* =========================================================
   Sections
   ========================================================= */
section {
  padding: 5rem 0;
}

.section-tight { padding: 3.5rem 0; }

.eyebrow {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-700);
  margin-bottom: 1rem;
}

.eyebrow-green { color: var(--green-700); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-head p {
  font-size: 1.1rem;
  color: var(--muted);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(142, 45, 189, 0.10), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(92, 192, 74, 0.10), transparent 45%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(142, 45, 189, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.hero h1 .accent-purple { color: var(--purple-700); }
.hero h1 .accent-green { color: var(--green-700); }

.hero-lede {
  font-size: 1.2rem;
  color: var(--body);
  max-width: 640px;
  margin: 0 auto 2rem;
}

.hero-cta-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.deadline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-050);
  color: var(--green-700);
  border: 1px solid var(--green-300);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.deadline-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* =========================================================
   OBJECTION / ANSWER cards (the new home page hero pattern)
   ========================================================= */
.objection-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}

.objection-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.objection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.objection-side {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.objection-side.question {
  background: linear-gradient(135deg, #fff5f7 0%, #ffeaea 100%);
}

.objection-side.answer {
  background: var(--green-050);
  border-left: 1px solid var(--rule);
}

.objection-side .role {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.objection-side.question .role {
  color: #b03030;
}

.objection-side.question .role::before {
  content: "?";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #b03030;
  color: var(--white);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
}

.objection-side.answer .role {
  color: var(--green-700);
}

.objection-side.answer .role::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--green-500);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
}

.objection-question-text {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  font-style: italic;
}

.objection-answer-text {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
}

.objection-answer-text strong {
  font-weight: 700;
}

@media (max-width: 720px) {
  .objection-card {
    grid-template-columns: 1fr;
  }
  .objection-side.answer {
    border-left: none;
    border-top: 1px solid var(--rule);
  }
}

/* =========================================================
   Problem / Solution Stories (existing pattern)
   ========================================================= */
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.story-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.story-problem {
  background: linear-gradient(135deg, #fff5f7 0%, #ffeaea 100%);
  padding: 1.75rem;
  border-bottom: 1px solid var(--rule);
  flex: 1;
}

.story-problem .label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b03030;
  margin-bottom: 0.75rem;
}

.story-problem .label::before {
  content: "✕";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #b03030;
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
}

.story-problem h3 {
  color: var(--ink);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.story-problem p {
  color: var(--body);
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
}

.story-problem p:last-child { margin-bottom: 0; }

.story-solution {
  background: var(--green-050);
  padding: 1.75rem;
}

.story-solution .label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 0.75rem;
}

.story-solution .label::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--green-500);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

.story-solution p {
  color: var(--ink);
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
}

.story-solution p:last-child { margin-bottom: 0; }

/* =========================================================
   Features Grid
   ========================================================= */
.features-section {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  background: var(--paper);
  border: 1px solid var(--rule);
  transition: all 0.2s ease;
}

.feature:hover {
  border-color: var(--purple-300);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--purple-050);
  color: var(--purple-700);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.feature-icon.green {
  background: var(--green-050);
  color: var(--green-700);
}

.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.95rem;
  color: var(--body);
}

/* =========================================================
   How It Works — Steps
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  color: var(--white);
  border-radius: 50%;
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-md);
}

.step:nth-child(2) .step-num {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--body);
  font-size: 0.95rem;
}

/* =========================================================
   Pricing
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--purple-700);
  transform: scale(1.02);
}

.price-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple-700);
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.price-tagline {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-amount small {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.price-period {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.price-features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.price-features li::before {
  content: "✓";
  color: var(--green-700);
  font-weight: 700;
  flex-shrink: 0;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: var(--purple-300);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--purple-700);
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--body);
}

/* =========================================================
   CTA Banner
   ========================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 50%, var(--green-700) 100%);
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.10), transparent 35%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--purple-700);
}

.cta-banner .btn-primary:hover {
  background: var(--paper);
  color: var(--purple-900);
}

/* =========================================================
   Forms
   ========================================================= */
.form-wrap {
  max-width: 580px;
  margin: 0 auto;
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-md);
}

.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(142, 45, 189, 0.15);
  background: var(--white);
}

.field textarea { resize: vertical; min-height: 120px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand .brand-d { color: #d09beb; }
.footer-brand .brand-l { color: var(--green-300); }

.footer-brand img {
  height: 36px;
  width: auto;
  filter: brightness(1.1);
}

.footer-tag {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--green-300);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================================
   Page Headers (interior pages)
   ========================================================= */
.page-header {
  padding: 4rem 0 3rem;
  text-align: center;
  background:
    radial-gradient(circle at 30% 50%, rgba(142, 45, 189, 0.08), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(92, 192, 74, 0.08), transparent 50%);
}

.page-header p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 640px;
  margin: 1rem auto 0;
}

/* =========================================================
   Tagline strip (under hero, etc)
   ========================================================= */
.tag-strip {
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1.25rem 0;
}

.tag-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
}

.tag-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.tag-strip span::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--green-500);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.72rem;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .price-card.featured { transform: none; }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 1rem;
    gap: 0;
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    padding: 0.6rem 0.5rem;
    border-bottom: 1px solid var(--rule);
  }
  .nav-links li:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
  }
  section { padding: 3.5rem 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .form-wrap { padding: 1.5rem; }
}
