:root {
  --green: #3C8558;
  --green-dark: #306A46;
  --yellow: #F7D334;
  --red: #F55B4B;
  --purple: #8C68EA;
  --white: #FFFFFF;
  --off-white: #F3F3F3;
  --gray-mid: #9D9D9D;
  --gray-dark: #6E6C6D;
  --black: #1C1412;
  --line: #E8E8E8;
}

/* FAQ page */
.nav.nav-light {
  background: var(--white);
  border-bottom: 1px solid var(--off-white);
}

.nav.nav-light .logo-word {
  color: var(--black);
}

.nav.nav-light .nav-links a {
  color: var(--gray-dark);
}

.nav.nav-light .nav-links a:hover {
  color: var(--black);
}

.nav.nav-light .nav-links a.is-active {
  color: var(--black);
}

.nav.nav-light .nav-cta {
  background: var(--black);
  color: var(--white);
}

.faq-hero {
  background: var(--white);
  border-bottom: 1px solid var(--off-white);
  padding: 72px 0 64px;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-mid);
  margin-bottom: 20px;
}

.faq-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: var(--green);
}

.faq-hero h1 {
  margin: 0 0 16px;
  font-size: 52px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -2px;
  line-height: 1;
}

.faq-hero h1 span {
  color: var(--green);
}

.faq-hero-subtitle {
  margin: 0 0 40px;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-dark);
}

.faq-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-tab {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-dark);
  cursor: pointer;
  transition: all 0.15s ease;
}

.hero-tab:hover {
  border-color: var(--green);
  color: var(--green);
}

.hero-tab.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.faq-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 48px 80px;
}

.faq-section {
  margin-bottom: 56px;
}

.faq-section:last-child {
  margin-bottom: 0;
}

.faq-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
}

.faq-section-label::before {
  content: "";
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: var(--green);
}

.faq-item {
  border-bottom: 1px solid var(--off-white);
}

.faq-item.first {
  border-top: 1px solid var(--off-white);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
}

.faq-q h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--off-white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--black);
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.2s ease, stroke 0.2s ease;
}

.faq-a {
  display: none;
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.8;
  padding-bottom: 22px;
}

.faq-item.open .faq-icon {
  background: var(--green);
}

.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
  stroke: var(--white);
}

.faq-item.open .faq-a {
  display: block;
}

.faq-cta-wrap {
  background: var(--off-white);
  padding: 72px 48px;
}

.faq-cta {
  background: var(--black);
  border-radius: 16px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.faq-cta-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.04;
  position: absolute;
  right: -50px;
  top: -60px;
  pointer-events: none;
}

.faq-cta-left,
.faq-cta-right {
  position: relative;
  z-index: 2;
}

.faq-cta-eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.25);
}

.faq-cta h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--white);
}

.faq-cta h2 span {
  color: var(--yellow);
}

.faq-cta p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.4);
}

.faq-cta-btn {
  background: var(--yellow);
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hiw-hero {
  background: var(--green);
  width: 100%;
  padding: 80px 0 88px;
  position: relative;
  overflow: hidden;
}

.hiw-hero-c1,
.hiw-hero-c2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hiw-hero-c1 {
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.05);
  right: -60px;
  top: -60px;
}

.hiw-hero-c2 {
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.04);
  left: 80px;
  bottom: -40px;
}

.hiw-hero-inner {
  position: relative;
  z-index: 2;
}

.hiw-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.hiw-hero-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.hiw-hero h1 {
  margin: 0 0 16px;
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
}

.hiw-hero h1 span {
  color: var(--yellow);
}

.hiw-hero p {
  margin: 0;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.hiw-triangle {
  height: 48px;
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.hiw-triangle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -1px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.hiw-steps {
  background: var(--white);
  padding: 80px 0;
}

.hiw-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.hiw-step-last {
  margin-bottom: 0;
}

.hiw-step--reverse {
  direction: rtl;
}

.hiw-step--reverse > * {
  direction: ltr;
}

.hiw-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 80px;
}

.hiw-divider span {
  flex: 1;
  height: 1px;
  background: var(--off-white);
}

.hiw-divider i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.hiw-step-numrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hiw-step-num {
  font-size: 72px;
  font-weight: 900;
  color: var(--off-white);
  letter-spacing: -4px;
  line-height: 1;
}

.hiw-step-tag {
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 100px;
}

.hiw-step-text h2 {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1px;
  line-height: 1.1;
}

.hiw-step-text p {
  margin: 0 0 24px;
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.75;
}

.hiw-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hiw-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--black);
}

