/* AskLater Box — static landing site styles
 * Pure CSS, no framework, no tracking. Designed for Cloudflare Pages.
 */
:root {
  /* Warm, paper-like neutrals keep the page calm and reduce the cold
     "default AI template" look. Indigo stays as a single restrained accent. */
  --bg: #fdfcfa;
  --bg-soft: #f6f4ef;
  --bg-tint: #f1eee7;
  --bg-soft2: #ece9e2;
  --surface: #ffffff;
  --surface-strong: #faf8f4;
  --border: #e7e3da;
  --border-strong: #d6d1c5;
  --text: #20201d;
  --text-soft: #56524b;
  --text-mute: #807a70;
  --primary: #5a52d6;
  --primary-hover: #4a42c4;
  --primary-soft: #efeefb;
  --success: #128a4d;
  --success-soft: #def3e6;
  --warning-soft: #fbf3e7;
  --warning-border: #ecd6b3;
  --radius: 10px;
  --radius-lg: 18px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 68px;
  --shadow-sm: 0 1px 2px rgba(40, 33, 20, 0.05);
  --shadow-md: 0 10px 28px rgba(40, 33, 20, 0.07);
  --shadow-lg: 0 24px 60px rgba(40, 33, 20, 0.1);
  --maxw: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height, 68px) + 16px);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection {
  background: var(--primary-soft);
  color: var(--primary-hover);
}

h1,
h2,
h3 {
  margin: 0 0 0.55em;
  line-height: 1.12;
  letter-spacing: 0;
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--primary-hover);
  background: var(--primary-soft);
  border: 1px solid #c7d2fe;
  border-radius: 999px;
  padding: 6px 14px 6px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex: 0 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 252, 250, 0.82);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(40, 33, 20, 0.02), 0 6px 20px rgba(40, 33, 20, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease);
}

.brand:hover img {
  transform: rotate(-4deg) scale(1.06);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  min-width: 0;
}

.nav-links a:not(.btn) {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:not(.btn) {
  position: relative;
  transition: color 0.2s var(--ease);
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s var(--ease);
}

.nav-links a:not(.btn):hover {
  color: var(--text);
  text-decoration: none;
}

.nav-links a:not(.btn):hover::after {
  transform: scaleX(1);
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 18px;
  margin-left: 6px;
  border-left: 1px solid var(--border);
}

.lang-toggle {
  appearance: none;
  border: 1px solid var(--border-strong);
  background: #ffffff;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease), transform 0.15s var(--ease);
}

.lang-toggle:hover {
  background: var(--primary-soft);
  color: var(--primary-hover);
  border-color: #c7d2fe;
  transform: translateY(-1px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease), transform 0.1s var(--ease);
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  color: #ffffff !important;
  background: var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  color: var(--text);
  background: #ffffff;
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  background: var(--bg-soft);
}

.btn-sm {
  padding: 9px 14px;
  font-size: 14px;
}

/* "Coming soon" store buttons (placeholder store URL). Visibly muted,
   non-interactive, no href so it is not a dead link. */
.btn-soon,
.btn-soon-link {
  opacity: 0.65;
  cursor: default;
  pointer-events: none;
}
.btn-soon:hover,
.btn-soon-link:hover {
  text-decoration: none;
}
.price-edge-note {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-mute);
}

/* Sections */
section {
  padding: 74px 0;
}

.section-soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-size: 34px;
  max-width: 780px;
}

