:root {
  --ink: #2b2b2b;
  --ink-soft: #5c5b57;
  --paper: #fbf8f1;
  --paper-deep: #f3efe3;
  --olive: #9cbb3f;
  --olive-tint: #eef3d8;
  --sky: #5fb2d6;
  --sky-tint: #e2f2f8;
  --amber: #f0932b;
  --amber-tint: #fdebd6;
  --line: #e4dfd0;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
.display-font {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
a {
  text-decoration: none;
}
.eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.text-soft {
  color: var(--ink-soft);
}
/* ---------- Buttons ---------- */
.btn-ink {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}
.btn-ink:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.btn-outline-ink {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.18s ease;
}
.btn-outline-ink:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}
/* ---------- Navbar ---------- */
.navbar {
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.navbar-brand img {
  height: 60px;
}
.nav-link {
  font-weight: 600;
  color: var(--ink) !important;
  margin: 0 0.6rem;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.2s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.c-olive {
  background: linear-gradient(180deg, #b3d158, #9cbb3f);
}
.c-sky {
  background: linear-gradient(180deg, #7bc3e2, #5fb2d6);
}
.c-amber {
  background: linear-gradient(180deg, #f4a94f, #f0932b);
}
.c-cream {
  background: linear-gradient(180deg, #f6f1e0, #ece2c4);
}
/* ---------- Hero ---------- */
.hero {
  padding: 6.5rem 0 5rem;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero h1 {
  font-size: 3.1rem;
  line-height: 1.08;
}
@media (max-width: 767px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}
.hero-usp-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
  max-width: 480px;
}
.hero-usp-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}
.hero-usp-list li i {
  color: var(--olive);
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .hero-usp-list {
    grid-template-columns: 1fr;
  }
}
/* ---------- Section rule / divider spines strip ---------- */
.rule-strip {
  display: flex;
  gap: 6px;
  height: 14px;
  margin: 0 auto;
}
.rule-strip i {
  display: block;
  width: 34px;
  border-radius: 3px 3px 0 0;
}
section {
  padding: 5.5rem 0;
}
.section-tight {
  padding: 3.5rem 0;
}
.content-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(43, 43, 43, 0.12);
  display: block;
}
.card-token {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.9rem 1.7rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.card-token:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(43, 43, 43, 0.08);
}
.tab {
  display: inline-block;
  width: 34px;
  height: 10px;
  border-radius: 3px;
  margin-bottom: 1rem;
}
/* USP row */
.usp-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  height: 100%;
  font-weight: 600;
  font-size: 0.95rem;
}
.usp-item .dot {
  width: 10px;
  height: 26px;
  border-radius: 4px;
  flex: 0 0 auto;
}
/* CTA banners */
.cta-banner {
  background: var(--ink);
  color: var(--paper);
  border-radius: 20px;
  padding: 3.2rem 2.8rem;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  color: var(--paper);
}
.cta-banner .deco {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--amber), transparent 70%);
  opacity: 0.35;
}
/* Process */
.process-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  height: 100%;
}
.process-num {
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  opacity: 0.18;
  margin-bottom: 0.4rem;
}
/* FAQ */
.accordion-button {
  font-weight: 600;
  background: #fff;
  color: var(--ink);
}
.accordion-button:not(.collapsed) {
  background: var(--paper-deep);
  color: var(--ink);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-item {
  border: 1px solid var(--line);
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 12px;
}
.accordion-button::after {
  filter: none;
}
/* Signup form */
.signup-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.4rem;
  box-shadow: 0 20px 50px rgba(43, 43, 43, 0.08);
}
.signup-panel-compact {
  padding: 1.7rem 1.6rem;
}
.signup-panel-compact .form-label {
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}
.signup-panel-compact .form-control,
.signup-panel-compact .form-select {
  padding: 0.55rem 0.8rem;
  font-size: 0.9rem;
}
.signup-panel-compact .row.g-2 > * {
  margin-bottom: 0.15rem;
}
.form-control,
.form-select {
  border-radius: 10px;
  border: 1.5px solid var(--line);
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px var(--sky-tint);
}
label.form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
/* ---------- Dark quote-request section ---------- */
.quote-section {
  background: #0d0d0d;
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(240, 147, 43, 0.18),
    transparent 70%
  );
}
.quote-section .logo {
  width: 270px;
}
.quote-copy h2 {
  color: #fff;
  font-size: 2.6rem;
}
.quote-copy .accent-bar {
  display: inline-block;
  background: linear-gradient(90deg, var(--amber), #f0b93b);
  color: #1a1400;
  font-family: "Fraunces", serif;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 8px;
  margin: 0.3rem 0 1.2rem;
}
.quote-copy p {
  color: #c9c6bd;
}
.quote-copy .btn-amber {
  background: linear-gradient(135deg, var(--amber), #f0b93b);
  color: #241a00;
  border: none;
  font-weight: 700;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
}
.quote-copy .btn-amber:hover {
  filter: brightness(1.05);
  color: #241a00;
}
.quote-copy .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
}
.quote-copy .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.quote-copy .quote-contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
}
.quote-copy .quote-contact-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), #f0b93b);
  color: #241a00;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.quote-copy .quote-contact-item:hover {
  color: var(--amber);
}
.quote-card {
  background: #fdfcf9;
  border-radius: 22px;
  padding: 2.4rem 2.2rem;
  box-shadow:
    0 0 0 1px rgba(240, 147, 43, 0.15),
    0 0 60px rgba(240, 147, 43, 0.25),
    0 30px 60px rgba(0, 0, 0, 0.5);
}
.quote-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.quote-card .quote-note {
  color: var(--ink-soft);
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 1.6rem;
}
.icon-field {
  position: relative;
  margin-bottom: 1rem;
}
.icon-field > i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  font-size: 1rem;
  pointer-events: none;
}
.icon-field .form-control,
.icon-field .form-select {
  padding-left: 2.6rem;
  border-radius: 999px;
  background-color: #fff;
}
.icon-field textarea.form-control {
  border-radius: 18px;
  padding-top: 0.9rem;
}
.icon-field.textarea > i {
  top: 1.1rem;
  transform: none;
}
.quote-card .btn-quote {
  width: 100%;
  background: linear-gradient(90deg, var(--amber), #f0b93b);
  color: #241a00;
  border: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.quote-card .btn-quote:hover {
  filter: brightness(1.05);
  color: #241a00;
}
footer {
  background: #0d0d0d;
  color: #a9a598;
  padding: 2.4rem 0 2rem;
  border-top: 1px solid #ffffff;
}
footer a {
  color: #f3efe3;
}
footer .navbar-brand img {
  height: 34px;
  filter: brightness(0) invert(1);
}
footer .footer-legal-links a {
  color: #a9a598;
  font-weight: 600;
  margin-left: 1.4rem;
}
footer .footer-legal-links a:hover {
  color: #fff;
}
footer .footer-disclaimer {
  font-size: 0.85rem;
  color: #8a8780;
  line-height: 1.6;
}
footer .footer-disclaimer strong {
  color: #c9c6bd;
}
.badge-soft {
  background: var(--olive-tint);
  color: #5c6f22;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}
@media (prefers-reduced-motion: reduce) {
  .spine,
  .card-token,
  .btn-ink,
  .btn-outline-ink {
    transition: none;
  }
  .spine:hover {
    transform: none;
  }
}
a:focus-visible,
button:focus-visible,
.btn-ink:focus-visible,
.btn-outline-ink:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}
.thankyouPage #thankyou {
  width: 40%;
  margin: 0 auto;
}
.errorPage #notFound {
  width: 60%;
  margin: 0 auto;
}