.hiw-bullets li span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 6px;
  flex-shrink: 0;
}

.hiw-step-visual {
  background: transparent;
  border-radius: 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 0;
}

.hiw-step-visual img {
  width: 76%;
  max-width: 300px;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 22px 52px rgba(28, 20, 18, 0.2);
}

.hiw-visual-placeholder {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  background: var(--line);
  display: grid;
  place-items: center;
  font-size: 12px;
  color: var(--gray-mid);
}

.hiw-good {
  background: var(--off-white);
  padding: 64px 0;
}

.hiw-good-label {
  margin: 0 0 32px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-mid);
}

.hiw-good-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hiw-good-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
}

.hiw-good-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--off-white);
  margin-bottom: 14px;
  display: grid;
  place-items: center;
}

.hiw-good-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hiw-good-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.hiw-good-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-dark);
}

.hiw-cta-wrap {
  background: var(--white);
  padding: 64px 48px;
}

.hiw-cta {
  background: var(--black);
  border-radius: 16px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hiw-cta-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.04;
  position: absolute;
  right: -50px;
  top: -60px;
  pointer-events: none;
}

.hiw-cta-left,
.hiw-cta-right {
  position: relative;
  z-index: 2;
}

.hiw-cta-eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.25);
}

.hiw-cta h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--white);
}

.hiw-cta h2 span {
  color: var(--yellow);
}

.hiw-cta p {
  margin: 12px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.55;
}

.hiw-cta-btn {
  background: var(--yellow);
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.legal-page {
  background: var(--white);
  width: 100%;
}

.legal-hero {
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 44px;
}

.legal-eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--gray-mid);
}

.legal-hero h1 {
  margin: 0 0 12px;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--black);
  line-height: 1.1;
}

.legal-meta {
  margin: 0;
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.7;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 48px 72px;
}

.legal-content h2 {
  margin: 34px 0 12px;
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.6px;
}

.legal-content h3 {
  margin: 24px 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}

.legal-content p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.78;
  color: var(--gray-dark);
}

.legal-content ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-dark);
}

.legal-content strong {
  color: var(--black);
}

.contact-hero {
  background: var(--yellow);
  width: 100%;
  padding: 80px 0 88px;
  position: relative;
  overflow: hidden;
}

.contact-hero-c1,
.contact-hero-c2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contact-hero-c1 {
  width: 260px;
  height: 260px;
  background: rgba(28, 20, 18, 0.05);
  right: -50px;
  top: -50px;
}

.contact-hero-c2 {
  width: 140px;
  height: 140px;
  background: rgba(28, 20, 18, 0.04);
  left: 100px;
  bottom: -40px;
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(28, 20, 18, 0.45);
}

.contact-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: rgba(28, 20, 18, 0.3);
}

.contact-hero h1 {
  margin: 0 0 16px;
  font-size: 52px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -2px;
  line-height: 1;
}

.contact-subtitle {
  margin: 0;
  max-width: 440px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(28, 20, 18, 0.6);
}

.contact-badge {
  flex-shrink: 0;
  background: var(--black);
  border-radius: 16px;
  padding: 24px 28px;
  text-align: center;
}

.contact-badge-label {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
}

.contact-badge-num {
  margin: 0;
  font-size: 36px;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -1.5px;
  line-height: 1;
}

.contact-badge-unit {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.contact-triangle {
  height: 48px;
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}

.contact-triangle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -1px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.contact-cards-section {
  background: var(--white);
  padding: 72px 0;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.contact-card {
  border-radius: 16px;
  padding: 32px;
  border: 1.5px solid var(--off-white);
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.contact-card-primary {
  background: var(--black);
  border-color: var(--black);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  margin-bottom: 20px;
  background: var(--off-white);
  display: grid;
  place-items: center;
  color: var(--green);
}

.contact-card-icon-primary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card-label {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-mid);
}

.contact-card-primary .contact-card-label {
  color: rgba(255, 255, 255, 0.4);
}

.contact-card h2 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--black);
}

