@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600&display=swap");

:root {
  --ink: #14171f;
  --muted: #5b6473;
  --accent: #2c5ff6;
  --accent-2: #f2c94c;
  --surface: #f6f7fb;
  --surface-2: #eef1f7;
  --stroke: #d9dde7;
  --shadow: 0 18px 50px rgba(20, 23, 31, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 6vw 0;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav a {
  color: var(--ink);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
  padding: 48px 6vw 80px;
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 24px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero-panel {
  flex: 1 1 320px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(20, 23, 31, 0.85);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.btn.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-slim {
  padding: 50px 6vw;
}

.section-contrast {
  background: var(--surface);
}

.section-offset {
  position: relative;
}

.offset-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  max-width: 520px;
}

.offset-card.shift-right {
  margin-left: auto;
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface-2);
  font-size: 0.85rem;
  color: var(--muted);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.split > div {
  flex: 1 1 280px;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
}

.form-panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  font-family: inherit;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.footer {
  padding: 40px 6vw;
  background: var(--ink);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #ffffff;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 16px;
  z-index: 20;
  display: none;
}

.banner-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.banner-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.banner-actions .accept {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.content-grid > div {
  flex: 1 1 260px;
}

.muted {
  color: var(--muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  border: 1px solid var(--stroke);
  min-width: 160px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: #ffffff;
}

.service-item img {
  width: 90px;
  border-radius: 14px;
}

.section-image {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.floating-note {
  background: var(--accent-2);
  padding: 12px 18px;
  border-radius: 16px;
  display: inline-flex;
  font-weight: 600;
}

@media (max-width: 720px) {
  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
