/* EuroBoost Landing Page – main stylesheet */

:root {
  --red: #ef4444;
  --green: #10b981;
  --green-dark: #059669;
  --dark: #111827;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --gray-bg: #f9fafb;
  --gray-border: #e5e7eb;
  --white: #ffffff;
  --green-bg: #ecfdf5;
  --font: 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input {
  font-family: inherit;
}

/* Nav */
.nav {
  position: fixed;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  padding: 0 24px;
  background: var(--green);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
}

.nav-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.02em;
}

/* Header CTA: ringing bell + falling money */
@keyframes bellRing {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-14deg); }
  20%, 40% { transform: rotate(14deg); }
  50%, 70% { transform: rotate(-8deg); }
  60%, 80% { transform: rotate(8deg); }
  90% { transform: rotate(-3deg); }
}

@keyframes coinFall {
  0% {
    transform: translateY(-24px) rotate(0deg);
    opacity: 0.95;
  }
  100% {
    transform: translateY(320px) rotate(220deg);
    opacity: 0;
  }
}

.nav-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.2s ease;
}

.nav-cta-bell-wrap,
.nav-cta > span:last-of-type {
  position: relative;
  z-index: 1;
}

.nav-cta-bell-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: bellRing 2s ease-in-out infinite;
  transform-origin: top center;
}

.nav-cta-bell-wrap svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

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

/* Falling euros: full-width, down the page, colorful */
.nav-coins {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 340px;
  pointer-events: none;
  z-index: 0;
}

.nav-coins span {
  position: absolute;
  top: -20px;
  font-size: 18px;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  animation: coinFall 3s ease-in infinite;
}

