/* ClickThumb Landing — palette: #FFFFFF, #29242B, #D3023B */

:root {
  --bg: #FFFFFF;
  --text: #29242B;
  --text-muted: rgba(41, 36, 43, 0.75);
  --accent: #D3023B;
  --accent-hover: #b00230;
  --accent-light: rgba(211, 2, 59, 0.08);
  --max-width: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'DM Sans', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(41, 36, 43, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(211, 2, 59, 0.25);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(41, 36, 43, 0.2);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.95) 40%, rgba(211, 2, 59, 0.04) 100%);
  padding: 4rem 0 5rem;
}

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

.hero-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-sub {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  color: var(--text-muted);
}

.hero .btn-lg {
  margin-bottom: 3rem;
}

.hero-visual {
  margin-top: 2rem;
}

.hero-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background: linear-gradient(135deg, rgba(211, 2, 59, 0.06) 0%, rgba(211, 2, 59, 0.02) 100%);
  border-radius: var(--radius);
  border: 1px dashed rgba(211, 2, 59, 0.2);
}

.mockup-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  margin: 0 0 2rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* Pain points — cards grid */
.pain-points {
  background: var(--bg);
}

.cards-grid {
  display: grid;
  gap: 1.25rem;
}

.cards-grid-2x2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.card {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(41, 36, 43, 0.08);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: rgba(211, 2, 59, 0.2);
  box-shadow: 0 4px 20px rgba(41, 36, 43, 0.06);
}

.card-icon {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--accent);
  line-height: 0;
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.card-title {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
}

.card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Benefits */
.benefits {
  background: rgba(41, 36, 43, 0.02);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
}

.benefit-item {
  padding: 1.5rem;
  background: var(--bg);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  box-shadow: 0 2px 12px rgba(41, 36, 43, 0.04);
}

.benefit-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

.benefit-item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* How it works — horizontal cards */
.container--wide {
  max-width: var(--max-width);
}

.how-it-works .container {
  max-width: var(--max-width);
}

