/* Header */

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  .header-blur-background {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
}

@media screen and (max-width: 765px) {
  .header-title-logo img {
    max-height: 50px;
  }
}

.top-bun,
.patty,
.bottom-bun {
  height: 2px;
}

/* Hero */

.hero-section {
  padding: 120px 20px 100px;
  background: #f2c94c; /* colour block */
  color: #111; /* dark text */
}

.hero-center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 14px;
  color: #111;
}

/* Strong headline like your screenshot */
.hero-center h1 {
  font-size: clamp(48px, 6.5vw, 86px);
  line-height: 0.9;
  max-width: 11.5ch;
  margin: 0 auto 22px;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #111;
}

.hero-lead {
  margin: 0 auto 14px;
  max-width: 62ch;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.92);
}

.hero-actions {
  margin-top: 26px;
}

/* CTA should contrast hard on yellow */
.btn-primary {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

/* Logos: keep subtle so they don’t fight the hero */
.hero-logos {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  gap: 26px;
  align-items: center;
  opacity: 0.85;
}

.hero-logos img {
  max-height: 80px !important;
  width: auto;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 96px 18px 80px;
  }
  .hero-center h1 {
    font-size: 44px;
    line-height: 0.95;
  }
  .hero-lead {
    font-size: 16.5px;
  }
  .hero-logos {
    flex-wrap: wrap;
    gap: 18px;
  }
}

/* Packages */

.packages-section {
  padding: 100px 20px 80px;
  background: linear-gradient(
    180deg,
    rgba(242, 201, 76, 0.18) 0%,
    rgba(242, 201, 76, 0.08) 30%,
    rgba(255, 255, 255, 0) 70%
  );
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: clamp(38px, 4.5vw, 54px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.package-card {
  /* background: #fff; */
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.package-card h3 {
  margin-bottom: 10px;
}

.package-card h3 span {
  font-weight: normal;
  font-size: 0.9em;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.price span {
  font-weight: normal;
  font-size: 0.9em;
}

.package-card ul {
  margin: 15px 0;
  padding-left: 18px;
}

.package-card li {
  margin-bottom: 8px;
}

.note {
  margin-top: 15px;
  font-weight: 500;
}

/* Auction Risks */

.auction-risk-section {
  padding: 90px 20px;
  background: #f9fafb;
  color: #111;
}

.auction-risk-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.risk-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.risk-content h2 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  margin-bottom: 18px;
  color: #111;
}

.risk-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.risk-strong {
  font-weight: 600;
}

.risk-image img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

@media (max-width: 900px) {
  .risk-grid {
    grid-template-columns: 1fr;
  }
}

/* Panel works */
.panel-works-section {
  padding: 100px 20px 80px;
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 18%,
    rgba(17, 17, 17, 1) 45%
  );
}

.panel-works-section .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.panel-works-section h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 46px); /* SAME AS PREV SECTION */
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}

.panel-works-section .intro {
  font-weight: 600;
  margin-bottom: 12px;
}

.panel-works-section .description {
  max-width: 900px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

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

.panel-step {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 28px 22px;
  text-align: left;
}

.step-number {
  width: 36px;
  height: 36px;
  background: #f2c94c;
  color: #111;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .panel-steps {
    grid-template-columns: 1fr;
  }
}

/* Process */

.process-v2 {
  padding: 90px 20px;
  background: #fff;
}

.process-v2 .container {
  max-width: 1100px;
  margin: 0 auto;
}