.nav-coins .c1 { left: 5%;  color: #fbbf24; animation-delay: 0s; }
.nav-coins .c2 { left: 18%; color: #ffffff; animation-delay: 0.5s; }
.nav-coins .c3 { left: 28%; color: #10B981; animation-delay: 0.2s; }
.nav-coins .c4 { left: 42%; color: #f59e0b; animation-delay: 0.8s; }
.nav-coins .c5 { left: 55%; color: #34d399; animation-delay: 0.3s; }
.nav-coins .c6 { left: 68%; color: #fde047; animation-delay: 0.6s; }
.nav-coins .c7 { left: 78%; color: #a7f3d0; animation-delay: 0.1s; }
.nav-coins .c8 { left: 88%; color: #fcd34d; animation-delay: 0.4s; }
.nav-coins .c9 { left: 95%; color: #6ee7b7; animation-delay: 0.7s; }
.nav-coins .c10 { left: 12%; color: #fef3c7; animation-delay: 0.9s; }

.nav-cta:hover {
  transform: scale(1.02);
  background: #1f2937;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Section common */
.section {
  padding: 100px 24px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 48px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.container-mid {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.container-steps {
  max-width: 1000px;
  margin: 0 auto;
}

.container-cta {
  max-width: 800px;
  margin: 0 auto;
}

/* SECTION 1: HERO */
.hero {
  padding: calc(72px + 48px) 24px 120px;
  background: var(--white);
  text-align: center;
}

.hero .container-narrow {
  max-width: 720px;
}

.hero-headline {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.hero-headline .tax {
  color: var(--red);
}

.hero-subheadline-block {
  margin-top: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subheadline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--gray);
  line-height: 1.5;
}

.hero-subheadline-row:last-child {
  margin-bottom: 0;
}

.hero-line-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--gray);
}

.hero-line-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.hero-subheadline-row .hero-line-highlight {
  color: var(--dark);
  font-weight: 600;
}

.hero-bridge {
  margin-top: 40px;
  margin-bottom: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.5;
  color: var(--dark);
  text-align: center;
}

.hero-form-wrap {
  margin-top: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-form-row {
  display: flex;
  gap: 0;
  margin-bottom: 12px;
  align-items: flex-start;
}

.hero-form-input-wrap {
  flex: 1;
  min-width: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.hero-form-input-wrap input {
  width: 100%;
  box-sizing: border-box;
  flex: 0 0 56px;
  min-height: 56px;
  height: 56px;
}

.hero-form-input-wrap .form-msg {
  margin-top: 6px;
  margin-bottom: 0;
  padding-left: 20px;
}

.hero-form-row input {
  min-width: 0;
  height: 56px;
  min-height: 56px;
  padding: 0 20px;
  border: 2px solid var(--gray-border);
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-form-row input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

/* Single-unit look: rounded only on outer edges when input + button side by side */
.hero-form-row .hero-form-input-wrap input {
  border-radius: 12px 0 0 12px;
  border-right-width: 1px;
}

.hero-form-row .hero-form-btn {
  border-radius: 0 12px 12px 0;
}

.hero-form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  height: 56px;
  min-height: 56px;
  padding: 0 28px;
  line-height: 1.5;
  background: var(--green);
  color: var(--white);
  border: none;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-form-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero-form-btn:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.hero-form-note {
  font-size: 14px;
  color: var(--gray);
  margin-top: 8px;
}

.form-msg {
  min-height: 20px;
  font-size: 14px;
  margin-top: 8px;
}

/* Align form error with start of email input */
.hero-form-wrap .form-msg,
.cta-form .form-msg {
  text-align: left;
}

.form-msg.ok {
  color: var(--green);
}

.form-msg.err {
  color: var(--red);
}

/* SECTION 2: THE PROBLEM */
.problem {
  background: var(--gray-bg);
  padding: 100px 24px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.problem-card {
  background: var(--white);
  padding: 24px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.problem-card .card-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--dark);
}

.problem-card .card-icon-wrap svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
}

.problem-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.problem-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.55;
}

.problem-card .highlight-red {
  color: var(--red);
  font-weight: 600;
}

/* SECTION 3: WHO THIS IS FOR */
.who {
  background: var(--white);
  padding: 100px 24px;
}

.who-header {
  text-align: center;
  margin-bottom: 48px;
}

.who-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.who-subtitle {
  font-size: 18px;
  color: var(--gray);
  font-weight: 400;
  line-height: 1.5;
  max-width: 480px;
  margin: 0 auto;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 24px;
  margin-bottom: 48px;
}

.who-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.who-item:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
}

.who-item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-bg);
  color: var(--green);
  border-radius: 10px;
}

.who-item-icon i {
  width: 22px;
  height: 22px;
}

.who-item p {
  font-size: 17px;
  color: var(--dark);
  line-height: 1.5;
  margin: 0;
  padding-top: 2px;
}

.who-cta-box {
  text-align: center;
  padding: 32px 40px;
  background: var(--white);
  border-radius: 16px;
  border: 2px solid var(--green);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(16, 185, 129, 0.02) 100%);
}

.who-cta {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  margin: 0;
}

.who-cta strong {
  font-weight: 700;
  color: var(--green);
}

/* SECTION 4: THE SOLUTION */
.solution {
  background: var(--gray-bg);
  padding: 100px 24px;
}

.solution-subtitle {
  font-size: 16px;
  color: var(--gray);
  text-align: center;
  margin-top: 8px;
  margin-bottom: 48px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.solution-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.solution-num {
  width: 40px;
  height: 40px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.solution-body {
  flex: 1;
}

.solution-body .card-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  color: var(--green);
}

.solution-body .card-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.solution-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.solution-body .desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

.solution-body .value {
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
}

.solution-summary {
  margin-top: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background: var(--green-bg);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--green);
  text-align: center;
}

.solution-summary .main {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.solution-summary .main span {
  color: var(--green);
}

.solution-summary .sub {
  font-size: 16px;
  color: var(--gray);
}

/* SECTION 5: HOW IT WORKS */
.how {
  background: var(--white);
  padding: 100px 24px;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
}

.step-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: var(--green);
}

.step-icon-wrap svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}

.step-circle {
  width: 64px;
  height: 64px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.step p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--gray-border);
  margin-top: 32px;
  flex-shrink: 0;
}

.steps-footer {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: var(--dark);
  margin-top: 40px;
}

/* SECTION: FAQ */
.faq {
  background: var(--gray-bg);
}

.faq-list {
  max-width: 640px;
  margin: 32px auto 0;
  padding: 0;
  list-style: none;
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 8px 0;
}

.faq-a {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* SECTION 6: FINAL CTA */
.cta-section {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 80px 24px;
  color: var(--white);
  text-align: center;
}

.cta-headline {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-subheadline {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.cta-form-row {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto 12px;
  align-items: flex-start;
}

.cta-form-input-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cta-form-input-wrap .form-msg {
  margin-top: 6px;
  margin-bottom: 0;
  padding-left: 20px;
}

.cta-form-input-wrap input {
  width: 100%;
  box-sizing: border-box;
  flex: 0 0 56px;
  min-height: 56px;
  height: 56px;
}

.cta-form-row input {
  min-width: 0;
  padding: 0 20px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px 0 0 12px;
  border-right-width: 1px;
  font-size: 16px;
  line-height: 1.5;
  background: var(--white);
  color: var(--dark);
}

.cta-form-row input:focus {
  outline: none;
  border-color: var(--white);
}

.cta-form-row .cta-form-btn {
  border-radius: 0 12px 12px 0;
}

.cta-form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  height: 56px;
  min-height: 56px;
  padding: 0 24px;
  line-height: 1.5;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-form-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cta-form-btn:hover:not(:disabled) {
  transform: scale(1.02);
  background: #1f2937;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-note {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 16px;
}

.cta-section .form-msg.ok {
  color: #a7f3d0;
}

.cta-section .form-msg.err {
  color: #fecaca;
}

/* FOOTER */
.footer {
  background: var(--dark);
  padding: 60px 24px;
  color: var(--white);
  text-align: center;
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 16px;
  color: var(--gray-light);
  margin-bottom: 12px;
}

.footer-about {
  font-size: 14px;
  color: var(--gray-light);
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
  line-height: 1.5;
}

.footer-contact {
  font-size: 16px;
  margin-bottom: 24px;
}

.footer-contact a {
  color: var(--green);
}

.footer-legal {
  font-size: 12px;
  color: var(--gray);
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav {
    position: sticky;
    top: 0;
  }

  .hero {
    padding: calc(72px + 40px) 20px 80px;
  }

  .hero-headline {
    font-size: 32px;
  }

  .hero-subheadline-block {
    max-width: 100%;
    text-align: center;
  }

  .hero-subheadline-row {
    justify-content: center;
    font-size: 17px;
    gap: 10px;
    margin-bottom: 8px;
  }

  .hero-bridge {
    font-size: 17px;
    margin-top: 32px;
  }

  .hero-form-wrap {
    margin-top: 28px;
    max-width: 100%;
    width: 100%;
    padding: 0;
  }

  .hero-form-row {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .hero-form-input-wrap {
    width: 100%;
    max-width: 100%;
  }

  .hero-form-row .hero-form-input-wrap input {
    border-radius: 12px;
    border-right-width: 2px;
    width: 100%;
    max-width: 100%;
  }

  .hero-form-row input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 52px;
    height: 52px;
    padding: 0 20px;
    font-size: 16px;
  }

  .hero-form-row .hero-form-btn {
    border-radius: 12px;
  }

  .hero-form-btn {
    width: 100%;
    min-height: 52px;
    height: 52px;
  }

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

  .section {
    padding: 60px 20px;
  }

  .problem {
    padding: 60px 20px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .problem-card {
    padding: 28px 20px;
  }

  .who {
    padding: 60px 20px;
  }

  .who-header {
    margin-bottom: 32px;
  }

  .who-title {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .who-subtitle {
    font-size: 16px;
  }

  .who-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .who-item {
    padding: 20px;
    gap: 14px;
  }

  .who-item-icon {
    width: 40px;
    height: 40px;
  }

  .who-item-icon i {
    width: 20px;
    height: 20px;
  }

  .who-item p {
    font-size: 16px;
  }

  .who-cta-box {
    padding: 24px 20px;
  }

  .who-cta {
    font-size: 17px;
  }

  .solution {
    padding: 60px 20px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .solution-card {
    padding: 24px 20px;
    flex-direction: column;
    gap: 16px;
  }

  .solution-summary {
    margin-top: 32px;
    padding: 24px 20px;
  }

  .solution-summary .main {
    font-size: 18px;
  }

  .how {
    padding: 60px 20px;
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
  }

  .step-connector {
    width: 2px;
    height: 24px;
    margin: 0;
  }

  .step {
    max-width: 100%;
  }

  .steps-footer {
    font-size: 16px;
    margin-top: 32px;
  }

  .cta-section {
    padding: 60px 20px;
  }

  .cta-headline {
    font-size: 28px;
  }

  .cta-subheadline {
    font-size: 17px;
    margin-bottom: 32px;
  }

  .cta-form-row {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 0;
  }

  .cta-form-input-wrap {
    width: 100%;
    max-width: 100%;
  }

  .cta-form-row input {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    border-radius: 12px;
    border-right-width: 2px;
    min-height: 52px;
    height: 52px;
  }

  .cta-form-row .cta-form-btn {
    border-radius: 12px;
  }

  .cta-form-btn {
    width: 100%;
    min-height: 52px;
    height: 52px;
  }

  .faq-item {
    padding: 16px 0;
  }

  .faq-q {
    font-size: 17px;
  }

  .faq-a {
    font-size: 15px;
  }

  .footer {
    padding: 48px 20px 40px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero {
    padding: calc(72px + 28px) 16px 48px;
  }

  .hero-headline {
    font-size: 28px;
  }

  .hero-subheadline-row {
    font-size: 16px;
  }

  .section,
  .problem,
  .who,
  .solution,
  .how {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .problem-card,
  .solution-card {
    padding: 20px 16px;
  }

  .cta-section {
    padding: 48px 16px;
  }

  .cta-headline {
    font-size: 24px;
  }

  .nav {
    padding: 0 16px;
  }
}
