@charset "utf-8";
/* CSS Document */

@charset "utf-8";
/* CSS Document */

:root {
  /* Light theme with dark yellow primary */
  --bg: #ffffff;
  --surface: #F7F9FC;
  --muted-surface: #ffffff;
  --text: #0E1325;
  --muted: #5A6B86;
  --primary: #feeb1f;     /* dark yellow/gold */
  --primary-2: #bcb400;   /* deeper gold for gradients */
  --accent: #B7791F;      /* warm accent */
  --border: rgba(16, 24, 40, 0.10);
  --ring: rgba(200, 144, 0, 0.35);
  --shadow: 0 8px 30px rgba(16, 24, 40, 0.06);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans";
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  line-height: 1.15;
  margin: 0 0 .5rem;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================= */
/* Header / Nav */
/* ============================= */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(1.2) blur(8px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand .dot {
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 3px rgba(200, 144, 0, 0.20);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: #344054;
  font-weight: 600;
  font-size: .98rem;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav-links a:hover {
  background: #FFF6D6;
  color: #3D2E00;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid rgba(200, 144, 0, 0.25);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: var(--shadow);
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(200, 144, 0, 0.25);
}

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  color: #111827;
  padding: 8px;
  border-radius: 10px;
}

.hamburger:hover {
  background: #FFF6D6;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    right: 3px;
    top: 72px;
    padding: 0px;
    flex-direction: column;
    background: #f4c811;
    border: 1px solid var(--border);
    border-radius: 14px;
    width: min(92vw, 243px);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: inline-flex;
  }

  .nav-links a {
    color: #344054;
    font-weight: 600;
    font-size: 18px;
    padding: 3px 12px;
    border-radius: 10px;
  }
}

/* ============================= */
/* Hero */
/* ============================= */

.hero {
  position: relative;
  overflow: clip;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(900px 400px at 10% -10%, rgba(200, 144, 0, 0.16), transparent 60%),
    radial-gradient(700px 350px at 90% 0%, rgba(255, 187, 0, 0.14), transparent 55%),
    linear-gradient(180deg, #ffffff, #F7F9FC 60%);
}

.hero .inner {
  padding: clamp(56px, 8vw, 96px) 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.kicker {
  color: #baac11;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}

.hero h1 strong {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #4d4d4d;
  border: 0;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 6px 24px rgba(200, 144, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(200, 144, 0, 0.35);
}

.btn-ghost {
  background: #fff;
  border: 1px solid var(--border);
  color: #0E1325;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
}

.btn-ghost:hover {
  background: #FFF6D6;
}

.hero-card {
  background: var(--muted-surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: .25rem;
}

.hero-card p {
  font-size: .95rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 900px) {
  .hero .inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================= */
/* Logos strip */
/* ============================= */

.logos {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #FBFDFF;
}

.logos .row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  opacity: .8;
}

.logo {
  height: 22px;
  filter: brightness(0) saturate(100%) invert(9%) sepia(10%) saturate(997%) hue-rotate(183deg) brightness(93%) contrast(89%);
  opacity: .55;
}

@media (max-width: 900px) {
  .logos .row {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 16px;
  }
}

/* ============================= */
/* Sections */
/* ============================= */

.section {
  padding: clamp(48px, 8vw, 70px) 0;
}

.section.alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 28px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 1000px) {
  .features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.card {
  padding: 22px;
  background: var(--muted-surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgb(184 181 0 / 38%), rgb(223 228 0 / 65%));
  border: 1px solid var(--border);
  margin-bottom: 10px;
  color: #6a6a6a;
}

.pill {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #3D2E00;
  background: #fffb18;
}

/* ============================= */
/* Two-up feature */
/* ============================= */

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 900px) {
  .two {
    grid-template-columns: 1fr;
  }
}

/* ============================= */
/* CTA band */
/* ============================= */

.cta-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #FDF7E8, #ffffff);
}

.cta-flex {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  align-items: center;
  gap: 16px;
}

@media (max-width: 900px) {
  .cta-flex {
    grid-template-columns: 1fr;
  }
}

/* ============================= */
/* Footer */
/* ============================= */

footer {
  padding: 28px 0;
  color: #475467;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.foot a {
  color: #475467;
}

.foot a:hover {
  color: #111827;
}

/* ============================= */
/* Forms */
/* ============================= */

input,
textarea {
  background: #fff;
  border: 1px solid var(--border);
  color: #0E1325;
  border-radius: 12px;
  padding: 12px 14px;
  width: 100%;
}

input:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
  border-color: rgba(200, 144, 0, 0.45);
}

/* ============================= */
/* Checkboxes */
/* ============================= */

input[type="checkbox"] {
  /* Reset inherited styles */
  /*appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;*/
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  /*position: relative;*/
  background: #fff;
  transition: all 0.2s ease;
}

input[type="checkbox"]:checked {
  background: #baac11; /* your brand yellow */
  border-color: #baac11;
}

input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 0px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--ring);
}


/* ============================= */
/* Focus styles */
/* ============================= */

:where(a, button, [role="button"]) {
  outline: none;
}

:where(a, button, [role="button"]):focus-visible {
  box-shadow: 0 0 0 4px var(--ring);
}

/* ============================= */
/* Hero image (mobile full screen) */
/* ============================= */

#image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures it covers without distortion */
  display: block;
}

/* soft dark overlay for contrast */
#image::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(14,19,37,.25), rgba(14,19,37,.55)); */
  pointer-events: none;
}

/* centered slogan */
#image .slogan {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
  text-align: center;
}

#image .slogan h1 {
  margin: 0;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4.8vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 1);
}

/* optional: highlight key words in brand color */
#image .slogan strong {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