.contact-card-primary h2 {
  color: var(--white);
}

.contact-card-desc {
  margin: 0 0 24px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray-dark);
  flex: 1;
}

.contact-card-primary .contact-card-desc {
  color: rgba(255, 255, 255, 0.5);
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  border-radius: 8px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: var(--off-white);
  color: var(--black);
}

.contact-card-link-primary {
  background: var(--yellow);
  color: var(--black);
}

.contact-faq-links {
  background: var(--off-white);
  padding: 64px 0;
}

.contact-faq-eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-mid);
}

.contact-faq-links h2 {
  margin: 0 0 32px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--black);
}

.contact-topics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-topic {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1.5px solid transparent;
  transition: border-color 0.15s ease;
}

.contact-topic:hover {
  border-color: var(--green);
}

.contact-topic-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-topic-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--off-white);
  display: grid;
  place-items: center;
  color: var(--green);
}

.contact-topic-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-topic-title {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.contact-topic-subtitle {
  margin: 0;
  font-size: 12px;
  color: var(--gray-mid);
}

.contact-topic-arrow {
  font-size: 16px;
  color: var(--gray-mid);
}

.contact-disclaimer {
  background: var(--white);
  padding: 56px 0;
}

.contact-disclaimer-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.contact-disclaimer-label {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-mid);
}

.contact-disclaimer-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-dark);
}

.contact-disclaimer-text strong {
  color: var(--black);
  font-weight: 700;
}

@media (max-width: 767px) {
  .faq-hero {
    padding: 48px 0 40px;
  }

  .faq-hero h1 {
    font-size: 38px;
  }

  .faq-content {
    padding: 48px 24px 64px;
  }

  .faq-cta-wrap {
    padding: 72px 24px;
  }

  .faq-cta {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }

  .faq-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .legal-hero {
    padding: 44px 0 36px;
  }

  .legal-hero h1 {
    font-size: 32px;
  }

  .legal-content {
    padding: 40px 24px 56px;
  }

  .legal-content h2 {
    font-size: 22px;
  }

  .legal-content h3 {
    font-size: 17px;
  }

  .contact-hero {
    padding: 56px 0 64px;
  }

  .contact-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-hero h1 {
    font-size: 38px;
  }

  .contact-badge {
    width: 100%;
  }

  .contact-cards-grid,
  .contact-topics-grid {
    grid-template-columns: 1fr;
  }

  .contact-disclaimer-inner {
    padding: 0 24px;
  }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'SF Pro Display', Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--black);
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 48px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-mid);
  margin-bottom: 14px;
}

.h1 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
}

.h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  display: block;
  height: 44px;
  width: auto;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.logo-word {
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.button {
  border: none;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  white-space: nowrap;
}

.offer-card {
  background: var(--white);
  border: 1.5px solid var(--off-white);
  border-radius: 12px;
  padding: 14px 16px;
  min-width: 155px;
  box-shadow: 0 12px 40px rgba(28, 20, 18, 0.25);
}

.oc-lender {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-mid);
  margin-bottom: 4px;
}

.oc-amount {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1;
  color: var(--black);
}

.oc-detail {
  font-size: 10px;
  color: var(--gray-mid);
  margin-top: 3px;
}

.oc-tag {
  margin-top: 8px;
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: 0.4px;
}

.tag-best { background: var(--green); color: var(--white); }
.tag-fast { background: var(--yellow); color: var(--black); }
.tag-new { background: var(--purple); color: var(--white); }
.tag-alt { background: var(--red); color: var(--white); }

