@import url("./theme.css");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
}

h1, h2, h3 {
  font-family: var(--font-heading);
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 16px 0;
  color: var(--muted);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  background: rgba(255, 253, 251, 0.88);
  backdrop-filter: blur(8px);
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, #d6a08f 100%);
  color: var(--white);
  font-weight: 700;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 44px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.brand-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.brand-sub {
  font-size: 13px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(122, 67, 56, 0.16);
}

.btn.ghost {
  background: transparent;
  color: var(--accent-dark);
  border-color: #e8dbd4;
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
  padding: 40px 0 20px 0;
}

.badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f5ece5;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.hero-copy p {
  font-size: 17px;
  max-width: 520px;
  color: #7f6f69;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 22px 0 26px 0;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  font-size: 13px;
  color: var(--muted);
}

.hero-proof strong {
  display: block;
  font-size: 20px;
  color: var(--ink);
}

.hero-proof > div {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid var(--card-border);
  box-shadow: 0 10px 20px rgba(33, 25, 23, 0.04);
}

.hero-visual {
  position: relative;
}

.visual-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: 0 16px 40px rgba(33, 25, 23, 0.08);
  border: 1px solid var(--card-border);
  position: relative;
  z-index: 1;
}

.visual-card.minimal {
  padding: 18px;
}

.visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

.visual-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.visual-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 12px;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.stat {
  background: var(--mist);
  padding: 12px;
  border-radius: 12px;
  font-size: 12px;
}

.stat strong {
  display: block;
  font-size: 16px;
  color: var(--ink);
  margin-top: 4px;
}

.progress {
  height: 10px;
  background: #efe5dc;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #d59e8f 100%);
}

.visual-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

.visual-glow {
  position: absolute;
  inset: 40% -10% -10% 20%;
  background: radial-gradient(circle, rgba(248, 231, 221, 0.6) 0%, transparent 70%);
  z-index: 0;
}

.logos {
  margin: 40px 0 10px 0;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border: 1px solid var(--card-border);
}

.trust-band {
  margin-top: 10px;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 14px 28px rgba(33, 25, 23, 0.08);
  border: 1px solid var(--card-border);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
  align-items: center;
}

.trust-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.trust-pill {
  background: var(--mist);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-align: center;
  border: 1px solid var(--card-border);
}

.logos-title {
  font-weight: 600;
}

.logos-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.logo-chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 12px;
}

.section-head {
  margin: 60px 0 24px 0;
}

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

.hr-topics {
  margin-top: 62px;
}

.topics-accordion {
  display: grid;
  gap: 12px;
}

.topics-accordion details {
  background: #211a16;
  border: 1px solid rgba(196, 154, 99, 0.28);
  border-radius: 14px;
  padding: 14px 16px;
}

.topics-accordion summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: #f4ede4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topics-accordion summary::-webkit-details-marker {
  display: none;
}

.topics-accordion summary::after {
  content: "+";
  color: #d6b086;
  font-weight: 700;
}

.topics-accordion details[open] summary::after {
  content: "–";
}

.topics-accordion p {
  margin: 10px 0 0;
  color: #ceb9a1;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 12px 24px rgba(33, 25, 23, 0.06);
  border: 1px solid var(--card-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(33, 25, 23, 0.1);
}

.feature-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--mist);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
}

.compliance {
  margin-top: 60px;
}

.compliance-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  background: linear-gradient(140deg, #fff8f4 0%, #f0e2d9 100%);
  padding: 28px;
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 36px rgba(33, 25, 23, 0.08);
}

.compliance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.compliance-tags span {
  background: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid var(--card-border);
}

.compliance-panel {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(33, 25, 23, 0.06);
  border: 1px solid var(--card-border);
  display: grid;
  gap: 12px;
}

.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

.panel-row strong {
  color: var(--ink);
}

.mobile {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
  margin-top: 70px;
}

.phone {
  display: grid;
  place-items: center;
}

.phone-screen {
  width: 260px;
  background: #1a1614;
  border-radius: 36px;
  padding: 18px;
  color: var(--white);
  box-shadow: 0 16px 32px rgba(33, 25, 23, 0.12);
}

.phone-header {
  font-size: 12px;
  margin-bottom: 12px;
  color: #f6d7c7;
}

.phone-card {
  background: #24201e;
  padding: 12px;
  border-radius: 14px;
  margin-bottom: 10px;
  font-size: 12px;
}

.phone-card.accent {
  background: #3a2c28;
  color: #f4d5c8;
}

.pricing {
  margin-top: 70px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 12px 24px rgba(33, 25, 23, 0.06);
  border: 1px solid var(--card-border);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(33, 25, 23, 0.1);
}

.price-card.highlight {
  border: 2px solid var(--accent);
}

.price {
  font-size: 30px;
  font-weight: 700;
  margin: 10px 0 4px 0;
}

.price-sub {
  color: var(--muted);
  margin-bottom: 12px;
}

