:root {
  --blue: #0f7cf4;
  --blue-dark: #054991;
  --navy: #081827;
  --navy-2: #102236;
  --sky: #eaf5ff;
  --white: #ffffff;
  --muted: #6b7c90;
  --line: rgba(15, 124, 244, 0.16);
  --shadow: 0 24px 70px rgba(8, 24, 39, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background:
    radial-gradient(circle at top left, rgba(15, 124, 244, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(8, 24, 39, 0.14), transparent 36%),
    #f8fbff;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(8, 24, 39, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15,124,244,0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  text-decoration: none;
  font-weight: 800;
  color: var(--muted);
  padding: 11px 14px;
  border-radius: 999px;
}

.main-nav a:hover {
  color: var(--blue);
  background: rgba(15,124,244,0.08);
}

.main-nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #55a9ff);
}

.menu-toggle {
  display: none;
  border: none;
  background: var(--blue);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 22px;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.home-hero {
  min-height: 620px;
  padding: 70px 0 42px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 34px;
}

.pill {
  display: inline-flex;
  width: fit-content;
  color: var(--blue-dark);
  background: rgba(15,124,244,0.11);
  border: 1px solid rgba(15,124,244,0.16);
  font-weight: 900;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
}

h1,
h2 {
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.home-hero h1 {
  font-size: clamp(44px, 7vw, 86px);
  margin: 16px 0;
}

.hero-left p,
.section-heading p,
.page-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-buttons,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #55a9ff);
  box-shadow: 0 18px 36px rgba(15,124,244,0.22);
}

.btn.secondary,
.btn.ghost {
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--line);
}

.btn.dark {
  color: #fff;
  background: var(--navy);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.hero-logo-card {
  text-align: center;
  padding: 34px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-logo-card img {
  width: min(280px, 82%);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 25px 80px rgba(15,124,244,0.24);
}

.hero-logo-card h2 {
  font-size: 44px;
  margin: 22px 0 10px;
}

.hero-logo-card p {
  color: var(--muted);
  line-height: 1.6;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.feature-strip div,
.info-card,
.converter-shell,
.guideline-table-section,
.policy-content,
.contact-card,
.contact-form,
.status-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-strip div {
  padding: 22px;
  border-radius: 22px;
  text-align: center;
}

.feature-strip strong {
  display: block;
  color: var(--blue);
  font-size: 30px;
  margin-bottom: 5px;
}

.feature-strip span {
  color: var(--muted);
  font-weight: 700;
}

.content-section {
  padding: 34px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 22px;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 56px);
  margin: 16px 0 8px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  padding: 24px;
  border-radius: 24px;
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.info-card p {
  color: var(--muted);
  line-height: 1.6;
}

.page-hero {
  margin: 42px 0 24px;
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, #eef7ff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 26px;
}

.page-hero.compact {
  grid-template-columns: 130px 1fr;
}

.page-hero img {
  width: 100%;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15,124,244,0.2);
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  margin: 14px 0 8px;
}

.converter-shell {
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius);
}

.settings-panel,
.upload-panel {
  padding: 18px;
  border-radius: 24px;
  background: rgba(245,250,255,0.78);
  border: 1px solid var(--line);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

.field span,
.toggle span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(15,124,244,0.16);
  border-radius: 14px;
  padding: 0 12px;
  background: #fff;
  color: var(--navy);
  outline: none;
}

.field input,
.field select {
  height: 46px;
}

.field input[type="color"] {
  padding: 4px;
}

.field small {
  color: var(--muted);
}

.preset-info {
  padding: 16px;
  margin-bottom: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.preset-info h3 {
  margin: 0 0 8px;
}

.preset-info p {
  margin: 0 0 5px;
  color: var(--muted);
  line-height: 1.5;
}

.toggle {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.drop-zone {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 2px dashed rgba(15,124,244,0.35);
  border-radius: 24px;
  padding: 36px 18px;
  background: linear-gradient(135deg, #fff, #eaf5ff);
  cursor: pointer;
}

.drop-zone.dragging,
.drop-zone:hover {
  border-color: var(--blue);
  box-shadow: 0 18px 48px rgba(15,124,244,0.16);
}

.upload-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 22px;
  background: var(--blue);
  color: white;
  font-size: 38px;
}

.drop-zone h2 {
  margin: 0 0 6px;
  font-size: 36px;
}

.drop-zone p {
  color: var(--muted);
}

.status-card {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
}

.status-card p {
  margin: 6px 0 0;
  color: var(--muted);
}

.progress-wrap {
  height: 12px;
  margin-top: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(15,124,244,0.12);
}

.progress-wrap div {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), #55a9ff);
}

.results {
  margin: 22px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.result-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.result-preview {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f5faff;
}

.result-body {
  padding: 16px;
}

.result-body h3 {
  margin: 0 0 8px;
  word-break: break-word;
}

.meta {
  display: grid;
  gap: 5px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.meta span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.meta em {
  font-style: normal;
  text-align: right;
}

.download-link {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  text-decoration: none;
  font-weight: 900;
}

.warning {
  padding: 9px 11px;
  margin-top: 10px;
  border-radius: 12px;
  color: #805300;
  background: #fff6d8;
  font-size: 13px;
  line-height: 1.4;
}

.error {
  background: #fff1f1;
  border-color: #ffd0d0;
}

.guideline-table-section,
.policy-content {
  padding: 22px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--blue-dark);
  background: #eef7ff;
}

td {
  color: var(--muted);
  font-weight: 650;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-card,
.contact-form {
  padding: 24px;
  border-radius: var(--radius);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 900;
}

.contact-form input {
  height: 48px;
}

.contact-form textarea {
  min-height: 150px;
  padding-top: 12px;
}

.policy-content h2 {
  margin-top: 0;
}

.policy-content p {
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 30px auto;
  padding: 28px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--navy);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  margin-bottom: 10px;
}

.footer p {
  color: rgba(255,255,255,0.68);
  max-width: 620px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
  justify-content: flex-end;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 10px 12px;
}

@media (max-width: 980px) {
  .home-hero,
  .converter-shell,
  .contact-grid,
  .page-hero,
  .page-hero.compact {
    grid-template-columns: 1fr;
  }

  .hero-logo-card img {
    width: min(240px, 80%);
  }

  .cards-3,
  .results,
  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero img {
    width: 160px;
  }
}

@media (max-width: 720px) {
  main,
  .site-header,
  .footer {
    width: min(100% - 20px, 1180px);
  }

  .site-header {
    border-radius: 24px;
    align-items: flex-start;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 12px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }

  .main-nav.open {
    display: grid;
  }

  .home-hero {
    padding-top: 42px;
  }

  .home-hero h1 {
    font-size: 42px;
  }

  .field-row,
  .cards-3,
  .results,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .footer {
    display: block;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .btn,
  .actions button {
    width: 100%;
  }
}

/* Locked marketplace preset fields */
.field.is-locked input,
.field.is-locked select,
.field input:disabled,
.field select:disabled {
  cursor: not-allowed;
  color: #6b7c90;
  background: #eef4fb;
  border-color: rgba(8, 24, 39, 0.08);
  opacity: 0.82;
}

.field.is-locked span::after {
  content: "  Locked";
  display: inline-flex;
  margin-left: 6px;
  padding: 3px 7px;
  border-radius: 999px;
  color: #054991;
  background: rgba(15,124,244,0.10);
  font-size: 10px;
  font-weight: 900;
  vertical-align: middle;
}

.lock-notice {
  margin: -4px 0 14px;
  padding: 12px 14px;
  border-radius: 16px;
  color: #054991;
  background: rgba(15,124,244,0.09);
  border: 1px solid rgba(15,124,244,0.16);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.lock-notice.custom-active {
  color: #075c35;
  background: rgba(21, 161, 94, 0.10);
  border-color: rgba(21, 161, 94, 0.20);
}


/* Google AdSense placement */
.ad-section {
  width: min(970px, 100%);
  min-height: 120px;
  margin: 24px auto;
  padding: 14px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(234,245,255,0.92));
  border: 1px solid rgba(15,124,244,0.14);
  box-shadow: 0 18px 45px rgba(8, 24, 39, 0.08);
  text-align: center;
  overflow: hidden;
}

.ad-label {
  display: block;
  margin-bottom: 8px;
  color: #6b7c90;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Premium aligned footer */
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 28px;
  padding: 0;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(15,124,244,0.35), transparent 30%),
    linear-gradient(135deg, #071522, #0b2136 52%, #06111f);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 28px 80px rgba(8, 24, 39, 0.22);
  overflow: hidden;
  display: block;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 0.75fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 34px;
}

.footer-brand-block {
  min-width: 0;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 16px;
}

.footer-logo-row img {
  width: 78px;
  height: 78px;
  margin: 0;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 3px;
  box-shadow: 0 18px 42px rgba(15,124,244,0.28);
}

.footer-logo-row strong,
.footer-logo-row small {
  display: block;
}

.footer-logo-row strong {
  font-size: 24px;
  line-height: 1;
}

.footer-logo-row small {
  margin-top: 5px;
  color: rgba(255,255,255,0.66);
  font-size: 13px;
  font-weight: 700;
}

.footer-brand-block p,
.footer-contact-box p {
  margin: 0;
  max-width: 520px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-badges span {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  color: #dcefff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 12px;
  font-weight: 900;
}

.footer-column {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.footer-column h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.footer-column a {
  display: inline-flex;
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  font-weight: 750;
  line-height: 1.35;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-contact-box {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
}

.footer-cta {
  margin-top: 14px;
  padding: 11px 14px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue), #55a9ff);
  box-shadow: 0 16px 34px rgba(15,124,244,0.26);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 34px;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.15);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact-box {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .ad-section {
    width: min(100%, 970px);
    margin: 18px auto;
    border-radius: 18px;
  }

  .footer {
    width: min(100% - 20px, 1180px);
    border-radius: 26px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
  }

  .footer-contact-box {
    grid-column: auto;
  }

  .footer-logo-row img {
    width: 68px;
    height: 68px;
  }

  .footer-bottom {
    display: grid;
    padding: 16px 24px;
  }
}


/* Four ad block layout: top, bottom, left, right */
.side-ad {
  position: fixed;
  top: 145px;
  z-index: 18;
  width: 160px;
  min-height: 600px;
  padding: 12px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(234,245,255,0.92));
  border: 1px solid rgba(15,124,244,0.14);
  box-shadow: 0 18px 45px rgba(8, 24, 39, 0.10);
  text-align: center;
  overflow: hidden;
}

.side-ad-left {
  left: max(12px, calc((100vw - 1540px) / 2));
}

.side-ad-right {
  right: max(12px, calc((100vw - 1540px) / 2));
}

.ad-section {
  min-height: 110px;
}

@media (max-width: 1500px) {
  .side-ad {
    display: none;
  }
}

/* Brand logo section */
.brand-logo-section {
  margin: 24px 0;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.market-logo {
  min-height: 118px;
  padding: 16px 12px;
  display: grid;
  place-items: center;
  gap: 10px;
  border-radius: 22px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(15,124,244,0.13);
  box-shadow: 0 14px 34px rgba(8, 24, 39, 0.08);
  transition: 0.22s ease;
}

.market-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(8, 24, 39, 0.12);
}

.mini-brand-strip {
  margin: 0 0 20px;
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(8, 24, 39, 0.08);
}

.mini-brand-strip span {
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(15,124,244,0.09);
  border: 1px solid rgba(15,124,244,0.13);
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .brand-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .brand-logo-section {
    padding: 18px;
  }

  .brand-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .market-logo {
    min-height: 104px;
  }
}

@media (max-width: 420px) {
  .brand-logo-grid {
    grid-template-columns: 1fr;
  }
}


/* Real marketplace icon cards */
.market-logo {
  min-height:  100%;
  padding: 18px 12px;
}

.market-logo img {
  width: 100%;
  height: 62px;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 12px 28px rgba(8, 24, 39, 0.10);
}

.market-logo span {
  display: none !important;
}

/* Converter moving marketplace slider */
.marketplace-slider-section {
  margin: 0 0 20px;
  padding: 14px 0;
  border-radius: 22px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(8, 24, 39, 0.08);
  overflow: hidden;
}

.slider-track {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.slider-row {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: marketplaceMarquee 30s linear infinite;
}

.marketplace-slider-section:hover .slider-row {
  animation-play-state: paused;
}

.slider-logo-item {
  flex: 0 0 auto;
  min-width: 170px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(15,124,244,0.12);
  box-shadow: 0 10px 26px rgba(8, 24, 39, 0.08);
}

.slider-logo-item img {
  width: 100%;
  height: 38px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.slider-logo-item b {
  font-size: 13px;
  white-space: nowrap;
}

@keyframes marketplaceMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Footer marketplace icons */
.footer-market-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  max-width: 560px;
}

.footer-market-icons img {
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 4px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

@media (max-width: 720px) {
  .slider-logo-item {
    min-width: 145px;
    padding: 9px 12px;
  }

  .slider-logo-item img {
    width: 34px;
    height: 34px;
  }

  .footer-market-icons img {
    width: 34px;
    height: 34px;
  }
}


/* Editable fields inside locked presets */
.field.is-editable span::after {
  content: "  Editable";
  display: inline-flex;
  margin-left: 6px;
  padding: 3px 7px;
  border-radius: 999px;
  color: #075c35;
  background: rgba(21, 161, 94, 0.10);
  font-size: 10px;
  font-weight: 900;
  vertical-align: middle;
}

.field.is-editable select {
  background: #ffffff;
  cursor: pointer;
}


/* Contact enquiry form to Google Sheet */
.contact-points {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
}

.contact-points span {
  display: block;
  padding: 11px 13px;
  border-radius: 14px;
  color: var(--blue-dark);
  background: rgba(15,124,244,0.08);
  border: 1px solid rgba(15,124,244,0.13);
  font-weight: 800;
}

.contact-form select {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(15,124,244,0.16);
  border-radius: 14px;
  padding: 0 12px;
  background: #fff;
  color: var(--navy);
  outline: none;
}

.enquiry-status {
  min-height: 22px;
  margin: 0;
  padding: 11px 13px;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.enquiry-status:empty {
  display: none;
}

.enquiry-status.info {
  color: #054991;
  background: rgba(15,124,244,0.10);
  border: 1px solid rgba(15,124,244,0.16);
}

.enquiry-status.success {
  color: #075c35;
  background: rgba(21,161,94,0.10);
  border: 1px solid rgba(21,161,94,0.20);
}

.enquiry-status.error {
  color: #8a1f11;
  background: rgba(240,68,56,0.10);
  border: 1px solid rgba(240,68,56,0.20);
}

.about-highlight-section {
  padding-top: 10px;
}

.about-cta-box {
  margin-top: 24px;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(15, 124, 244, 0.18), transparent 34%),
    linear-gradient(135deg, #ffffff, #eaf5ff);
  border: 1px solid rgba(15, 124, 244, 0.16);
  box-shadow: 0 20px 55px rgba(8, 24, 39, 0.10);
  text-align: center;
}

.about-cta-box h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 4vw, 38px);
  letter-spacing: -0.04em;
  color: var(--navy);
}

.about-cta-box p {
  max-width: 760px;
  margin: 0 auto 20px;
  color: var(--muted);
  line-height: 1.7;
}

/* Active navbar link */
.main-nav a.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), #55a9ff);
  box-shadow: 0 12px 28px rgba(15, 124, 244, 0.22);
}

.main-nav a.active:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}