.phone {
  border-radius: 20px;
  border: 1px solid #EBEBEB;
  box-shadow: 0 20px 60px rgba(28, 20, 18, 0.15);
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-header {
  min-height: 56px;
  padding: 16px 16px 14px;
  color: var(--white);
}

.phone-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.phone-subtitle {
  margin-top: 2px;
  font-size: 10px;
  opacity: 0.6;
}

.phone-body {
  padding: 12px;
  flex: 1;
  background: var(--white);
}

.phone-shot {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top center;
  filter: saturate(0.94) contrast(0.99);
}

.phone.phone-image {
  min-height: 0;
  height: auto;
  display: block;
  background: transparent;
}

.icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav {
  background: var(--black);
  height: 64px;
  padding: 0 max(24px, calc((100vw - 980px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.nav-links {
  display: inline-flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.nav-links a {
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.nav-cta {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  background: var(--black);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero .container {
  padding-top: 72px;
  padding-bottom: 180px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-decor {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  animation: decorFloat 7s ease-in-out infinite;
}

.hero-decor--1 {
  width: 150px;
  top: 8px;
  right: 190px;
  --rot: 15deg;
  opacity: 0.72;
  animation-delay: 0s;
}

.hero-decor--2 {
  display: none;
}

.hero-decor--3 {
  width: 56px;
  bottom: 66px;
  left: 122px;
  --rot: 10deg;
  opacity: 0.62;
  animation-delay: 0.9s;
}

.hero-decor--4 {
  width: 92px;
  bottom: 58px;
  right: 226px;
  --rot: -8deg;
  opacity: 0.68;
  animation-delay: 1.6s;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 22px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 18px;
  max-width: 560px;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
}

.hero-copy {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 400px;
  margin-bottom: 32px;
}

.hero-left {
  padding-top: 22px;
}

.hero-cta {
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-note {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.25);
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0;
  height: 400px;
}

.hero-phone-frame {
  width: 280px;
  position: relative;
  transform: translateY(170px);
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.35));
  z-index: 2;
}

.hero-phone-frame img {
  width: 100%;
  display: block;
  border-radius: 36px;
}

.triangle-dark-yellow,
.triangle-yellow-white {
  height: 56px;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: -1px;
}

.triangle-dark-yellow { background: var(--black); }
.triangle-yellow-white { background: var(--yellow); }

.triangle-dark-yellow .tri {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--yellow);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.triangle-yellow-white .tri {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--off-white);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.stats-band {
  background: var(--yellow);
  width: 100%;
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat {
  text-align: center;
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(28, 20, 18, 0.15);
}

.stat-value {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--black);
}

.stat-label {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(28, 20, 18, 0.5);
}

.inside {
  background: var(--off-white);
  width: 100%;
  padding: 80px 0;
}

.inside .container {
  padding-top: 0;
  padding-bottom: 0;
}

.inside-head .eyebrow {
  margin-bottom: 12px;
}

.inside-head .h2 {
  margin-bottom: 8px;
}

.inside-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-dark);
  margin-bottom: 40px;
}

.inside-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
}

.inside-tab {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1.5px solid #E0E0E0;
  background: var(--white);
  color: var(--gray-dark);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.tab-short {
  display: none;
}

.inside-tab.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.inside-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.inside-phone-col {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.inside-phone {
  width: 260px;
  background: var(--white);
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 32px 80px rgba(28, 20, 18, 0.18);
  overflow: hidden;
  transition: transform 0.3s ease;
  transform: rotate(-3deg);
}

.inside-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  padding: 12px 20px 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--black);
}

.inside-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.inside-status-icons svg {
  width: 14px;
  height: 10px;
  display: block;
}

.inside-screens {
  background: var(--white);
  padding: 0;
}

.inside-screen {
  display: none;
}

.inside-screen.is-active {
  display: block;
}

.inside-screen-image {
  display: block;
  width: 100%;
  height: auto;
}

.screen-head {
  padding: 16px 16px 20px;
}

.screen-head h4 {
  margin: 0 0 6px;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
}

.screen-head p {
  margin: 0;
  font-size: 10px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
}

.offers-head { background: var(--green); }
.offers-head h4 { font-size: 22px; font-weight: 900; }

.calc-head { background: var(--green-dark); }
.calc-head h4,
.guides-head h4 {
  font-size: 18px;
  font-weight: 900;
}

.guides-head { background: var(--black); }

.screen-body {
  background: var(--white);
  padding: 12px;
}

.offer-app-card {
  border-radius: 10px;
  overflow: hidden;
}

.offer-app-card + .offer-app-card {
  margin-top: 8px;
}

.offer-green { background: var(--green); }
.offer-purple { background: var(--purple); }
.cut-bottom { max-height: 96px; }

.offer-app-top {
  padding: 10px 12px 0;
  display: flex;
  justify-content: space-between;
}

.offer-app-name {
  font-size: 11px;
  font-weight: 900;
  color: var(--white);
}

.offer-app-stars {
  margin-top: 2px;
  font-size: 9px;
  color: var(--yellow);
}

.offer-app-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.offer-app-copy {
  margin: 6px 0 8px;
  padding: 0 12px;
  font-size: 9px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

.offer-app-stats {
  padding: 0 12px;
  display: grid;
  gap: 4px;
}

.offer-app-stats.grid-2x2 { grid-template-columns: 1fr 1fr; }
.offer-app-stats.grid-1x2 { grid-template-columns: 1fr 1fr; }

.offer-app-stats > div {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 5px 7px;
}

.offer-app-stats span {
  display: block;
  font-size: 7px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.offer-app-stats b {
  display: block;
  margin-top: 1px;
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
}

.offer-app-btn {
  margin: 8px 12px 12px;
  background: var(--white);
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--black);
}

.calc-body { padding: 14px; }

.calc-row label {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gray-mid);
  margin-bottom: 5px;
}

.calc-track {
  width: 100%;
  height: 5px;
  border-radius: 3px;
  background: var(--off-white);
  overflow: hidden;
}

.calc-track span {
  display: block;
  height: 5px;
  border-radius: 3px;
}

.calc-val {
  font-size: 10px;
  font-weight: 700;
  color: var(--black);
  margin: 4px 0 12px;
}

.calc-row:last-child .calc-val {
  margin-bottom: 4px;
}

.calc-result {
  margin-top: 8px;
  background: var(--black);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-result small {
  display: block;
  margin-bottom: 3px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.45);
}

.calc-result b {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--yellow);
}

.calc-right small {
  text-align: right;
  color: rgba(255, 255, 255, 0.35);
}

.calc-right b {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.guides-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.guide-app-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 10px 11px;
}

.guide-app-card span {
  display: block;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}

.guide-app-card h5 {
  margin: 0 0 3px;
  font-size: 10px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}

.guide-app-card p {
  margin: 0;
  font-size: 8px;
  color: var(--gray-mid);
}

.inside-navdots {
  background: var(--white);
  border-top: 1px solid var(--off-white);
  padding: 10px 16px;
  display: flex;
  justify-content: space-around;
}

.navdot {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--off-white);
  display: inline-block;
}

.navdot.is-active {
  background: var(--green);
}

.inside-home-indicator {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: rgba(28, 20, 18, 0.15);
  margin: 8px auto 10px;
}

.inside-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inside-copy-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.inside-copy-title {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--black);
}

.inside-copy-desc {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-dark);
}

