/* =========================================================
   1DayCapital — clean responsive stylesheet
   Palette & fonts preserved from global.css tokens
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px; /* offset for sticky header when jumping to sections */
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: -45px;
  font-family: var(--font-inter);
  color: var(--color-gray);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

p {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--color-yellowgreen);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.section {
  padding: clamp(56px, 8vw, 110px) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-darkslategray);
}
.eyebrow img {
  width: 22px;
  height: auto;
}
.eyebrow.eyebrow-light {
  color: var(--color-beige);
}
.eyebrow.eyebrow-light img {
  filter: brightness(0) saturate(100%) invert(92%) sepia(10%) saturate(400%)
    hue-rotate(40deg) brightness(102%);
}

.display-heading {
  font-family: var(--font-dm-serif-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.body-text {
  font-size: 16px;
  color: #4a4a4a;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-pill {
  padding: 12px 12px 12px 26px;
  border-radius: var(--br-120);
  color: var(--color-white);
  background: linear-gradient(90deg, var(--color-darkslategray), var(--color-yellowgreen));
  box-shadow: 0 8px 24px rgba(38, 92, 64, 0.28);
}
.btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(38, 92, 64, 0.38);
}
.btn-pill .btn-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-white);
  flex-shrink: 0;
}
.btn-pill .btn-arrow img {
  width: 16px;
}
.btn-on-dark {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  box-shadow: none;
}
.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.btn-gradient {
  justify-content: center;
  padding: 16px 24px;
  border-radius: var(--br-120);
  color: var(--color-white);
  background: linear-gradient(90deg, var(--color-darkslategray), var(--color-yellowgreen));
  box-shadow: 0 8px 22px rgba(38, 92, 64, 0.3);
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(38, 92, 64, 0.4);
}
.btn-block {
  width: 100%;
}

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header {
  position: sticky;
  top: 45px;
  z-index: 999;
  padding: 16px 0;

  transition: background 0.25s ease, padding 0.25s ease;
}
.site-header.scrolled {
  background: rgba(15, 28, 20, 0.082);
  padding: 10px 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 90px;
  height: 90px;
  object-fit: contain;
}
.brand-name {
  font-family: var(--font-dm-serif-display);
  font-size: 22px;
  color: var(--color-white);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
  transition: color 0.18s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-yellowgreen);
  transition: width 0.22s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-white);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.apply-btn {
  font-size: 14px;
  padding: 8px 8px 8px 20px;
}
.apply-btn .btn-arrow {
  width: 32px;
  height: 32px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin-inline: auto;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  isolation: isolate;
  margin-top: -78px; /* let hero sit under transparent header */
  padding-top: 78px;
  overflow: hidden;
  color: var(--color-white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("bg.png") center / cover no-repeat;
}



.hero-person {
  position: absolute;
  bottom: 0;
  left: 58%;
  transform: translateX(-340px);
  height: 86%;
  width: auto;
  z-index: -1;
  object-fit: contain;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  min-height: 640px;
  padding-block: 70px 90px;
}
.hero-copy {
  position: relative;
  max-width: 560px;
}
.hero-swoosh {
  width: 120px;
  margin-bottom: 18px;
  opacity: 0.9;
}
.hero-title {
  font-family: var(--font-dm-serif-display);
  font-weight: 400;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.hero-text {
  margin-top: 22px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
}
.hero-copy .btn {
  margin-top: 30px;
}

/* Quote card */
.quote-card {
  background: var(--color-white);
  color: var(--color-gray);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  width: 100%;
  max-width: 420px;
  margin-left: auto;
}
.quote-title {
  font-family: var(--font-dm-serif-display);
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 22px;
}
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote-form input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-inter);
  font-size: 15px;
  color: var(--color-gray);
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  background: #fafafa;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.quote-form input::placeholder {
  color: #9a9a9a;
}
.quote-form input:focus {
  outline: none;
  border-color: var(--color-darkslategray);
  box-shadow: 0 0 0 3px rgba(38, 92, 64, 0.15);
}
.quote-form .btn {
  margin-top: 6px;
}

/* =========================================================
   Stat band
   ========================================================= */
