/* Add any custom CSS specific to this page here, or ensure index.css is updated */
:root {
  --ocean-tech-blue: #0077B6;
  --seafoam-teal: #00C2A8;
  --deep-marine: #0A1E2C;
  --trade-gold: #F4A300;
  --mist-white: #F9FBFC;

  --slate-ink: #4B5563;
  --cloud-line: #E5E7EB;
  --ice-blue: #EDF4F8;
  --dust-grey: #D1D5DB;

  --color-primary: var(--ocean-tech-blue);
  --color-secondary: var(--seafoam-teal);
  --color-background-dark: var(--deep-marine);
  --color-text-body: var(--slate-ink);
  --color-highlight: var(--trade-gold);
  --color-background-light: var(--mist-white);
  --color-border: var(--cloud-line);
  --color-card-bg: #fff;

  --ocean-tech-blue-darker: #006094;
  --seafoam-teal-darker: #009c88;

  --header-h: 64px;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-text-body);
  background: #fff
}

img {
  max-width: 100%;
  display: block
}

.nowrap {
  white-space: nowrap
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px
}

.section {
  padding: 64px 0
}

.section.alt {
  background: var(--ice-blue)
}

.center {
  text-align: center
}

.mt-16 {
  margin-top: 16px
}

.mt-24 {
  margin-top: 24px
}

.mb-16 {
  margin-bottom: 16px
}

.hidden {
  display: none !important
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--mist-white);
  border-bottom: 1px solid var(--cloud-line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.brand-logo {
  height: 40px;
  width: auto
}

.brand-name {
  font-weight: 700;
  font-size: 20px
}

.brand-route {
  color: var(--deep-marine)
}

.brand-finderhub {
  color: var(--ocean-tech-blue)
}

.nav-right {
  display: flex;
  gap: 10px;
  align-items: center
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s ease;
}

.btn .icon-left {
  margin-right: 8px;
  vertical-align: middle
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary)
}

.btn-primary:hover {
  background: var(--ocean-tech-blue-darker);
  border-color: var(--ocean-tech-blue-darker)
}

.btn-outline {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary)
}

.btn-outline:hover {
  background: rgba(0, 119, 182, .06)
}

.btn-ghost {
  background: transparent;
  color: var(--deep-marine);
  border-color: transparent
}

.btn-ghost:hover {
  background: rgba(10, 30, 44, .05)
}

.w-full {
  width: 100%
}

.link-cta {
  background: none;
  border: none;
  color: var(--ocean-tech-blue);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
}

.link-cta:hover {
  text-decoration: underline
}

.hero {
  background: linear-gradient(180deg, #ffffff, var(--mist-white));
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--cloud-line);
}

.hero-title {
  font-size: 36px;
  line-height: 1.15;
  color: var(--deep-marine);
  margin: 0 0 12px
}

