
:root {
  --container: 1160px;
  --bg: #f7f4ef;
  --ink: #151619;
  --muted: #4f545b;
  --line: rgba(21, 22, 25, 0.12);
  --panel: #ffffff;
  --panel-soft: #f0ede8;
  --accent: #1f7a73;
  --accent-strong: #0f5b55;
  --glow: #f2c94c;
  --danger: #e45d4a;
  --shadow-sm: 0 10px 24px rgba(21, 22, 25, 0.08);
  --shadow-md: 0 24px 50px rgba(21, 22, 25, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: radial-gradient(900px 400px at 20% -10%, rgba(31, 122, 115, 0.18), transparent 60%),
              radial-gradient(700px 400px at 85% 0%, rgba(242, 201, 76, 0.2), transparent 60%),
              var(--bg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-dark { background: #101417; color: #fff; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}

.utility-bar {
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--line);
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
}
.utility-links { display: flex; gap: 16px; }
.utility-cta { color: var(--muted); }

.nav-shell {
  background: rgba(247, 244, 239, 0.8);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.brand-logo { }
.brand-name { font-weight: 700; letter-spacing: .04em; }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
}

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

.nav-item { position: relative; }
.nav-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
}
.nav-item[open] > summary,
.nav-item > summary:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
}
.nav-item > summary::-webkit-details-marker { display: none; }
.nav-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 520px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  display: grid;
  gap: 14px;
}
.nav-cards { display: grid; gap: 12px; }
.nav-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
}
.nav-card img { width: 32px; height: 32px; }
.nav-title { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.nav-headline { font-weight: 700; margin-bottom: 4px; }
.nav-links { display: flex; gap: 12px; flex-wrap: wrap; }
.nav-link {
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f9f7f3;
}
.nav-link span { color: var(--muted); font-size: 13px; }
.nav-plain { padding: 8px 12px; font-weight: 600; }

.hero {
  padding: 70px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}
.hero-card {
  background: linear-gradient(145deg, #fff, #f9f7f3);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(31, 122, 115, 0.18);
  right: -80px;
  top: -80px;
}
.hero-card h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  margin: 0 0 18px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--panel-soft);
  height: 100%;
  object-fit: cover;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-weight: 500;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 30% 30%, var(--glow), #f7a928);
  border-radius: 50%;
}

.logo-strip {
  padding: 32px 0 18px;
}
.logo-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: center;
}
.logo-title { font-weight: 600; }
.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
  align-items: center;
}
.logos img { background: #fff; border-radius: 12px; padding: 8px; border: 1px solid var(--line); }

.split {
  padding: 70px 0;
}
.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}
.split-copy h2 strong { color: var(--accent); }
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--panel-soft);
}

.section-head { margin-bottom: 28px; }
.section-head h2 {

  margin: 0 0 10px;
}
.section-head.center { text-align: center; }
.section-head p { color: var(--muted); max-width: 70ch; margin: 0 auto; }

.features { padding: 70px 0; }

.featur_pic {width:65%;  

}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.feature-card h4 { margin: 10px 0 8px; }
.feature-card p { margin: 0; color: var(--muted); }
.feature-icon { width: 30%; margin: 0 auto 8px; }

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

.feature-showcase { padding: 70px 0; }
.showcase-grid { display: grid; gap: 28px; }
.showcase-item {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.showcase-item:nth-child(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}
.showcase-item:nth-child(even) .showcase-copy { order: 2; }
.showcase-item:nth-child(even) .showcase-media { order: 1; }
.showcase-copy h3 { margin: 0 0 8px;}
.showcase-copy p { margin: 0; color: var(--muted); }
.showcase-media img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background: var(--panel-soft);
}

.splitbookings { padding: 70px 0; }
.splitbookings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.splitbookings-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.splitbookings-card img {
  border-radius: var(--radius-md);
  background: var(--panel-soft);
}
.image-button {
  border: none;
  background: transparent;
  padding: 0;
  width: 100%;
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 80;
}
.lightbox.is-open { display: flex; }
.lightbox-content {
  position: relative;
  max-width: min(92vw, 1100px);
  max-height: 90vh;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-md);
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: var(--panel-soft);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}
.process-item {
  background: var(--panel-soft);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid var(--line);
}
.process-item p { margin: 6px 0 0; color: var(--muted); }

.case-studies { padding: 70px 0; }
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.case-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
}
.case-icon { width: 34px; }
.quote { font-size: 15px; color: var(--muted); }
.case-name { font-weight: 700; }
.case-meta {
  display: grid;
  gap: 10px;
}
.case-meta div { display: grid; gap: 4px; }
.case-meta span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }

.demo { padding: 70px 0; }
.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}
.demo-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.demo-form {
  display: grid;
  gap: 12px;
}
.demo-form label {
  font-weight: 600;
  font-size: 13px;
}
.demo-form input,
.demo-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: "Space Grotesk", sans-serif;
}
.demo-form textarea { resize: vertical; }
.form-row { display: grid; gap: 6px; }
.form-hint {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
}
.form-hint.success { background: rgba(31, 122, 115, 0.12); color: #0f5b55; }
.form-hint.error { background: rgba(228, 93, 74, 0.12); color: #a23426; }
.hp-field { position: absolute; left: -9999px; }
.demo-copy h2 { margin: 0 0 10px;  }
.demo-copy .lead { color: var(--muted); }
.contact-card {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  width: fit-content;
}
.contact-card img { width: 48px; height: 48px; border-radius: 50%; }
.contact-name { font-weight: 600; }

.trial-banner {
  margin-top: 26px;
}
.trial-banner-inner {
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  border: 1px solid rgba(31, 122, 115, 0.25);
  background:
    linear-gradient(135deg, rgba(31, 122, 115, 0.14), rgba(242, 201, 76, 0.18)),
    #fff;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  width: 100%;
}
.trial-banner-inner img {
  width: 100%;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px;
}
.trial-banner-inner p {
  margin: 0;
  color: #2b3138;
  font-weight: 500;
}
.trial-banner-inner p strong { color: var(--accent-strong); }

.story { padding: 60px 0; }
.story-body { max-width: 820px; }
.story-body h3 { margin-top: 26px; }

.addons { padding: 70px 0; }
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.addon-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.addon-icon { width: 34px; }

.faq { padding: 70px 0; }
.accordion {
  display: grid;
  gap: 12px;
}
.accordion-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 16px;
  background: transparent;
  border: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.accordion-panel {
  display: none;
  padding: 0 16px 16px;
  color: var(--muted);
}
.accordion-item.is-open .accordion-panel { display: block; }

.legal-hero {
  padding: 70px 0 24px;
}
.legal-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 2vw + 2rem, 3rem);
}
.legal-hero p {
  color: var(--muted);
  max-width: 70ch;
  margin: 0;
}
.legal-content {
  padding: 24px 0 80px;
}
.legal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2vw + 18px, 40px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 22px;
}
.legal-card h2 {
  margin: 0;
  font-size: 1.4rem;
}
.legal-card h3 {
  margin: 0;
  font-size: 1.1rem;
}
.legal-card p { margin: 0; color: var(--muted); }
.legal-card strong { color: var(--ink); }
.legal-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}
.legal-grid {
  display: grid;
  gap: 16px;
}

.partner-intro {
  display: grid;
  gap: 16px;
}
.partner-benefits {
  display: grid;
  gap: 12px;
}
.partner-benefits li {
  margin-bottom: 6px;
}
.partner-projects {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.partner-project-card {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  display: grid;
  gap: 10px;
}
.partner-project-card h3 { margin: 0; }
.partner-project-card p { margin: 0; color: var(--muted); }
.partner-project-card a { color: var(--accent-strong); font-weight: 600; }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.site-footer {
  background: #101417;
  color: #f7f4ef;
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
}
.footer-logo { width: 120px; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.footer-links a { display: block; margin-bottom: 6px; color: #f7f4ef; }
.footer-cta { display: grid; gap: 8px; }
.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
  font-size: 14px;
}
.footer-bottom a { color: #f7f4ef; }

.popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  z-index: 70;
}
.popup.is-open { display: flex; }
.popup-content {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  max-width: 520px;
  width: calc(100% - 40px);
  box-shadow: var(--shadow-md);
  position: relative;
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: var(--panel-soft);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}
.popup-title { font-weight: 700; }
.popup-text { color: var(--muted); }
.popup-form input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
}
.submit-button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .nav-panel { position: static; width: 100%; }
  .hero-grid, .split-grid, .demo-grid { grid-template-columns: 1fr; }
  .showcase-item {
    grid-template-columns: 1fr;
    display: block;
  }
  .showcase-item .showcase-media { order: 1; }
  .showcase-item .showcase-copy { order: 2; }
  .showcase-item .showcase-media,
  .showcase-item .showcase-copy {
    width: 100%;
  }
  .showcase-media img,
  .featur_pic {
    width: 100%;
    height: auto;
  }
  .logo-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trial-banner-inner { grid-template-columns: 1fr; text-align: center; }
}