.inside-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inside-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.inside-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
  display: grid;
  place-items: center;
}

.inside-feature-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  stroke-width: 2.5;
  fill: none;
}

.inside-feature-title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--black);
}

.inside-feature-subtitle {
  margin: 0;
  margin-top: 1px;
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-dark);
}

.calc-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 6px;
  letter-spacing: 0.8px;
}

.track {
  width: 100%;
  height: 6px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
}

.fill { height: 100%; border-radius: 3px; }

.calc-value {
  font-size: 10px;
  font-weight: 700;
  color: var(--black);
  margin-top: 4px;
}

.calc-block { margin-bottom: 12px; }
.calc-block.term { margin-bottom: 14px; }

.result-box {
  background: var(--black);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.res-k { font-size: 9px; color: rgba(255, 255, 255, 0.5); margin-bottom: 3px; }
.res-v { font-size: 17px; font-weight: 900; letter-spacing: -0.5px; color: var(--yellow); }
.res-k-r { font-size: 9px; color: rgba(255, 255, 255, 0.35); margin-bottom: 3px; text-align: right; }
.res-v-r { font-size: 13px; font-weight: 700; color: rgba(255, 255, 255, 0.65); text-align: right; }

.guide-mini {
  background: var(--off-white);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
}

.guide-mini-tag {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.guide-mini-title {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--black);
  margin-bottom: 4px;
}

.guide-mini-time {
  font-size: 9px;
  color: var(--gray-mid);
}

.how {
  background: var(--white);
  width: 100%;
}

.how .container {
  padding-top: 72px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
}

.how-copy {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.65;
  margin-top: 14px;
}

.steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--off-white);
  align-items: start;
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 40px;
  text-align: center;
  color: var(--black);
  border: 1.5px solid var(--line);
  flex-shrink: 0;
}

