@font-face {
  font-family: "Coolvetica";
  src: url("../../fonts/coolvetica_rg-webfont.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: local("Montserrat"), local("Montserrat Regular");
  font-display: swap;
}

:root {
  --brand: #40a4d8;
  --brand-dark: #1473a2;
  --heading-strong: #3e1980;
  --text: #3e1980;
  --surface: #f4fbff;
  --line: rgba(64, 164, 216, 0.22);
  --shadow: 0 20px 60px rgba(20, 115, 162, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  background: #ffffff;
  color: var(--text);
}

h1,
h2,
.eyebrow,
.footer__brand,
button {
  font-family: "Coolvetica", "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--brand);
}

h1,
h2 {
  color: var(--heading-strong);
}

.eyebrow {
  color: var(--brand);
}

p,
span,
input,
select,
textarea,
label,
li,
a {
  color: var(--text);
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 72px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 40px;
}

.hero__copy,
.intro__block,
.briefing-form {
  background: linear-gradient(180deg, rgba(64, 164, 216, 0.08), rgba(64, 164, 216, 0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__copy {
  padding: 48px;
}

.cards-section {
  margin-bottom: 32px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.briefing-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
  padding: 32px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(64, 164, 216, 0.08), rgba(64, 164, 216, 0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.briefing-card:hover,
.briefing-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(64, 164, 216, 0.42);
  box-shadow: 0 24px 50px rgba(20, 115, 162, 0.18);
  outline: none;
}

.briefing-card h2,
.briefing-card p {
  margin: 0;
}

.briefing-card__eyebrow,
.briefing-card__cta {
  font-weight: 600;
}

.briefing-card__eyebrow {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.briefing-card__cta {
  margin-top: auto;
  color: var(--brand-dark);
}

.hero__logo {
  display: block;
  width: clamp(180px, 24vw, 260px);
  height: auto;
  margin-bottom: 22px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 1rem;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
}

.hero__lead,
.intro__block p,
.form-status {
  font-size: 1rem;
  line-height: 1.7;
}

.hero__lead {
  margin: 24px 0 0;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1;
}

.intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.intro__block,
.briefing-form {
  padding: 28px;
}

.section-heading {
  padding-top: 10px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}

label span {
  font-weight: 600;
}

.field-note {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(62, 25, 128, 0.75);
}

.full {
  grid-column: 1 / -1;
}

.is-hidden {
  display: none;
}

.honeypot {
  position: absolute !important;
  top: 0;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.honeypot label,
.honeypot input,
.honeypot span {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

.choice-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-group legend {
  margin-bottom: 12px;
  font-weight: 600;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.choice-pill {
  position: relative;
  min-width: 150px;
  margin: 0;
}

.choice-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.choice-pill span {
  display: block;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  padding: 12px 18px;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.choice-pill input:checked + span {
  border-color: var(--brand);
  background: rgba(64, 164, 216, 0.12);
  box-shadow: 0 0 0 4px rgba(64, 164, 216, 0.1);
}

.choice-pill input:focus-visible + span {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(64, 164, 216, 0.14);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  padding: 14px 16px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(64, 164, 216, 0.14);
  transform: translateY(-1px);
}

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

.checkbox {
  margin-top: 24px;
  flex-direction: row;
  align-items: flex-start;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

button {
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

button:hover,
button:focus-visible {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(20, 115, 162, 0.22);
  outline: none;
}

button[disabled] {
  cursor: wait;
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}

.form-status {
  margin: 0;
  min-height: 1.7em;
}

.form-status.is-error {
  color: #b12b49;
}

.form-status.is-success {
  color: #18855a;
}

.footer {
  min-height: 260px;
  background: url("../../img/faldon1.png") center bottom / cover no-repeat;
}

.footer__overlay {
  min-height: inherit;
  display: grid;
  place-items: end start;
  padding: 32px 16px;
  background: linear-gradient(180deg, rgba(64, 164, 216, 0.1), rgba(12, 75, 111, 0.58));
}

.footer__content {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__brand,
.footer a {
  color: #ffffff;
}

.footer__brand {
  margin: 0 0 8px;
  font-size: 1.9rem;
}

.footer a {
  text-decoration: none;
  font-size: 1rem;
}

.footer a:hover,
.footer a:focus-visible {
  text-decoration: underline;
  outline: none;
}

@media (max-width: 900px) {
  .hero,
  .intro,
  .form-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding: 36px 28px;
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }
}

@media (max-width: 600px) {
  .page {
    width: min(100% - 20px, 1120px);
    padding-top: 20px;
  }

  .hero__copy,
  .intro__block,
  .briefing-form {
    border-radius: 20px;
  }

  .intro__block,
  .briefing-form {
    padding: 22px;
  }

  .form-actions {
    align-items: flex-start;
  }

  button {
    width: 100%;
    justify-content: center;
  }
}