.price-list {
  color: var(--muted);
  margin-bottom: 18px;
}

.tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--accent);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
}

.cta {
  margin: 80px 0;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, #f2ddd2 0%, #f9f1ea 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 18px 36px rgba(33, 25, 23, 0.08);
}

.cta-actions {
  display: flex;
  gap: 12px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 12px 24px rgba(33, 25, 23, 0.06);
  border: 1px solid var(--card-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(33, 25, 23, 0.1);
}

.footer {
  margin: 80px 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero,
  .mobile,
  .compliance-card,
  .trust-card {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .trust-pills {
    grid-template-columns: 1fr;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 18px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-cta {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Reservation-style landing refresh */
.nav {
  background: rgba(18, 14, 11, 0.9);
  border: 1px solid rgba(196, 154, 99, 0.2);
  border-radius: 18px;
  padding: 14px 18px;
}

.brand-mark {
  background: linear-gradient(145deg, #0f0b09 0%, #c49a63 100%);
  border: 1px solid rgba(196, 154, 99, 0.5);
}

.brand-title,
.brand-sub,
.nav-links a,
.logos-title,
.logo-chip {
  color: #f4ede4;
}

.hero-proof > div,
.visual-card,
.feature-card,
.compliance-card,
.price-card,
.faq-card,
.cta,
.trust-card {
  background: #211a16;
  border-color: rgba(196, 154, 99, 0.22);
  color: #f4ede4;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.hero-copy p,
.section-head p,
.price-sub,
.price-list,
.footer,
.feature-card p,
.compliance-card p,
.faq-card p,
.mobile-copy p {
  color: #ceb9a1;
}

.badge,
.pill,
.logo-chip,
.trust-pill,
.compliance-tags span {
  background: #2c231e;
  color: #f4ede4;
  border: 1px solid rgba(196, 154, 99, 0.3);
}

.btn {
  background: linear-gradient(90deg, #8a5f3f, #c49a63);
  color: #120f0d;
  border: 1px solid rgba(196, 154, 99, 0.35);
}

.btn.ghost {
  background: rgba(196, 154, 99, 0.08);
  color: #f4ede4;
  border-color: rgba(196, 154, 99, 0.34);
}

/* Mobile hardening overrides */
@media (max-width: 900px) {
  .nav {
    top: env(safe-area-inset-top);
  }

  .nav-cta {
    width: 100%;
    flex-wrap: wrap;
  }

  .nav-cta .btn {
    flex: 1 1 180px;
    min-height: 44px;
  }

  .hero {
    gap: 28px;
    padding-top: 24px;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 14px;
  }

  .nav {
    border-radius: 14px;
    padding: 12px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .brand-title {
    font-size: 11px;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .nav-cta .btn {
    width: 100%;
  }

  .visual-card,
  .feature-card,
  .trust-card,
  .compliance-card,
  .price-card,
  .faq-card,
  .cta {
    padding: 16px;
  }

  .phone-screen {
    width: min(100%, 280px);
  }
}

/* Clean light landing refinement */
body {
  background: linear-gradient(180deg, #fffdf8 0%, #fff8ef 56%, #f7ebdc 100%) !important;
  color: #2f241c !important;
}

.nav {
  background: rgba(255, 251, 245, 0.94) !important;
  border: 1px solid rgba(176, 132, 84, 0.24) !important;
}

.brand-mark {
  background: linear-gradient(135deg, #f3dcc4 0%, #c49769 100%) !important;
  border: 1px solid rgba(176, 132, 84, 0.35) !important;
}

.brand-title,
.brand-sub,
.nav-links a,
.logos-title,
.logo-chip {
  color: #4c3727 !important;
}

.hero-proof > div,
.visual-card,
.feature-card,
.compliance-card,
.price-card,
.faq-card,
.cta,
.trust-card,
.compliance-panel {
  background: #fffdf9 !important;
  border-color: rgba(176, 132, 84, 0.26) !important;
  color: #3a2b1f !important;
  box-shadow: 0 12px 24px rgba(66, 45, 28, 0.08) !important;
}

.hero-copy p,
.section-head p,
.price-sub,
.price-list,
.footer,
.feature-card p,
.compliance-card p,
.faq-card p,
.mobile-copy p,
.panel-row {
  color: #6f5844 !important;
}

.badge,
.pill,
.logo-chip,
.trust-pill,
.compliance-tags span {
  background: #f6e8d7 !important;
  color: #4f3a2a !important;
  border: 1px solid rgba(176, 132, 84, 0.32) !important;
}

.btn {
  background: linear-gradient(135deg, #c69a6f, #b48559) !important;
  color: #2b1d12 !important;
  border: 1px solid rgba(153, 107, 62, 0.42) !important;
}

.btn.ghost {
  background: #f5e8d8 !important;
  color: #5b412d !important;
  border: 1px solid rgba(171, 126, 83, 0.38) !important;
}

.panel-row strong,
.hero-proof strong {
  color: #3b2c20 !important;
}