.step.active {
  border-left: 3px solid var(--green);
  padding-left: 12px;
}

.step.active .step-num {
  width: 44px;
  height: 44px;
  line-height: 44px;
  border: none;
  background: var(--green);
  color: var(--white);
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
}

.step-desc {
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.6;
}

.for-who {
  background: var(--off-white);
  width: 100%;
}

.for-who .container {
  padding-top: 72px;
  padding-bottom: 72px;
}

.for-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.for-card {
  background: var(--white);
  border: 1.5px solid var(--off-white);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
}

.for-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
}

.for-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.for-desc {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.65;
}

.features {
  background: var(--white);
  width: 100%;
}

.features .container {
  padding-top: 48px;
  padding-bottom: 72px;
}

.features .h2 {
  margin-bottom: 28px;
}

.features .h2 em {
  font-style: normal;
  color: var(--green);
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 14px;
}

.bento-card {
  border-radius: 14px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

.bento-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.bento-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.bento-desc {
  font-size: 13px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.wm {
  position: absolute;
  right: 16px;
  bottom: 10px;
  font-size: 68px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

.b1 { grid-column: 1 / 6; background: var(--black); color: var(--white); }
.b2 { grid-column: 6 / 9; background: var(--yellow); color: var(--black); }
.b3 { grid-column: 9 / 13; background: var(--off-white); color: var(--black); }
.b4 { grid-column: 1 / 5; background: var(--off-white); color: var(--black); }
.b5 { grid-column: 5 / 13; background: var(--green); color: var(--white); }

.guides {
  background: var(--off-white);
  width: 100%;
}

.guides .container {
  padding-top: 72px;
  padding-bottom: 72px;
}

.guides .h2 { margin-bottom: 40px; }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.guide-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border: 1.5px solid var(--off-white);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.guide-card:hover {
  border-color: var(--green);
}

.guide-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
  margin-bottom: 12px;
}

.guide-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 10px;
}

.guide-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-dark);
  margin-bottom: 20px;
  flex: 1;
}

.guide-time {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-mid);
  margin-bottom: 14px;
}

.guide-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  display: block;
  margin-top: auto;
}

.guides-more {
  margin-top: 36px;
  text-align: center;
}

.guides-more a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}

.transparency {
  background: var(--off-white);
  border-top: 1px solid #E0E0E0;
  width: 100%;
  padding: 56px 0;
}

.transparency-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 0 48px;
}

.trans-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-mid);
  margin-bottom: 20px;
}

.trans-main {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-dark);
}

.trans-foot {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-mid);
  margin-top: 20px;
}

.cta {
  background: var(--white);
  width: 100%;
  padding-top: 28px;
  padding-bottom: 72px;
}

.cta-block {
  background: var(--black);
  border-radius: 16px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-decor {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  opacity: 0.62;
  animation: decorFloat 8s ease-in-out infinite;
}

.cta-decor--1 {
  width: 62px;
  right: 80px;
  top: 22px;
  --rot: 12deg;
  --flip: -1;
  animation-delay: 0.4s;
}

.cta-decor--3 {
  width: 64px;
  right: 130px;
  bottom: 24px;
  --rot: 24deg;
  animation-delay: 1.8s;
}

@keyframes decorFloat {
  0% {
    transform: translateY(0px) rotate(var(--rot, 0deg)) scaleX(var(--flip, 1));
    opacity: 0.58;
  }
  50% {
    transform: translateY(-7px) rotate(var(--rot, 0deg)) scaleX(var(--flip, 1));
    opacity: 0.74;
  }
  100% {
    transform: translateY(0px) rotate(var(--rot, 0deg)) scaleX(var(--flip, 1));
    opacity: 0.58;
  }
}

.cta-left,
.cta-right {
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
}

.cta h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--white);
}