.stat-band {

    background: linear-gradient(
        4deg,
        #111111 0%,
        #2a3a18 40%,
        #5f8f35 70%,
        #9FCE50 100%);
color: var(--color-white);
}
.stat-band-inner {
  display: flex;
     align-items: flex-start;
    justify-content: flex-start;
  gap: 20px;
  padding: 30px 0;
  flex-wrap: wrap;
  text-align: center;
}
.stat-value {
  font-family: var(--font-dm-serif-display);
  font-weight: 400;
  font-size: 26px;
}
.stat-label {
  font-weight: 600;
  font-size: 15px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.9);
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.4);
}

/* =========================================================
   About
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-copy .display-heading {
  margin-top: 18px;
  font-size: clamp(26px, 3vw, 38px);
}
.about-copy .body-text {
  margin-top: 22px;
}
.about-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  aspect-ratio: 3 / 4;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.about-media img:first-child {
  margin-top: 40px;
}

/* =========================================================
   Why 1DayCapital
   ========================================================= */
.why {
  background: #f6f8f1;
}
.why-head {
  max-width: 760px;
}
.why-title {
  margin-top: 16px;
  font-size: clamp(28px, 3.4vw, 44px);
}
.why-sub {
  margin-top: 18px;
  max-width: 600px;
}
.why-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #E1E8CD;
  border: 1px solid #e6ebdc;
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-yellowgreen);
  box-shadow: 0 20px 40px rgba(38, 92, 64, 0.12);
}
.why-num {
  font-family: var(--font-dm-serif-display);
  font-size: 40px;
  color: var(--color-yellowgreen);
  line-height: 1;
}
.why-card h3 {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 700;
}
.why-card p {
  margin-top: 12px;
  color: #565656;
  font-size: 15px;
}

/* =========================================================
   Financing Options
   ========================================================= */
.financing {
  position: relative;
 background: linear-gradient(
        260deg,
        #111111 0%,
        #2a3a18 40%,
        #5f8f35 70%,
        #9FCE50 100%);  color: var(--color-white);
}
.financing-head {
  max-width: 760px;
}
.financing-title {
  margin-top: 16px;
  font-size: clamp(28px, 3.6vw, 46px);
}
.financing-sub {
  margin-top: 18px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
}
.finance-list {
  margin-top: 50px;
  display: grid;
  gap: 50px;
}
.finance-card {
    display: grid;
    grid-template-columns: 120px 400px 1fr;
    align-items: center;
    justify-items: center;
    gap: 28px;

    min-height: 200px;
    padding: 32px 40px;

    overflow: hidden;
    background: #fff;
    color: var(--color-gray);
    border-radius: 22px;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.finance-num {
    align-self: center;
    justify-self: center;
}

.finance-text {
    align-self: center;
    justify-self: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.finance-thumb {
    width: 100%;
    height: 100%;
    align-self: center;
}


.finance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.25);
}
.finance-num {
  font-family: var(--font-dm-serif-display);
  font-size: clamp(54px, 7vw, 86px);
  line-height: 1;
  color: var(--color-yellowgreen);
}
.finance-text h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
}
.finance-text p {
  margin-top: 8px;
  color: #5a5a5a;
  font-size: 15px;
}
.finance-thumb {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 29 / 10;
}
.finance-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.finance-card:hover .finance-thumb img {
  transform: scale(1.06);
}

/* =========================================================
   How It Works
   ========================================================= */
.how-head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.how-head .eyebrow {
  justify-content: center;
}
.how-title {
  margin-top: 16px;
  font-size: clamp(28px, 3.4vw, 44px);
}
.how-sub {
  margin-top: 14px;
}
.steps {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
}
.step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  border-radius: 50%;
  font-family: var(--font-dm-serif-display);
  font-size: 30px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-darkslategray), var(--color-yellowgreen));
  box-shadow: 0 12px 26px rgba(38, 92, 64, 0.25);
}
.step h3 {
  font-size: 21px;
  font-weight: 700;
}
.step p {
  margin-top: 12px;
  color: #565656;
  font-size: 15px;
  max-width: 280px;
  margin-inline: auto;
}
.step-link {
  align-self: flex-start;
  margin-top: 38px;
  width: 100%;
  min-width: 40px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-yellowgreen) 0 10px,
    transparent 10px 18px
  );
}

p,a,ul,li {
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 400;
}

span {
  font-family: var(--font-montserrat);
  
}
/* =========================================================
   FAQ
   ========================================================= */