.hero-subtitle {
  font-size: 18px;
  margin: 0 0 20px;
  color: #1f2937
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

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

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

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

.card {
  background: var(--color-card-bg);
  border: 1px solid var(--cloud-line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(10, 30, 44, .04);
}

.card h3 {
  margin: 10px 0 6px;
  color: var(--deep-marine)
}

.card p {
  margin: 0;
  color: var(--slate-ink)
}

.card.center {
  text-align: center
}

.icon-circle {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  color: #fff;
}

.icon-blue {
  background: var(--ocean-tech-blue)
}

.icon-teal {
  background: var(--seafoam-teal)
}

.icon-gold {
  background: var(--trade-gold);
  color: #1b1b1b
}

.pill-card {
  background: #fff;
  border: 1px solid var(--cloud-line);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.pill-icon {
  color: var(--deep-marine)
}

.pill-card h4 {
  margin: 2px 0 0;
  color: var(--deep-marine)
}

.pill-card p {
  margin: 0;
  color: var(--slate-ink)
}

.perk-card {
  background: #fff;
  border: 1px dashed var(--cloud-line);
  border-radius: 12px;
  padding: 18px;
  text-align: left
}

.perk-icon {
  height: 44px;
  width: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  color: #fff
}

.perk-icon.icon-blue {
  background: var(--ocean-tech-blue)
}

.perk-icon.icon-teal {
  background: var(--seafoam-teal)
}

.perk-icon.icon-gold {
  background: var(--trade-gold);
  color: #1b1b1b
}

.perk-card h4 {
  margin: 0 0 4px;
  color: var(--deep-marine)
}

.perk-card p {
  margin: 0
}

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

.faq-item {
  background: #fff;
  border: 1px solid var(--cloud-line);
  border-radius: 10px;
  padding: 14px
}

.faq-item h5 {
  margin: 0 0 6px;
  color: var(--deep-marine);
  font-size: 16px
}

.faq-item p {
  margin: 0;
  color: var(--slate-ink)
}

/* Signup page */
.signup-section {
   display: flex;
  align-items: center; /* Vertically center content */
  justify-content: space-between; /* Ensure space between image and form */
  min-height: 100vh;
  background-color: var(--mist-white); /* Light background color */
  padding: 0 20px; /* Add some horizontal padding for better spacing */
  overflow: hidden; /* Prevent scroll */
}

.signup-visual-column {
  flex: 1 1 45%; /* Flex for flexible and responsive layout */
  position: relative;
  overflow: hidden;
  background-color: var(--mist-white); /* Light background color */
  display: flex;
  justify-content: center; /* Center image horizontally */
  align-items: center; /* Center image vertically */
  padding-right: 20px; /* Add spacing around the image */
}

.signup-visual-column img {
  max-width: 100%; /* Full width to fit the column */
  max-height: 80vh; /* Limit the height of the image */
  object-fit: contain; /* Ensure the image scales properly */
  opacity: 1;
}


.signup-form-column {
  flex: 1 1 45%; /* Flex for flexible and responsive layout */
  background: #fff; /* White background for the form */
  border-radius: 12px; /* Slight border radius for a smooth look */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); /* Add soft shadow for depth */
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Ensure form-card doesn't have extra margins/padding that create gaps */
.form-card {
  background: #fff;
  color: var(--slate-ink);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--cloud-line);
  max-width: 480px; /* Constrain the form width */
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--cloud-line);
  border-radius: 10px;
  background: #fff;
  outline: none;
}

input:focus {
  border-color: var(--ocean-tech-blue)
}

.radio-row {
  display: flex;
  gap: 14px
}

.terms {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 4px 0 10px;
  /* Prevent wrapping on small desktop screens */
  white-space: nowrap;
}

.alert {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid transparent
}

.alert-error {
  background: #F8D7DA;
  border-color: #f5c2c7;
  color: #842029
}

.text-red-600 {
  color: #dc2626
}

.border-red-500 {
  border-color: #ef4444 !important
}

/* Thank you */
.thankyou-wrap {
  min-height: calc(100dvh - 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  text-align: center
}

.thankyou-wrap h2 {
  margin: 0 0 8px;
  color: var(--deep-marine)
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--cloud-line);
  padding: 16px 0;
  background: #fff
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700
}

.footer-logo {
  height: 28px;
  width: auto
}

.bg-deep-marine {
  background: var(--deep-marine);
}

.text-white {
  color: #fff;
}

.hover\:text-trade-gold:hover {
  color: var(--trade-gold);
}


/* Responsive */
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr
  }

  .faq {
    grid-template-columns: 1fr
  }

  .hero-title {
    font-size: 28px
  }

  .nav-right {
    display: none
  }

  /* Mobile: stack columns */
  .signup-section {
    flex-direction: column;
  }

  .signup-visual-column {
    width: 100%; /* Full width for mobile */
    height: auto;
    justify-content: center;
  }

  .signup-form-column {
    width: 100%;
    padding: 24px 16px;
  }
}