.cta h2 span { color: var(--yellow); }

.cta-text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 14px;
  max-width: 460px;
}

.cta-btn {
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  gap: 10px;
  white-space: nowrap;
  width: auto;
}

footer {
  background: var(--black);
  width: 100%;
}

.footer-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 48px 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo-word {
  font-size: 17px;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.35);
  max-width: 200px;
}

.store-btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 9px 16px;
}

.store-text-top {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.1;
}

.store-text-bottom {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-top: 2px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.15s ease;
}

.footer-col-links a:hover {
  color: var(--white);
}

.footer-disclaimer {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-disclaimer p {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.25);
  max-width: 900px;
  margin-bottom: 10px;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  gap: 18px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.15s ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.nav-links a.is-active {
  color: var(--white);
}

.about-hero {
  background: var(--yellow);
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
}

.about-hero-c1,
.about-hero-c2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-hero-c1 {
  width: 300px;
  height: 300px;
  background: rgba(28, 20, 18, 0.06);
  right: -40px;
  top: -40px;
}

.about-hero-c2 {
  width: 180px;
  height: 180px;
  background: rgba(28, 20, 18, 0.04);
  right: 160px;
  bottom: -80px;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  padding-right: 360px;
}

.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(28, 20, 18, 0.45);
  margin-bottom: 24px;
}

.about-hero-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: rgba(28, 20, 18, 0.3);
}

.about-hero h1 {
  max-width: 720px;
  margin: 0 0 40px;
  font-size: 64px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -3px;
  line-height: 0.95;
}

.about-hero h1 span {
  color: var(--green);
}

.about-hero-subtitle {
  max-width: 540px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(28, 20, 18, 0.65);
}

.about-character {
  position: absolute;
  bottom: 0;
  right: 48px;
  height: 85%;
  max-height: 420px;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-decor {
    display: none;
  }

  .about-character {
    display: none;
  }

  .about-hero-inner {
    padding-right: 48px;
  }
}

.about-mission {
  background: var(--black);
  width: 100%;
  padding: 96px 0;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-mission-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.about-mission h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.about-mission h2 span {
  color: var(--yellow);
}

.about-mission-copy p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
}

.about-mission-copy p:last-child {
  margin-bottom: 0;
}

.about-values {
  background: var(--white);
  width: 100%;
  padding: 88px 0;
}

.about-eyebrow {
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-mid);
}

.about-title {
  margin: 0 0 56px;
  font-size: 40px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1.5px;
  line-height: 1.05;
}

.about-title span {
  color: var(--green);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background: var(--off-white);
  border-radius: 16px;
  overflow: hidden;
}

.about-value-card {
  background: var(--white);
  padding: 36px 32px;
}

.about-value-card:first-child {
  border-radius: 14px 0 0 14px;
}

.about-value-card:last-child {
  border-radius: 0 14px 14px 0;
}

.about-value-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gray-mid);
  margin-bottom: 20px;
}

.about-value-accent {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.about-value-card:nth-child(1) .about-value-accent { background: var(--yellow); }
.about-value-card:nth-child(2) .about-value-accent { background: var(--green); }
.about-value-card:nth-child(3) .about-value-accent { background: var(--black); }

.about-value-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--black);
}

.about-value-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-dark);
}

.about-diff {
  background: var(--off-white);
  width: 100%;
  padding: 88px 0;
}

.about-diff .about-title {
  max-width: 500px;
  margin-bottom: 48px;
}

.about-compare {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  overflow: hidden;
}

.about-compare-cell {
  padding: 28px 32px;
}

.about-compare-bad {
  background: var(--white);
}

.about-compare-good {
  background: var(--green);
}

.about-compare-bad .compare-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 10px;
}