.faq {
  background: #f6f8f1;
}
.faq-head {
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
}
.faq-title {
  margin-top: 16px;
  font-size: clamp(28px, 3.4vw, 44px);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border-radius: 16px;
  background: #e6e6e6;
  overflow: hidden;
  transition: background 0.25s ease;
}
.faq-item[open] {
  background: linear-gradient(120deg, var(--color-yellowgreen), #7fb53e);
  color: #15331f;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-weight: 700;
  font-size: 17px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #15331f;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-white);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-icon::before {
  width: 12px;
  height: 2px;
}
.faq-icon::after {
  width: 2px;
  height: 12px;
}
.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-body {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.65;
  max-width: 900px;
}

/* =========================================================
   Footer / CTA
   ========================================================= */
.site-footer {
 background: linear-gradient(
        210deg,
        #111111 0%,
        #2a3a18 40%,
        #5f8f35 70%,
        #9FCE50 100%);  color: var(--color-white);

padding-top: 40px;
  padding-bottom: 0;
}
.footer-card {
  position: relative;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  
  color: var(--color-white);
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 36px;
}
.footer-intro-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  max-width: 340px;
}
.footer-intro .btn {
  margin-top: 26px;
}
.footer-col h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.lastfooter{

  background-color: #fff !important;
}
.footer-col a,
.footer-contact p {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  margin-bottom: 10px;
  transition: color 0.18s ease;
}
.footer-col a:hover {
  color: var(--color-yellowgreen);
}
.footer-hours-title {
  margin-top: 22px;
}
.footer-wordmark {
  position: relative;
  margin-top: 50px;
  text-align: center;
}
.footer-wordmark img {
  width: 100%;
max-height: 200px;
    padding-bottom: 30px;
      object-fit: contain;
  opacity: 1;
}
.footer-wordmark span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end center;
  font-family: var(--font-dm-serif-display);
  font-size: clamp(48px, 14vw, 170px);
  line-height: 1;
  color: var(--color-white);
  letter-spacing: -0.02em;
}
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 20px;
  flex-wrap: wrap;
}
.copyright {
  font-size: 14px;
  color: #555;
}
.copyright strong {
  color: var(--color-darkslategray);
}
.footer-social img {
  width: 30px;
  height: 30px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .hero-person {
    transform: translateX(-300px);
    opacity: 0.55;
  }
  .finance-card {
    grid-template-columns: 96px 1fr 180px;
    gap: 20px;
  }
}

@media (max-width: 900px) {
  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }
  .apply-btn {
    display: none;
  }
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 100px 28px 40px;
    background: #0d1a12;
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0.3s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    visibility: hidden;
    z-index: 110;
  }
  .main-nav.open {
    transform: translateX(0);
    visibility: visible;
  }
  .nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-scrim.open {
    opacity: 1;
    visibility: visible;
  }
  .main-nav a {
    width: 100%;
    padding: 14px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .main-nav a::after {
    display: none;
  }

  /* Hero stacks */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: 0;
    padding-block: 56px 70px;
  }
  .hero-person {
    display: none;
  }
  .hero-bg::after {
    /* background: linear-gradient(
      180deg,
      rgba(141, 142, 141, 0.321),
      rgba(8, 18, 12, 0.75)
      ); */
    }
  .quote-card {
    margin-inline: auto;
    max-width: 480px;
  }

  /* About stacks */
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-media img:first-child {
    margin-top: 0;
  }

  /* Why: 1 col */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Finance cards stack */
  .finance-card {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "num text"
      "thumb thumb";
    gap: 16px 22px;
  }
  .finance-num {
    grid-area: num;
  }
  .finance-text {
    grid-area: text;
  }
  .finance-thumb {
    grid-area: thumb;
    width: 100%;
  }

  /* Steps stack vertically */
  .steps {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 440px;
    margin-inline: auto;
  }
  .step-link {
    width: 2px;
    height: 36px;
    min-width: 0;
    margin: 0 auto;
    background: repeating-linear-gradient(
      180deg,
      var(--color-yellowgreen) 0 10px,
      transparent 10px 18px
    );
  }

  /* Footer stacks */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 32px, 1240px);
  }
  .stat-band-inner {
    flex-direction: column;
    gap: 22px;
  }
  .stat-divider {
    width: 56px;
    height: 1px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bar {
    justify-content: center;
    text-align: center;
  }
  .quote-card {
    padding: 24px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}