:root {
  --ink: #17211f;
  --muted: #5f6b67;
  --line: #dbe2dc;
  --paper: #f7f4ee;
  --white: #ffffff;
  --teal: #0e6c68;
  --teal-dark: #064944;
  --sage: #b8c7ac;
  --coral: #d96947;
  --gold: #d5a84a;
  --shadow: 0 22px 60px rgba(23, 33, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(12, 20, 18, 0.78), rgba(12, 20, 18, 0));
}

.brand,
.nav-links,
.hero-actions,
.hero-proof,
.metric-row,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: auto;
  height: 64px;
  max-width: min(240px, 30vw);
  border-radius: 6px;
  object-fit: contain;
}
.brand-tagline {
  font-size: 0.78em;
  font-style: italic;
  font-weight: 500;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
}

.nav-links {
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a,
.language-menu button {
  opacity: 0.82;
}

.nav-links a:hover,
.language-menu button:hover,
.language-menu:focus-within button,
.language-menu:hover button,
.header-cta:hover {
  opacity: 1;
}

.language-menu {
  position: relative;
}

.language-menu button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.language-options {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 132px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(23, 33, 31, 0.94);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-options a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.language-options a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.language-menu:hover .language-options,
.language-menu:focus-within .language-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  padding: 120px clamp(18px, 5vw, 72px) 48px;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 22, 20, 0.86) 0%, rgba(11, 22, 20, 0.55) 45%, rgba(11, 22, 20, 0.12) 100%),
    linear-gradient(0deg, rgba(11, 22, 20, 0.58), rgba(11, 22, 20, 0.08) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb38d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(1.5rem, 3.5vw, 3.45rem);
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 980px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.2rem, 2.8vw, 2.76rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--coral);
  color: var(--white);
}

.button.primary:hover {
  background: #c95736;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-proof {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: 700;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-strip div {
  padding: 28px clamp(18px, 4vw, 48px);
  background: var(--white);
}

.partner-strip strong,
.partner-strip span {
  display: block;
}

.partner-strip strong {
  margin-bottom: 8px;
}

.partner-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: 94px clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 42px;
}

.section-heading p {
  max-width: 690px;
  font-size: 1.05rem;
}

.section-heading.compact {
  max-width: 760px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card,
.benefit-list article,
.fee-grid article,
.journey-item,
.trust-panel,
.quote-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.step-card {
  min-height: 250px;
  padding: 24px;
}

.step-number {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 44px;
  place-items: center;
  border: 2px solid var(--teal);
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 8px 20px rgba(14, 108, 104, 0.18);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 72px);
  background: var(--white);
}

.copy-block {
  align-self: start;
  position: sticky;
  top: 110px;
}

.copy-block p {
  font-size: 1.05rem;
}

.metric-row {
  gap: 14px;
  margin-top: 34px;
}

.metric-row div {
  flex: 1;
  min-height: 132px;
  padding: 22px;
  border-radius: 8px;
  background: #eef4e9;
}

.metric-row strong {
  display: block;
  color: var(--teal-dark);
  font-size: 2rem;
}

.metric-row span {
  color: var(--muted);
  line-height: 1.45;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.benefit-list article {
  padding: 28px;
}

.fees-section {
  background: var(--teal-dark);
  color: var(--white);
}

.fees-section p,
.fees-section .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.fee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fee-grid article {
  padding: 30px;
  color: var(--ink);
}

.fee-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--teal);
  font-weight: 800;
}

.service-icon {
  display: grid;
  width: 58px;
  height: 64px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 16px;
  color: var(--teal-dark);
  background: rgba(14, 108, 104, 0.1);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fee-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.6rem;
  line-height: 1.1;
}

.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.journey-item {
  padding: 24px;
  border-top: 5px solid var(--gold);
}

.journey-item span {
  display: block;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 1.5rem;
  font-weight: 800;
}

.trust-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  background: #eef4e9;
}

.trust-panel,
.quote-panel {
  padding: clamp(28px, 4vw, 48px);
}

.trust-panel ul {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.trust-panel li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.trust-panel li::before {
  content: "✓";
  display: inline-grid;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1.5px solid var(--teal);
  border-radius: 4px;
  color: var(--white);
  background: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;
}

.quote-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
}

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

.security-flow-item {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 11px;
  color: var(--white);
  text-align: center;
}

