/* By Best Business – Hospitality Solutions · landing page */

:root {
  --black: #0b0b0d;
  --black-2: #131316;
  --black-3: #1c1c21;
  --gold: #d4af37;
  --gold-light: #f1d67a;
  --gold-deep: #a8842a;
  --white: #ffffff;
  --grey-bg: #f5f5f4;
  --text: #17171a;
  --muted: #5f5f66;
  --on-dark: #f7f4ea;
  --on-dark-muted: #a9a59a;
  --line: rgba(23, 23, 26, .12);
  --line-dark: rgba(247, 244, 234, .14);

  --font-head: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1140px;
  --gutter: clamp(20px, 4vw, 40px);
  --gold-grad: linear-gradient(180deg, #f3dc8a 0%, #d4af37 48%, #b08a2c 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0;
}

h1 { font-size: clamp(2.3rem, 4.6vw, 3.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.55rem; font-weight: 600; }

p { margin: 0; }

.wrap {
  width: min(var(--wrap), 100% - 2 * var(--gutter));
  margin-inline: auto;
}

.section-head { max-width: 640px; }
.section-head p { margin-top: 14px; font-size: 1.1rem; color: var(--muted); }

/* Pills (buttons) – aceeași formă ca în materialele de brand */

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: .95em 1.7em;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: transform .12s ease, filter .12s ease, border-color .12s ease, color .12s ease;
}

.pill-lg { font-size: 1.1rem; padding: 1.05em 2em; }
.pill-block { width: 100%; }

.pill-gold {
  background: var(--gold-grad);
  color: var(--black);
  border-color: rgba(0, 0, 0, .25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45), 0 8px 24px rgba(212, 175, 55, .28);
}
.pill-gold:hover { filter: brightness(1.05); transform: translateY(-1px); }
.pill-gold:active { transform: translateY(0); filter: brightness(.97); }

.pill-outline {
  color: var(--gold-light);
  border-color: var(--gold);
  font-size: .95rem;
  padding: .8em 1.4em;
}
.pill-outline:hover { background: rgba(212, 175, 55, .1); }

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

/* Header */

.top {
  background: var(--black);
  color: var(--on-dark);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line-dark);
}

.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: auto;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-sub { font-size: .82rem; color: var(--on-dark-muted); letter-spacing: .02em; }

/* Hero */