.section-lead {
  color: var(--text-mute);
  font-size: 17px;
  max-width: 68ch;
  margin-bottom: 30px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.section-head .section-lead {
  margin-bottom: 0;
}

/* Hero */
.hero {
  padding: 76px 0 66px;
  background:
    radial-gradient(circle at 85% -10%, rgba(90, 82, 214, 0.07), transparent 42%),
    linear-gradient(180deg, #fdfcfa 0%, #f6f4ef 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 54px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 66px);
  max-width: 780px;
}

.hero .tagline {
  color: var(--primary-hover);
  font-size: 16px;
  font-weight: 750;
  margin-bottom: 12px;
}

.hero .subtitle {
  color: var(--text-soft);
  font-size: 19px;
  max-width: 680px;
  margin-bottom: 26px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 14px;
  font-weight: 650;
  box-shadow: var(--shadow-sm);
}

.product-preview {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 16px;
  background: var(--surface-strong);
  border-bottom: 1px solid var(--border);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.preview-body {
  display: grid;
  grid-template-columns: 1fr 260px;
  min-height: 360px;
}

.article-mock {
  padding: 28px;
  border-right: 1px solid var(--border);
}

.article-line {
  height: 10px;
  border-radius: 999px;
  background: var(--bg-soft2);
  margin-bottom: 13px;
}

.article-line.w70 {
  width: 70%;
}

.article-line.w90 {
  width: 90%;
}

.article-line.w55 {
  width: 55%;
}

.highlight-box {
  margin: 26px 0;
  padding: 14px 16px;
  color: var(--text-soft);
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  font-size: 14px;
}

.save-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 12px;
  color: #ffffff;
  background: var(--primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

.sidebar-mock {
  padding: 18px;
  background: #ffffff;
}

.sidebar-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 800;
}

.status-mini {
  color: var(--success);
  background: var(--success-soft);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 800;
}

.note-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.note-type {
  color: var(--primary-hover);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}

.note-text {
  color: var(--text-soft);
  font-size: 13px;
  margin: 0;
}

.export-bar {
  margin-top: 16px;
  padding: 10px 12px;
  text-align: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

/* Pain */
.pain-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 38px;
  align-items: start;
}

.pain-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pain-steps li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 17px;
}

.pain-steps li:last-child {
  border-bottom: 0;
}

.icon-bullet {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: var(--primary-hover);
  background: var(--primary-soft);
  font-weight: 800;
}

.pain-punch {
  margin-top: 22px;
  color: var(--text);
  font-size: 19px;
  font-weight: 750;
}

/* GEO definition blocks (Best for / Not for) */
.geo-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 28px;
}
.geo-block {
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.geo-block h3 {
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-soft);
}
.geo-block p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}

/* Learn-more internal link cards */
.learn-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.learn-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
}
.learn-card:hover {
  text-decoration: none;
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.learn-card h3 {
  color: var(--primary-hover);
}

/* ============== Content / article pages ============== */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
}
.article-body h2 {
  margin: 36px 0 12px;
  font-size: 24px;
}
.article-body h3 {
  margin: 26px 0 10px;
  font-size: 19px;
}
.article-body p {
  margin: 0 0 16px;
}
.article-body ul,
.article-body ol {
  margin: 0 0 18px;
  padding-left: 1.4em;
}
.article-body li {
  margin-bottom: 8px;
}
.article-body .cta-inline {
  margin-top: 36px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--primary-soft);
  text-align: center;
}
.article-body .cta-inline .hero-ctas {
  justify-content: center;
  margin-top: 12px;
}
.content-back {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--text-mute);
}

/* Cards / grids */
.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.card h3 {
  font-size: 18px;
}

.card p {
  color: var(--text-mute);
  font-size: 15px;
  margin: 0;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 9px;
  color: var(--primary-hover);
  background: var(--primary-soft);
  font-weight: 850;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 9px;
  color: var(--primary-hover);
  background: var(--primary-soft);
  font-weight: 850;
}

/* Local-first */
.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 30px;
  align-items: start;
}

.trust-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-soft);
}

.check {
  color: var(--success);
  font-weight: 900;
}