.security-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.security-icon svg {
  width: 36px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.security-flow-item small {
  max-width: 130px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}
.quote-panel p {
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.35;
}

.quote-panel span {
  color: var(--sage);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.founder-item {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.founder-item h3 { margin-bottom: 8px; }
.founder-item p { margin: 0; }

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  padding: 22px 24px;
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 70px);
  background: var(--white);
}

.contact-copy p {
  font-size: 1.05rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.form-section-title {
  margin: 10px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 14px;
  color: var(--ink);
  background: #fbfaf6;
  font: inherit;
  font-weight: 400;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(14, 108, 104, 0.18);
  border-color: var(--teal);
}

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

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 700;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.site-footer {
  flex-wrap: wrap;
}

.footer-copyright {
  flex: 0 0 100%;
  order: 10;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  font-size: 0.78rem;
}
.site-footer span:first-child {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .partner-strip,
  .steps,
  .fee-grid,
  .journey,
  .split-section,
  .trust-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .copy-block {
    position: static;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }
}

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

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding: 96px 18px 32px;
  }

  h1 {
    font-size: 1.575rem;
  }

  h2 {
    font-size: 1.26rem;
  }

  .hero-actions,
  .metric-row,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 68px 18px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

.contact-form .form-submit {
  width: fit-content;
  min-height: 54px;
  padding: 16px 22px;
  font-size: 1.12rem;
  justify-self: center;
}
.admin-page {
  min-height: 100vh;
  color: var(--ink);
  background: #eef4e9;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--ink);
}

.admin-main {
  width: min(1400px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0;
}

.admin-heading h1 {
  margin-bottom: 14px;
}

.admin-summary {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 24px 0;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.admin-summary strong {
  color: var(--teal);
  font-size: 1.8rem;
}

.admin-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 960px;
}

.admin-table th,
.admin-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  white-space: pre-line;
}

.admin-table th {
  color: var(--white);
  background: var(--teal-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.admin-empty {
  margin: 0;
  padding: 36px;
  text-align: center;
}
.admin-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-logout {
  border: 0;
  color: var(--white);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.admin-login {
  display: grid;
  min-height: calc(100vh - 84px);
  padding: 36px 18px;
  place-items: center;
}

.admin-login[hidden],
.admin-main[hidden] {
  display: none;
}

.admin-login-form {
  width: min(100%, 460px);
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.admin-login-form .button {
  margin-top: 20px;
}

.admin-login-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--coral);
  font-weight: 700;
}

.admin-link {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.admin-link:hover {
  color: var(--white);
}
/* Responsive refinements */
@media (max-width: 980px) {
  .site-header {
    gap: 14px;
  }

  .nav-links {
    display: flex;
    margin-left: auto;
  }

  .nav-links > a {
    display: none;
  }

  .language-options {
    right: 0;
  }

  .step-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 9px;
    padding: 12px 14px;
    background: rgba(12, 20, 18, 0.9);
  }

  .brand {
    min-width: 0;
    gap: 7px;
    font-size: 0.9rem;
  }

  .brand-mark {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
  }

  .brand-tagline {
    display: none;
  }

  .nav-links {
    gap: 0;
    font-size: 0.78rem;
  }

  .header-cta {
    display: inline-flex;
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .language-options {
    top: calc(100% + 10px);
    min-width: 116px;
  }

  .hero {
    min-height: auto;
    align-items: center;
    padding: 118px 18px 56px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-proof span {
    width: fit-content;
  }

  .partner-strip {
    padding: 24px 18px;
  }

  .section {
    padding: 58px 18px;
  }

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

  .steps,
  .benefit-list,
  .fee-grid,
  .journey,
  .faq-list {
    gap: 14px;
  }

  .step-card,
  .trust-panel,
  .quote-panel,
  .founder-item {
    padding: 22px;
  }

  .step-number {
    margin-bottom: 24px;
  }

  .security-flow {
    gap: 22px 12px;
  }

  .security-icon {
    width: 62px;
    height: 62px;
  }

  .security-icon svg {
    width: 32px;
    height: 32px;
  }

  .quote-panel p {
    font-size: 1.2rem;
  }

  .contact-form {
    gap: 14px;
    padding: 20px 16px;
  }

  input,
  select,
  textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .contact-form .form-submit {
    width: 100%;
    justify-self: stretch;
  }

  .site-footer {
    align-items: flex-start;
    padding: 26px 18px;
  }

  .admin-header {
    gap: 10px;
    padding: 12px 14px;
  }

  .admin-actions {
    gap: 8px;
  }

  .admin-header .button {
    width: auto;
    min-height: 38px;
    padding: 9px 11px;
    font-size: 0.72rem;
  }

  .admin-main {
    width: min(100% - 28px, 1400px);
    padding: 46px 0;
  }

  .admin-login {
    padding: 28px 14px;
  }

  .admin-login-form {
    padding: 26px 20px;
  }
}

@media (max-width: 390px) {
  .site-header {
    gap: 7px;
    padding-inline: 10px;
  }

  .brand > span:last-child {
    font-size: 0.82rem;
  }

  .header-cta {
    padding-inline: 8px;
    font-size: 0.65rem;
  }

  .language-menu button {
    font-size: 0.72rem;
  }

  .hero {
    padding-inline: 14px;
  }

  .section {
    padding-inline: 14px;
  }
}
@media (max-width: 640px) {
  .brand-logo {
    height: 46px;
    max-width: 128px;
  }
}

@media (max-width: 390px) {
  .brand-logo {
    height: 40px;
    max-width: 104px;
  }
}