.process-v2 h2 {
  margin-bottom: 46px;
  color: #111;
  text-align: center;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.process-rows {
  display: grid;
  gap: 26px;
}

/* each step row */
.process-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;

  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

/* alternate */
.process-row:nth-child(even) .process-text {
  order: 2;
}
.process-row:nth-child(even) .process-img {
  order: 1;
}

.process-num {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #f2c94c;
  color: #111;
  font-weight: 900;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.process-text h3 {
  margin: 0 0 12px;
  font-size: 28px; /* increased */
  color: #111;
  line-height: 1.2;
  font-weight: 700;
}

.process-text h3 span {
  font-size: 0.9em; /* keep secondary */
  font-weight: 600;
  opacity: 0.85;
}

.process-text p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

.process-img img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  background: #fff;
  display: block;
  padding: 14px;
  object-fit: contain;
  height: 240px;
}

@media (max-width: 900px) {
  .process-row {
    grid-template-columns: 1fr;
  }

  .process-row:nth-child(even) .process-text,
  .process-row:nth-child(odd) .process-text {
    order: 1;
  }

  .process-row:nth-child(even) .process-img,
  .process-row:nth-child(odd) .process-img {
    order: 2;
  }
}

/* CTA  */
.cta-final {
  padding: 90px 20px;
  background: #0f1115;
  color: #fff;
}

.cta-final .container {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-final-box {
  border-radius: 18px;
  padding: 54px 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(
      900px 400px at 20% 0%,
      rgba(242, 201, 76, 0.18),
      transparent 60%
    ),
    radial-gradient(
      700px 350px at 90% 30%,
      rgba(242, 201, 76, 0.1),
      transparent 55%
    ),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.cta-final-top h2 {
  margin: 0 0 40px;
  font-size: 48px;
  text-align: center;
}

/* GRID LAYOUT */
.cta-final-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.cta-item {
  padding: 28px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cta-item-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 55px;
}

.cta-item span {
  opacity: 0.92;
  font-size: 15px;
}

.cta-item strong {
  font-size: 44px;
  font-weight: 900;
}

.cta-item-btn {
  margin-top: 50px;
  margin-bottom: 30px;
  padding: 14px 20px;
  border-radius: 10px;
  background: #f2c94c;
  color: #111;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 18px rgba(242, 201, 76, 0.25);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.cta-item-btn:hover {
  filter: brightness(0.96);
  transform: translateY(-1px);
}

.cta-item-meta {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.85;
}

.cta-item-meta img {
  height: 20px;
}

/* MOBILE */
@media (max-width: 900px) {
  .cta-final-prices {
    grid-template-columns: 1fr;
  }

  .cta-final-top h2 {
    font-size: 36px;
  }
}

/* Footer */
.fe-67696d3a5297b1276d250280 {
  --grid-gutter: calc(var(--sqs-mobile-site-gutter, 6vw) - 11px);
  --cell-max-width: calc(
    (var(--sqs-site-max-width, 1500px) - (11px * (8 - 1))) / 8
  );
  display: grid;
  position: relative;
  grid-area: 1/1/-1/-1;
  grid-template-rows: repeat(10, minmax(24px, auto));
  grid-template-columns:
    minmax(var(--grid-gutter), 1fr)
    repeat(8, minmax(0, var(--cell-max-width)))
    minmax(var(--grid-gutter), 1fr);
  row-gap: 11px;
  column-gap: 11px;
  overflow-x: hidden;
  overflow-x: clip;
}
@media (min-width: 768px) {
  .background-width--inset .fe-67696d3a5297b1276d250280 {
    --inset-padding: calc(var(--sqs-site-gutter) * 2);
  }
  .fe-67696d3a5297b1276d250280 {
    --grid-gutter: calc(var(--sqs-site-gutter, 4vw) - 11px);
    --cell-max-width: calc(
      (var(--sqs-site-max-width, 1500px) - (11px * (24 - 1))) / 24
    );
    --inset-padding: 0vw;
    --row-height-scaling-factor: 0.0215;
    --container-width: min(
      var(--sqs-site-max-width, 1500px),
      calc(100vw - var(--sqs-site-gutter, 4vw) * 2 - var(--inset-padding))
    );
    grid-template-rows: repeat(
      16,
      minmax(
        calc(var(--container-width) * var(--row-height-scaling-factor)),
        auto
      )
    );
    grid-template-columns:
      minmax(var(--grid-gutter), 1fr)
      repeat(24, minmax(0, var(--cell-max-width)))
      minmax(var(--grid-gutter), 1fr);
  }
}
.fe-block-02ee5dea47381747099e {
  grid-area: 2/2/4/10;
  z-index: 5;
  @media (max-width: 767px) {
  }
}
.fe-block-02ee5dea47381747099e .sqs-block {
  justify-content: flex-start;
}
.fe-block-02ee5dea47381747099e .sqs-block-alignment-wrapper {
  align-items: flex-start;
}
@media (min-width: 768px) {
  .fe-block-02ee5dea47381747099e {
    grid-area: 4/7/9/21;
    z-index: 5;
  }
  .fe-block-02ee5dea47381747099e .sqs-block {
    justify-content: flex-start;
  }
  .fe-block-02ee5dea47381747099e .sqs-block-alignment-wrapper {
    align-items: flex-start;
  }
}
.fe-block-f6b0f4f90c4decac55a8 {
  grid-area: 4/2/6/10;
  z-index: 6;
  @media (max-width: 767px) {
  }
}
.fe-block-f6b0f4f90c4decac55a8 .sqs-block {
  justify-content: flex-start;
}
.fe-block-f6b0f4f90c4decac55a8 .sqs-block-alignment-wrapper {
  align-items: flex-start;
}
@media (min-width: 768px) {
  .fe-block-f6b0f4f90c4decac55a8 {
    grid-area: 10/9/11/19;
    z-index: 6;
  }
  .fe-block-f6b0f4f90c4decac55a8 .sqs-block {
    justify-content: flex-start;
  }
  .fe-block-f6b0f4f90c4decac55a8 .sqs-block-alignment-wrapper {
    align-items: flex-start;
  }
}
.fe-block-yui_3_17_2_1_1736426768107_35766 {
  grid-area: 6/2/9/5;
  z-index: 11;
  @media (max-width: 767px) {
  }
}
.fe-block-yui_3_17_2_1_1736426768107_35766 .sqs-block {
  justify-content: center;
}
.fe-block-yui_3_17_2_1_1736426768107_35766 .sqs-block-alignment-wrapper {
  align-items: center;
}
@media (min-width: 768px) {
  .fe-block-yui_3_17_2_1_1736426768107_35766 {
    grid-area: 13/3/16/7;
    z-index: 11;
  }
  .fe-block-yui_3_17_2_1_1736426768107_35766 .sqs-block {
    justify-content: center;
  }
  .fe-block-yui_3_17_2_1_1736426768107_35766 .sqs-block-alignment-wrapper {
    align-items: center;
  }
}
.fe-block-yui_3_17_2_1_1735399402669_21647 {
  grid-area: 6/2/7/10;
  z-index: 7;
  @media (max-width: 767px) {
  }
}
.fe-block-yui_3_17_2_1_1735399402669_21647 .sqs-block {
  justify-content: center;
}
.fe-block-yui_3_17_2_1_1735399402669_21647 .sqs-block-alignment-wrapper {
  align-items: center;
}
@media (min-width: 768px) {
  .fe-block-yui_3_17_2_1_1735399402669_21647 {
    grid-area: 12/1/13/27;
    z-index: 7;
  }
  .fe-block-yui_3_17_2_1_1735399402669_21647 .sqs-block {
    justify-content: center;
  }
  .fe-block-yui_3_17_2_1_1735399402669_21647 .sqs-block-alignment-wrapper {
    align-items: center;
  }
}
.fe-block-yui_3_17_2_1_1736426768107_43216 {
  grid-area: 8/2/9/6;
  z-index: 12;
  @media (max-width: 767px) {
  }
}
.fe-block-yui_3_17_2_1_1736426768107_43216 .sqs-block {
  justify-content: flex-start;
}
.fe-block-yui_3_17_2_1_1736426768107_43216 .sqs-block-alignment-wrapper {
  align-items: flex-start;
}
@media (min-width: 768px) {
  .fe-block-yui_3_17_2_1_1736426768107_43216 {
    grid-area: 15/3/17/8;
    z-index: 12;
  }
  .fe-block-yui_3_17_2_1_1736426768107_43216 .sqs-block {
    justify-content: flex-start;
  }
  .fe-block-yui_3_17_2_1_1736426768107_43216 .sqs-block-alignment-wrapper {
    align-items: flex-start;
  }
}
.fe-block-yui_3_17_2_1_1736426768107_5611 {
  grid-area: 7/7/9/10;
  z-index: 9;
  @media (max-width: 767px) {
  }
}
.fe-block-yui_3_17_2_1_1736426768107_5611 .sqs-block {
  justify-content: center;
}
.fe-block-yui_3_17_2_1_1736426768107_5611 .sqs-block-alignment-wrapper {
  align-items: center;
}
@media (min-width: 768px) {
  .fe-block-yui_3_17_2_1_1736426768107_5611 {
    grid-area: 13/20/17/26;
    z-index: 9;
  }
  .fe-block-yui_3_17_2_1_1736426768107_5611 .sqs-block {
    justify-content: center;
  }
  .fe-block-yui_3_17_2_1_1736426768107_5611 .sqs-block-alignment-wrapper {
    align-items: center;
  }
}
.fe-block-916bbeba3012cb5022eb {
  grid-area: 9/2/11/10;
  z-index: 0;
  @media (max-width: 767px) {
  }
}
.fe-block-916bbeba3012cb5022eb .sqs-block {
  justify-content: center;
}
.fe-block-916bbeba3012cb5022eb .sqs-block-alignment-wrapper {
  align-items: center;
}
@media (min-width: 768px) {
  .fe-block-916bbeba3012cb5022eb {
    grid-area: 15/11/16/17;
    z-index: 0;
  }
  .fe-block-916bbeba3012cb5022eb .sqs-block {
    justify-content: center;
  }
  .fe-block-916bbeba3012cb5022eb .sqs-block-alignment-wrapper {
    align-items: center;
  }
}
.fe-block-yui_3_17_2_1_1736426768107_20318 {
  grid-area: 10/2/11/10;
  z-index: 10;
  @media (max-width: 767px) {
  }
}
.fe-block-yui_3_17_2_1_1736426768107_20318 .sqs-block {
  justify-content: flex-start;
}
.fe-block-yui_3_17_2_1_1736426768107_20318 .sqs-block-alignment-wrapper {
  align-items: flex-start;
}
@media (min-width: 768px) {
  .fe-block-yui_3_17_2_1_1736426768107_20318 {
    grid-area: 14/11/15/17;
    z-index: 10;
  }
  .fe-block-yui_3_17_2_1_1736426768107_20318 .sqs-block {
    justify-content: flex-start;
  }
  .fe-block-yui_3_17_2_1_1736426768107_20318 .sqs-block-alignment-wrapper {
    align-items: flex-start;
  }
}

/*------*/
.sqs-block-image .sqs-block-content {
  height: 100%;
  width: 100%;
}
.fe-block-yui_3_17_2_1_1736426768107_35766 .fluidImageOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: normal;
  opacity: 0;
}

.header-layout-branding-center .header-nav .header-nav-item:not(:last-child) {
    margin-right: 1.25vw !important;
}