@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=DM+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  --page: #fafbfa;
  --surface: #ffffff;
  --surface-soft: #eef6f2;
  --ink: #13282c;
  --ink-soft: #49615b;
  --muted: #6d817b;
  --line: #dbe8e3;
  --green: #087b63;
  --green-deep: #075f4e;
  --mint: #67cdb7;
  --blue: #326884;
  --rose: #b95f5b;
  --shadow: 0 22px 70px rgba(19, 40, 44, 0.11);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  padding: 14px clamp(20px, 3vw, 48px);
  background: rgba(250, 251, 250, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}

.brand-logo {
  width: 210px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--green);
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 22px);
  flex: 1;
}

.site-nav a,
.nav-log-btn {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.nav-log-btn:hover {
  color: var(--green);
}

.header-cta,
.btn-primary,
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(8, 123, 99, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-cta {
  min-width: 116px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-primary,
.btn-submit {
  padding: 0 22px;
}

.header-cta:hover,
.btn-primary:hover,
.btn-submit:hover {
  background: var(--green-deep);
  box-shadow: 0 14px 36px rgba(8, 123, 99, 0.28);
  transform: translateY(-1px);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(390px, 0.78fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(38px, 4vw, 58px) 28px 76px;
}

.hero-copy {
  padding-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.trust-row > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.trust-row .material-icons-round {
  font-size: 17px;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(48px, 6.8vw, 82px);
  line-height: 0.95;
}

.hero-copy p,
.section-intro p,
.support-section p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.hero-copy p {
  max-width: 640px;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid #adc3bd;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
}

.hero-metrics div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 21px;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.apply-card {
  position: sticky;
  top: 96px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
}

.card-heading > .material-icons-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--green);
}

.card-heading h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1;
}

.card-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.profession-field {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  border: 0;
}

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

.field span,
.profession-field legend {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.profession-field legend {
  padding: 0;
}

.profession-field p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.profession-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  gap: 10px;
}

.compact-options {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.profession-options label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-width: 0;
  min-height: 56px;
  padding: 10px 12px;
  border: 1px solid #cbded8;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.profession-options input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--green);
}

.profession-options span {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid #cbded8;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-chat {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 9999;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 18px 40px rgba(19, 40, 44, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-chat:hover,
.whatsapp-chat:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(19, 40, 44, 0.3);
  outline: none;
}

.whatsapp-chat svg {
  width: 30px;
  height: 30px;
  display: block;
}

.field textarea {
  min-height: 104px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(8, 123, 99, 0.12);
}

.application-progress {
  margin: 16px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f5faf7;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.application-progress[hidden] {
  display: none;
}

.btn-submit {
  width: 100%;
  margin-top: 18px;
  font-size: 15px;
}

.btn-submit:disabled {
  cursor: progress;
  opacity: 0.68;
  transform: none;
}

.form-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.section-band,
.growth-section,
.showcase-section,
.flow-section,
.support-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 28px;
}

.section-band,
.growth-section,
.showcase-section {
  border-top: 1px solid var(--line);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-intro h2,
.support-section h2 {
  margin: 0 0 12px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
}

.section-intro p {
  max-width: 620px;
  margin: 0;
}

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

.growth-section {
  padding-top: 68px;
}

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

.growth-card {
  min-height: 248px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f5faf7 100%);
}

.growth-card .material-icons-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--green);
  font-size: 24px;
}

.growth-card h3 {
  margin: 20px 0 10px;
  color: var(--ink);
  font-size: 21px;
}

.growth-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.info-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.info-card .material-icons-round {
  color: var(--green);
  font-size: 31px;
}

.info-card h3,
.flow-item h3 {
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 18px;
}

.info-card p,
.flow-item p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.flow-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 42px;
  align-items: center;
}

.showcase-copy h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
}

.showcase-copy ul {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.showcase-copy li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  line-height: 1.62;
}

.showcase-copy li::before {
  content: "done";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--green);
  font-family: "Material Icons Round";
  font-size: 19px;
}

.dashboard-preview {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.preview-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 900;
}

.preview-topline .material-icons-round {
  color: var(--green);
}

.preview-list {
  display: grid;
  gap: 10px;
}

.preview-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 8px;
  background: var(--surface-soft);
}

.preview-list span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.preview-list strong {
  color: var(--green);
  font-size: 13px;
  text-align: right;
}