.about-compare-good .compare-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.compare-icon {
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.compare-icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.compare-icon-bad svg {
  stroke: #F55B4B;
}

.compare-icon-good svg {
  stroke: rgba(255, 255, 255, 0.75);
}

.about-compare-bad p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gray-dark);
}

.about-compare-good p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
}

.about-cta {
  background: var(--white);
  width: 100%;
  padding: 88px 0;
}

.about-cta-block {
  background: var(--yellow);
  border-radius: 20px;
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-cta-c1,
.about-cta-c2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-cta-c1 {
  width: 260px;
  height: 260px;
  background: rgba(28, 20, 18, 0.06);
  right: -60px;
  top: -60px;
}

.about-cta-c2 {
  width: 160px;
  height: 160px;
  background: rgba(28, 20, 18, 0.04);
  right: 160px;
  bottom: -80px;
}

.about-cta-left,
.about-cta-right {
  position: relative;
  z-index: 2;
}

.about-cta h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--black);
}

.about-cta p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(28, 20, 18, 0.55);
}

.about-cta-btn {
  background: var(--black);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .container {
    padding: 0 24px;
  }

  .h1 { font-size: 38px; }
  .h2 { font-size: 28px; }

  .nav {
    height: 56px;
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    padding: 9px 12px;
    font-size: 12px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-right {
    display: none;
  }

  .hero-decor,
  .cta-decor {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
  }

  .stat:nth-child(2)::after,
  .stat:nth-child(4)::after {
    display: none;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(28, 20, 18, 0.15);
  }

  .inside .container,
  .how .container,
  .for-who .container,
  .features .container,
  .guides .container {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .how .container,
  .for-grid,
  .bento,
  .guide-grid,
  .cta-block {
    grid-template-columns: 1fr;
  }

  .inside {
    padding: 48px 0;
  }

  .inside-tabs {
    margin-bottom: 24px;
  }

  .tab-full {
    display: none;
  }

  .tab-short {
    display: inline;
  }

  .inside-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .inside-phone-col {
    order: 1;
  }

  .inside-copy {
    order: 2;
  }

  .inside-panel {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .inside-phone {
    width: 220px;
    margin: 0 auto;
  }

  .inside-copy-title {
    font-size: 24px;
  }

  .inside-copy-desc {
    margin-bottom: 20px;
  }

  .inside-feature-item:nth-child(3) {
    display: none;
  }

  .about-hero,
  .about-mission,
  .about-values,
  .about-diff,
  .about-cta {
    padding: 64px 0;
  }

  .about-hero h1 {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    background: transparent;
  }

  .about-value-card,
  .about-value-card:first-child,
  .about-value-card:last-child {
    border-radius: 12px;
  }

  .about-compare-row {
    grid-template-columns: 1fr;
  }

  .about-compare-good {
    border-radius: 0;
  }

  .about-cta-block {
    grid-template-columns: 1fr;
    padding: 48px 28px;
  }

  .about-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .hiw-hero {
    padding: 56px 0 64px;
  }

  .hiw-hero h1 {
    font-size: 38px;
  }

  .hiw-step,
  .hiw-step--reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 56px;
    direction: ltr;
  }

  .hiw-divider {
    margin-bottom: 56px;
  }

  .hiw-step-visual {
    min-height: 0;
    padding: 0;
  }

  .hiw-step-visual img {
    width: 84%;
    height: auto;
  }

  .hiw-good-grid {
    grid-template-columns: 1fr;
  }

  .hiw-cta-wrap {
    padding: 64px 24px;
  }

  .hiw-cta {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }

  .hiw-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .b1, .b2, .b3, .b4, .b5 {
    grid-column: auto;
  }

  .transparency {
    padding: 48px 0;
  }

  .transparency-inner {
    padding: 0 24px;
  }

  .cta {
    padding-top: 20px;
    padding-bottom: 48px;
  }

  .cta-block {
    padding: 40px 28px;
    gap: 24px;
  }

  .cta h2 {
    font-size: 32px;
  }

  .cta-btn {
    width: 100%;
  }

  .footer-main {
    padding: 40px 24px 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-brand {
    margin-bottom: 36px;
  }

  .footer-nav-col + .footer-nav-col {
    margin-top: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
}