.mini-note {
  color: var(--text-soft);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.mini-note strong {
  color: var(--text);
}

/* Use cases */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tag-list li {
  color: var(--primary-hover);
  background: var(--primary-soft);
  border: 1px solid #c7d2fe;
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 15px;
  font-weight: 750;
}

/* Pricing */
.pricing {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, #ffffff 0%, var(--primary-soft) 220%);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  color: #ffffff;
  background: var(--primary);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 850;
}

.price-name {
  font-size: 19px;
  font-weight: 850;
}

.price-amount {
  margin: 8px 0 4px;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 900;
}

.price-amount small {
  color: var(--text-mute);
  font-size: 15px;
  font-weight: 700;
}

.price-features {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
}

.price-features li {
  display: flex;
  gap: 9px;
  color: var(--text-soft);
  padding: 7px 0;
}

.pricing-note {
  max-width: 920px;
  margin: 20px auto 0;
  padding: 16px 18px;
  color: var(--text-soft);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* Delivery */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.delivery-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.delivery-card h3 {
  font-size: 17px;
}

.delivery-card p {
  color: var(--text-mute);
  margin: 0;
}

.notice {
  margin-top: 18px;
  padding: 15px 17px;
  color: #9a3412;
  background: var(--warning-soft);
  border: 1px solid var(--warning-border);
  border-radius: var(--radius);
}

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

.faq details {
  margin-bottom: 12px;
  padding: 4px 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  padding: 15px 0;
  font-weight: 800;
}

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

.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--text-mute);
  font-size: 20px;
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "\2212";
}

.faq details > p {
  color: var(--text-soft);
  margin: 0 0 15px;
  animation: faqFade 0.28s var(--ease);
}

@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-band {
  text-align: center;
}

.cta-band .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.cta-band .hero-ctas {
  justify-content: center;
  margin-top: 22px;
}

/* Footer */
.site-footer {
  padding: 40px 0;
  color: var(--text-mute);
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 420px;
}

.footer-brand strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--text-soft);
  font-weight: 650;
}

/* Legal / status pages */
.doc {
  max-width: 820px;
  padding: 62px 24px;
}

.doc h1 {
  font-size: 38px;
}

.doc h2 {
  margin-top: 34px;
  font-size: 22px;
}

.doc .updated {
  color: var(--text-mute);
  font-size: 14px;
  margin-bottom: 28px;
}

.doc p,
.doc li {
  color: var(--text-soft);
}

.doc ul {
  padding-left: 22px;
}

.doc li {
  margin-bottom: 9px;
}

.callout {
  margin: 20px 0;
  padding: 17px 18px;
  color: var(--text-soft);
  background: var(--primary-soft);
  border: 1px solid #c7d2fe;
  border-radius: var(--radius);
}

.callout strong {
  color: var(--text);
}

.status-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
}

.status-card {
  width: 100%;
  max-width: 620px;
  padding: 42px 34px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 50%;
  font-size: 32px;
}

.status-icon.ok {
  color: var(--success);
  background: var(--success-soft);
}

.status-icon.neutral {
  color: var(--text-mute);
  background: var(--bg-soft2);
}

.status-card ol {
  max-width: 470px;
  margin: 18px auto;
  padding-left: 22px;
  color: var(--text-soft);
  text-align: left;
}

.status-card li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-layout,
  .pain-grid,
  .trust-panel {
    grid-template-columns: 1fr;
  }

  .product-preview {
    max-width: 620px;
  }

  .preview-body {
    grid-template-columns: 1fr;
  }

  .article-mock {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .delivery-grid,
  .pricing {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }
}

@media (max-width: 720px) {
  .nav {
    min-height: 60px;
    gap: 12px;
  }

  .nav-links {
    flex: 1;
    min-width: 0;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links .nav-hide-sm {
    display: none;
  }

  .nav-ctas {
    margin-left: auto;
    padding-left: 12px;
    flex-shrink: 0;
    position: sticky;
    right: 0;
    background: rgba(253, 252, 250, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  section {
    padding: 56px 0;
  }

  .hero {
    padding: 54px 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero .subtitle {
    font-size: 17px;
  }

  .section-title {
    font-size: 28px;
  }

  .card,
  .price-card,
  .delivery-card,
  .mini-note {
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 18px;
  }

  .btn {
    width: 100%;
  }

  .nav .btn {
    width: auto;
  }

  .hero-ctas {
    width: 100%;
  }

  .footer-row,
  .footer-links {
    display: block;
  }

  .footer-links a {
    display: inline-block;
    margin: 10px 14px 0 0;
  }
}