.flow-list {
  display: grid;
  gap: 12px;
}

.flow-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.flow-item strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--green);
  font-size: 16px;
}

.flow-item h3 {
  margin-top: 2px;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.support-actions {
  display: grid;
  gap: 10px;
  min-width: 320px;
}

.support-actions a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.support-actions .material-icons-round {
  color: var(--green);
  font-size: 21px;
}

.btn-small {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.thank-you-modal[hidden] {
  display: none;
}

.thank-you-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
}

.thank-you-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 40, 44, 0.46);
  backdrop-filter: blur(8px);
}

.thank-you-card {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(19, 40, 44, 0.24);
  text-align: center;
}

.thank-you-card > .material-icons-round {
  color: var(--green);
  font-size: 48px;
}

.thank-you-card h2 {
  margin: 14px 0 10px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.thank-you-card p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  line-height: 1.62;
}

.notice-modal[hidden] {
  display: none;
}

.notice-modal {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-items: center;
  padding: 20px;
}

.notice-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 40, 44, 0.5);
  backdrop-filter: blur(8px);
}

.notice-card {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 76px rgba(19, 40, 44, 0.26);
  text-align: left;
}

.notice-card-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  margin-bottom: 18px;
  background: var(--surface-soft);
  color: var(--green);
  font-size: 30px;
}

.notice-modal[data-type="success"] .notice-card-icon {
  background: #eaf8f1;
  color: var(--green);
}

.notice-modal[data-type="warning"] .notice-card-icon {
  background: #fff6de;
  color: #b77909;
}

.notice-modal[data-type="error"] .notice-card-icon {
  background: #fff0ed;
  color: #b42318;
}

.notice-card h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 25px;
  line-height: 1.15;
}

.notice-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 700;
}

.notice-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.notice-actions .btn-primary,
.notice-actions .btn-secondary {
  min-width: 126px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 48px;
  background: var(--ink);
  color: #d7e4e0;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.site-footer strong a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.58);
  text-underline-offset: 3px;
}

.site-footer p {
  margin: 0;
  color: #a9bdb7;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
}

.site-footer a {
  color: #d7e4e0;
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--mint);
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 20px;
  }

  .site-nav {
    display: none;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .brand span {
    display: none;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 20px 58px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .apply-card {
    position: static;
  }

  .proof-grid,
  .growth-grid,
  .showcase-section,
  .flow-section,
  .support-section {
    grid-template-columns: 1fr;
  }

  .support-actions {
    min-width: 0;
  }

  .site-footer {
    flex-direction: column;
    padding: 32px 20px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 1180px) {
  .hero-section {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  }

  .profession-options {
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-section {
    grid-template-columns: 1fr;
  }

  .apply-card {
    width: 100%;
    max-width: 680px;
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: auto;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .brand {
    flex: 1 1 calc(100% - 132px);
  }

  .brand-logo {
    width: 132px;
    height: 38px;
  }

  .site-nav {
    order: 3;
    display: none;
    flex: 1 0 100%;
    max-width: 100%;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 0 4px;
    scrollbar-width: none;
  }

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

  .site-nav a {
    flex: 0 0 auto;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .header-cta {
    min-width: 108px;
  }
}

@media (max-width: 640px) {
  .header-cta {
    display: none;
  }

  h1 {
    font-size: 44px;
    line-height: 0.98;
  }

  .hero-metrics,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .apply-card {
    padding: 18px;
  }

  .section-band,
  .growth-section,
  .showcase-section,
  .flow-section,
  .support-section {
    padding: 58px 20px;
  }

  .flow-item {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-actions a {
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    min-width: 100%;
  }

  .profession-options label {
    min-height: 50px;
  }

  .profession-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profession-options label {
    padding: 12px;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 10px;
  }

  .notice-card {
    padding: 24px 20px;
  }

  .notice-actions {
    flex-direction: column-reverse;
  }

  .notice-actions .btn-primary,
  .notice-actions .btn-secondary {
    width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand-logo {
    width: 118px;
    height: 34px;
  }

  .hero-section {
    padding: 34px 16px 48px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .trust-row {
    gap: 8px;
  }

  .trust-row > span {
    width: 100%;
    justify-content: flex-start;
  }

  .profession-options {
    grid-template-columns: 1fr;
  }

  .profession-options label {
    min-height: 48px;
  }
}
