:root {
  --goglo-teal: #0abab5;
  --goglo-teal-dark: #089ca2;
  --goglo-gold: #e0aa3e;
  --goglo-gold-dark: #d49a33;
  --ink: #172424;
  --muted: #667272;
  --line: #e7eeee;
  --soft: #f6fbfa;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(9, 86, 84, 0.14);
  font-family: "Clash Display", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(224, 170, 62, 0.25), transparent 30rem),
    linear-gradient(135deg, rgba(224, 170, 62, 0.18), #ffffff 45%, rgba(10, 186, 181, 0.2));
  min-height: 100vh;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
  padding: 34px 0;
}

.brand-panel {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: stretch;
}

.brand-card {
  width: 100%;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(10, 186, 181, 0.95), rgba(8, 156, 162, 0.92)),
    var(--goglo-teal);
  color: var(--white);
  padding: clamp(28px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.brand-card::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -120px;
  top: -95px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.brand-card::after {
  content: "";
  position: absolute;
  inset: auto 36px 34px auto;
  width: 112px;
  height: 3px;
  border-radius: 999px;
  background: var(--goglo-gold);
}

.brand-logo {
  width: 154px;
  height: 104px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 34px;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.14));
}

.eyebrow,
.form-kicker {
  margin: 0 0 12px;
  color: var(--goglo-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.55rem, 5vw, 5rem);
  line-height: 0.96;
  max-width: 620px;
}

.subheading {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: clamp(1.06rem, 2vw, 1.32rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.form-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: clamp(18px, 3vw, 32px);
  backdrop-filter: blur(16px);
}

.registration-form {
  display: grid;
  gap: 18px;
}

.form-heading {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.form-heading h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

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

label,
fieldset {
  display: grid;
  gap: 8px;
}

label span,
legend {
  color: #334444;
  font-size: 0.94rem;
  font-weight: 650;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dbe7e6;
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--goglo-teal);
  box-shadow: 0 0 0 4px rgba(10, 186, 181, 0.12);
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.pill-group,
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pill-group label,
.service-grid label {
  display: block;
}

.pill-group input,
.service-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill-group span,
.service-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid #dbe7e6;
  background: var(--white);
  border-radius: 999px;
  padding: 10px 14px;
  color: #425151;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: center;
}

.service-grid span {
  border-radius: 14px;
}

.pill-group input:checked + span,
.service-grid input:checked + span {
  border-color: var(--goglo-gold);
  background: var(--goglo-gold);
  color: var(--white);
  box-shadow: 0 12px 22px rgba(224, 170, 62, 0.18);
}

.compact {
  max-width: 260px;
}

.submit-button {
  border: 0;
  border-radius: 999px;
  min-height: 54px;
  background: var(--goglo-gold);
  color: var(--white);
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(224, 170, 62, 0.26);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.submit-button:hover {
  background: var(--goglo-gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(224, 170, 62, 0.32);
}

.submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.form-message {
  display: none;
  margin: 0;
  border-radius: 14px;
  padding: 12px 14px;
  line-height: 1.45;
}

.form-message.is-success {
  display: block;
  background: #e7fbf8;
  color: #087a77;
  border: 1px solid #bdece8;
}

.form-message.is-error {
  display: block;
  background: #fff4ec;
  color: #9f4c10;
  border: 1px solid #f2d4bd;
}

.privacy-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: center;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 920px) {
  .page-shell {
    width: min(100% - 24px, 720px);
    grid-template-columns: 1fr;
    padding: 12px 0 24px;
  }

  .brand-panel {
    min-height: auto;
  }

  .brand-card {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: 100%;
    padding: 0;
    gap: 0;
  }

  .brand-card,
  .form-panel {
    border-radius: 0;
    box-shadow: none;
  }

  .brand-card {
    min-height: 355px;
    padding: 28px 22px 34px;
  }

  .brand-logo {
    width: 124px;
    height: 84px;
    margin-bottom: 22px;
  }

  .trust-strip {
    margin-top: 24px;
  }

  .form-panel {
    padding: 24px 18px 28px;
  }

  .field-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .pill-group span,
  .service-grid span {
    min-height: 46px;
  }
}