.hero {
  background: var(--black);
  color: var(--on-dark);
  padding-block: clamp(48px, 7vw, 96px) clamp(40px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  /* halou auriu în spatele monogramei */
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60vw;
  max-width: 820px;
  aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(212, 175, 55, .22) 0%, rgba(212, 175, 55, .06) 38%, transparent 62%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.hero h1 { max-width: 19ch; }

.lead {
  margin-top: 22px;
  font-size: 1.2rem;
  color: var(--on-dark-muted);
  max-width: 50ch;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}

.hero-note {
  font-size: .95rem;
  color: var(--on-dark-muted);
  max-width: 26ch;
}

.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-visual img {
  width: min(100%, 440px);
}

/* Tags strip – lista de servicii din brand */

.tags {
  list-style: none;
  margin: clamp(40px, 6vw, 72px) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags li {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .01em;
  color: var(--gold-light);
  border: 1.5px solid var(--gold-deep);
  border-radius: 999px;
  padding: 9px 18px;
  background: rgba(212, 175, 55, .06);
}

/* Numbers strip */

.numbers {
  background: var(--gold-grad);
  color: var(--black);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.number {
  padding: 28px 28px 28px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}
.number + .number {
  padding-left: 28px;
  border-left: 1px solid rgba(0, 0, 0, .18);
}

.number strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -.01em;
}
.number span {
  font-size: .95rem;
  line-height: 1.35;
  font-weight: 500;
}

/* Services */

.services {
  background: var(--white);
  padding-block: clamp(64px, 8vw, 110px);
}

.services-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service {
  background: var(--black);
  color: var(--on-dark);
  border-radius: 18px;
  padding: 32px 28px 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.service::after {
  content: "";
  position: absolute;
  inset: auto -30% -40% auto;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(212, 175, 55, .18), transparent 62%);
  pointer-events: none;
}

.service-tag {
  align-self: flex-start;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--black);
  background: var(--gold-grad);
  border-radius: 999px;
  padding: 7px 14px;
}

.service h3 { color: var(--white); }
.service p { color: var(--on-dark-muted); }

/* Compare */

.compare {
  background: var(--grey-bg);
  padding-block: clamp(64px, 8vw, 110px);
}

.compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.compare-copy p { margin-top: 16px; font-size: 1.1rem; color: var(--muted); max-width: 44ch; }

.compare-bars { display: grid; gap: 28px; }

.bar-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.bar-track {
  height: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill { height: 100%; border-radius: 999px; }
.bar-fill-ota { width: 18%; background: var(--black); }
.bar-fill-direct { width: 100%; background: var(--gold-grad); }

.bar-value {
  margin-top: 10px;
  font-weight: 600;
  color: var(--muted);
}
.bar-value-gold { color: var(--gold-deep); }

/* Process */

.process {
  background: var(--white);
  padding-block: clamp(64px, 8vw, 110px);
}

.steps {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.steps li {
  border-top: 3px solid var(--gold);
  padding-top: 20px;
}

.step-no {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
}

.steps h3 { margin-top: 18px; }
.steps p { margin-top: 10px; color: var(--muted); }

/* About */

.about {
  background: var(--black-2);
  color: var(--on-dark);
  padding-block: clamp(64px, 8vw, 110px);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 80px);
}

.about h2 { color: var(--white); }

.about-by {
  margin-top: 18px;
  color: var(--gold-light);
  font-weight: 500;
}

.about-body p { color: var(--on-dark-muted); }
.about-body p + p { margin-top: 18px; }
.about-body p:first-child {
  color: var(--on-dark);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Contact */

.contact {
  background: var(--white);
  padding-block: clamp(64px, 8vw, 110px);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 500px);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.contact-copy p { margin-top: 16px; font-size: 1.1rem; color: var(--muted); max-width: 42ch; }

.contact-points {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.contact-points li {
  position: relative;
  padding-left: 30px;
  font-weight: 500;
}
.contact-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><circle cx='9' cy='9' r='9' fill='%23d4af37'/><path d='M5 9.5l2.6 2.5L13 6.5' fill='none' stroke='%230b0b0d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
}

.lead-form {
  background: var(--black);
  color: var(--on-dark);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .18);
}

.field + .field { margin-top: 18px; }

.field label {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.field input,
.field select {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 13px 16px;
  height: 52px;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' fill='none' stroke='%2317171a' stroke-width='2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .3);
}

.field input.is-invalid,
.field select.is-invalid { border-color: #d6543a; }

.field input:autofill { box-shadow: 0 0 0 50px var(--white) inset; }

.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.lead-form .pill { margin-top: 26px; }

.form-error {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(214, 84, 58, .15);
  border: 1px solid rgba(214, 84, 58, .5);
  font-size: .95rem;
}

.form-legal {
  margin-top: 14px;
  font-size: .82rem;
  color: var(--on-dark-muted);
  text-align: center;
}

/* Footer */

.foot {
  background: var(--black);
  color: var(--on-dark-muted);
  border-top: 1px solid var(--line-dark);
  font-size: .92rem;
}

.foot-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding-block: 22px;
}

.foot-links { display: flex; gap: 20px; }
.foot-links a { color: var(--on-dark); text-decoration: none; font-weight: 500; }
.foot-links a:hover { color: var(--gold-light); }

/* Responsive */

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-visual img { width: min(60%, 300px); }
  .hero h1 { max-width: none; }
  .numbers-grid { grid-template-columns: 1fr; }
  .number { padding: 18px 0; }
  .number + .number { padding-left: 0; border-left: 0; border-top: 1px solid rgba(0, 0, 0, .18); }
  .services-grid, .steps { grid-template-columns: 1fr; }
  .compare-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .top-row .pill-outline { display: none; }
  .brand-mark { width: 38px; }
  .hero-actions .pill { width: 100%; }
  .tags li { font-size: .92rem; padding: 8px 14px; }
  .lead-form { padding: 24px 18px; border-radius: 16px; }
  .service { padding: 26px 22px; }
}