.steps--cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.step-card {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(41, 36, 43, 0.08);
  box-shadow: 0 2px 12px rgba(41, 36, 43, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.step-card:hover {
  border-color: rgba(211, 2, 59, 0.15);
  box-shadow: 0 4px 20px rgba(41, 36, 43, 0.06);
}

.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.25rem 0.5rem;
  margin-bottom: 1rem;
  background: rgba(211, 2, 59, 0.1);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
}

.step-card__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.step-card__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.demo-block {
  margin-bottom: 2.5rem;
}

.demo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: linear-gradient(135deg, rgba(211, 2, 59, 0.05) 0%, rgba(41, 36, 43, 0.04) 100%);
  border-radius: var(--radius);
  border: 1px dashed rgba(41, 36, 43, 0.15);
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* CTA section */
.cta-section {
  background: linear-gradient(180deg, rgba(211, 2, 59, 0.05) 0%, rgba(211, 2, 59, 0.02) 50%, #fff 100%);
  padding: 5rem 0;
}

.cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.cta-bullets {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  text-align: left;
  display: inline-block;
}

.cta-bullets li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 500;
}

.cta-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.cta-sub {
  margin: 0 0 1.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(41, 36, 43, 0.08);
}

.footer-inner {
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-copy a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-copy a:hover {
  color: var(--accent);
}

/* ========== Pricing page ========== */
.pricing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.pricing-hero {
  padding: 3rem 0 2rem;
  text-align: center;
}

.pricing-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.pricing-sub {
  margin: 0 0 2rem;
  font-size: 1.0625rem;
  color: var(--text-muted);
}

.pricing-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-toggle-label {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.pricing-toggle-label--left.is-active,
.pricing-toggle-label--right.is-active {
  color: var(--text);
  font-weight: 600;
}

.pricing-toggle-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0d7d4d;
  background: rgba(13, 125, 77, 0.12);
  border-radius: 999px;
}

.pricing-toggle {
  position: relative;
  width: 3.25rem;
  height: 1.75rem;
  flex-shrink: 0;
  background: rgba(41, 36, 43, 0.15);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s;
}

.pricing-toggle:hover {
  background: rgba(41, 36, 43, 0.25);
}

.pricing-toggle[aria-checked="true"] {
  background: var(--accent);
}

.pricing-toggle__knob {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.pricing-toggle[aria-checked="true"] .pricing-toggle__knob {
  transform: translateX(1.5rem);
}

.pricing-cards {
  flex: 1;
  padding: 0 0 4rem;
  background: rgba(41, 36, 43, 0.03);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

.pricing-card {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(41, 36, 43, 0.08);
  box-shadow: 0 2px 16px rgba(41, 36, 43, 0.06);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.pricing-card:hover {
  border-color: rgba(41, 36, 43, 0.12);
  box-shadow: 0 8px 24px rgba(41, 36, 43, 0.08);
}

.pricing-card--popular {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(211, 2, 59, 0.12);
}

.pricing-card--popular:hover {
  box-shadow: 0 8px 32px rgba(211, 2, 59, 0.15);
}

.pricing-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.35rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
}

.pricing-card__title {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-card__desc {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-card__price-block {
  margin-bottom: 1rem;
}

.pricing-card__price-block--hidden,
.pricing-card__price-block.is-hidden {
  display: none !important;
}

.pricing-card__price-block.is-visible {
  display: block;
}

.pricing-card__amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.pricing-card__period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card__billed {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.pricing-card__save {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0d7d4d;
  background: rgba(13, 125, 77, 0.12);
  border-radius: var(--radius-sm);
}

.pricing-card__cta {
  width: 100%;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.25rem;
}

.pricing-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--text);
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.pricing-feature-icon {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-feature-icon--check {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230d7d4d' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5'/%3E%3C/svg%3E");
}

.pricing-feature-icon--no {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23D3023B' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath stroke-linecap='round' d='M15 9l-6 6M9 9l6 6'/%3E%3C/svg%3E");
}

.pricing-feature-icon--avatar {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2329242B' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15.75 6a3.75 3.75 0 11-7.5 0 3.75 3.75 0 017.5 0zM4.501 20.118a7.5 7.5 0 0114.998 0A17.933 17.933 0 0112 21.75c-2.676 0-5.216-.584-7.499-1.632z'/%3E%3C/svg%3E");
}

.pricing-feature-icon--search {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2329242B' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 21l-5.197-5.197m0 0A7.5 7.5 0 105.196 5.196a7.5 7.5 0 0010.607 10.607z'/%3E%3C/svg%3E");
}

.pricing-feature-icon--wand {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2329242B' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9.813 15.904L9 18.75l-.813-2.846a4.5 4.5 0 00-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 003.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 003.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 00-3.09 3.09z'/%3E%3C/svg%3E");
}

.pricing-feature-icon--turtle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2329242B' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 6v6h4.5m4.5 0a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
}

.pricing-feature-icon--lightning {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23D3023B' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3.75 13.5l10.5-11.25L12 10.5h8.25L9.75 21.75 12 13.5H3.75z'/%3E%3C/svg%3E");
}

.pricing-feature-icon--rocket {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23D3023B' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15.59 14.37a6 6 0 01-5.84 2.31c-.6.21-1.22.37-1.84.49l1.62-1.62a.75.75 0 011.06 0l.53.53a.75.75 0 010 1.06z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 2v.75M12 21v-.75M2.25 12h.75M21 12h-.75M4.5 19.5l1.41-1.41M19.5 4.5l-1.41 1.41'/%3E%3C/svg%3E");
}

.pricing-feature-icon--face {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2329242B' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15.182 15.182a4.5 4.5 0 01-6.364 0M21 12a9 9 0 11-18 0 9 9 0 0118 0zM9.75 9.75c0 .414-.168.75-.375.75S9 10.164 9 9.75 9.168 9 9.75 9s.75.336.75.75zm-.75 4.5h1.5m-1.5 0a2.25 2.25 0 004.5 0m-4.5 0V15'/%3E%3C/svg%3E");
}

.pricing-feature-icon--chart {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23D3023B' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3 13.125C3 12.504 3.504 12 4.125 12h2.25c.621 0 1.125.504 1.125 1.125v6.75C7.5 20.496 6.996 21 6.375 21h-2.25A1.125 1.125 0 013 19.875v-6.75zM9.75 8.625c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125v11.25c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 01-1.125-1.125V8.625zM16.5 4.125c0-.621.504-1.125 1.125-1.125h2.25C20.496 3 21 3.504 21 4.125v15.75c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 01-1.125-1.125V4.125z'/%3E%3C/svg%3E");
}

.pricing-feature-icon--tools {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2329242B' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M11.42 15.17L17.25 21A2.652 2.652 0 0021 17.25l-5.877-5.877M11.42 15.17l2.496-3.03c.317-.384.74-.626 1.208-.766M11.42 15.17l-4.655 5.653a2.548 2.548 0 11-3.586-3.586l6.837-5.63m5.108-.233c.55-.164 1.163-.188 1.743-.14a4.5 4.5 0 004.486-6.336l-3.276 3.277a3.004 3.004 0 01-2.25-2.25l3.276-3.276a4.5 4.5 0 00-6.336 4.486c.091 1.076-.071 2.264-.904 2.95l-.102.085m-1.745 1.437L5.909 7.5H4.5L2.25 3.75l1.5-1.5L7.5 4.5v1.409l4.26 4.26m-1.745 1.437l1.745-1.437m6.615 8.206L15.75 15.75M4.867 19.125h.008v.008h-.008v-.008z'/%3E%3C/svg%3E");
}

.pricing-disclaimer {
  text-align: center;
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Cookie banner: hidden by default, JS adds .cookie-banner--visible when no consent */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 1.5rem;
  background: var(--text);
  color: #fff;
  box-shadow: 0 -4px 24px rgba(41, 36, 43, 0.15);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text {
  margin: 0;
  font-size: 0.9375rem;
  flex: 1;
  min-width: 200px;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.cookie-banner .btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.cookie-banner .btn-primary {
  background: #fff;
  color: var(--text);
}

.cookie-banner .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .cards-grid-2x2 {
    grid-template-columns: 1fr;
  }

  .steps--cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 1200px) {
  .steps--cards {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 600px) {
  .steps--cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .section {
    padding: 3rem 0;
  }
}
