@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Sora:wght@300;400;500;600&display=swap');

:root {
  --sb-primary: #0b1f3a;
  --sb-accent: #c8a74e;
  --sb-bg: #f6f3ee;
  --sb-surface: #ffffff;
  --sb-border: #e7e2d8;
  --sb-muted: #5e6775;
  --sb-shadow: 0 18px 40px -30px rgba(11, 31, 58, 0.55);
}

[x-cloak] {
  display: none !important;
}

.sb-section {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.sb-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--sb-muted);
}

.sb-title {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.02em;
}

.sb-subtitle {
  margin-top: 0.75rem;
  color: var(--sb-muted);
  max-width: 42rem;
}

.sb-card {
  background: var(--sb-surface);
  border: 1px solid var(--sb-border);
  border-radius: 0.75rem;
  box-shadow: var(--sb-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -40px rgba(11, 31, 58, 0.65);
}

.sb-card-link {
  text-decoration: none;
  color: inherit;
}

.sb-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem 0.75rem 0 0;
  background: #eae6de;
}

.sb-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sb-card:hover .sb-card-image img {
  transform: scale(1.04);
}

.sb-card-body {
  padding: 1.5rem;
}

.sb-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.sb-card-desc {
  margin-top: 0.75rem;
  color: var(--sb-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.sb-card--accent {
  border-color: var(--sb-accent);
  box-shadow: 0 18px 40px -30px rgba(200, 167, 78, 0.6);
}

.sb-package-card {
  overflow: hidden;
}

.sb-package-card::before {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, transparent, transparent);
  transition: background 0.2s ease;
}

.sb-package-card.sb-card--accent::before {
  background: linear-gradient(90deg, rgba(200, 167, 78, 0.5), rgba(200, 167, 78, 0.9));
}

.sb-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sb-badge--accent {
  background: rgba(200, 167, 78, 0.16);
  color: #6b5520;
}

.sb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.sb-button-primary {
  background: var(--sb-primary);
  color: #fff;
  border: 1px solid var(--sb-primary);
}

.sb-button-primary:hover {
  transform: translateY(-1px);
  background: #08162a;
}

.sb-button-outline {
  background: #fff;
  border: 1px solid var(--sb-border);
  color: var(--sb-primary);
}

.sb-button-outline:hover {
  border-color: var(--sb-primary);
}

.sb-service-card {
  position: relative;
}

.sb-service-card.is-selected {
  border-color: var(--sb-accent);
  box-shadow: 0 0 0 2px rgba(200, 167, 78, 0.5), var(--sb-shadow);
}

.sb-check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  height: 2rem;
  width: 2rem;
  border-radius: 999px;
  background: var(--sb-accent);
  color: var(--sb-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 18px -10px rgba(11, 31, 58, 0.5);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sb-service-card.is-selected .sb-check {
  opacity: 1;
  transform: scale(1);
}

.sb-floating-cart {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sb-primary);
  color: #fff;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 20px 40px -24px rgba(11, 31, 58, 0.65);
  cursor: pointer;
}

.sb-floating-cart:hover {
  background: #08162a;
}

.sb-floating-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sb-floating-badge {
  position: absolute;
  top: -0.3rem;
  right: -0.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--sb-accent);
  color: var(--sb-primary);
  font-size: 0.75rem;
  font-weight: 700;
}

.sb-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sb-form-shell {
  background: var(--sb-surface);
  border: 1px solid var(--sb-border);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--sb-shadow);
}

.sb-form-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.sb-form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .sb-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.sb-span-2 {
  grid-column: span 2;
}

.sb-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sb-primary);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sb-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--sb-primary);
}

.sb-input,
.sb-textarea {
  width: 100%;
  border-radius: 0.85rem;
  border: 1px solid var(--sb-border);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sb-input:focus,
.sb-textarea:focus {
  outline: none;
  border-color: var(--sb-accent);
  box-shadow: 0 0 0 3px rgba(200, 167, 78, 0.2);
}

.sb-divider {
  border-top: 1px solid var(--sb-border);
  margin: 2rem 0 0;
}

.sb-summary {
  background: var(--sb-surface);
  border: 1px solid var(--sb-border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--sb-shadow);
}

.pkg-modal-shell {
  width: min(920px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  background: #fff;
  border-radius: 1.75rem;
  box-shadow: 0 24px 80px rgba(11, 31, 58, 0.2);
  overflow: hidden;
}

.pkg-modal-body {
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: 1.5rem;
}

.pkg-modal-header {
  padding-right: 2.75rem;
  text-align: center;
}

.pkg-modal-title {
  margin: 0;
  color: #0b1f3a;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
}

.pkg-modal-subtitle {
  margin: 0.5rem auto 0;
  max-width: 34rem;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.55;
}

.pkg-modal-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.pkg-modal-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pkg-modal-price-block {
  color: #0b1f3a;
}

.pkg-modal-kicker {
  margin: 0;
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pkg-modal-price {
  margin: 0.35rem 0 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.05;
}

.pkg-modal-price-note {
  margin: 0.25rem 0 0;
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pkg-modal-detail {
  position: relative;
  min-height: 19rem;
  background: #f4f5f7;
  border-radius: 1.35rem;
  padding: 1.1rem;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.07);
}

.pkg-modal-detail-list {
  margin: 0;
  padding: 0;
  padding-right: 7.5rem;
  list-style: none;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.5;
}

.pkg-modal-detail-list li {
  border-bottom: 1px solid #cbd5e1;
  padding: 0 0 0.48rem;
  margin-bottom: 0.48rem;
}

.pkg-modal-detail-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pkg-modal-additional {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 6.8rem;
  height: 6.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #12b3b6;
  border-radius: 1.1rem;
  box-shadow: 0 10px 26px rgba(18, 179, 182, 0.25);
  color: #fff;
  text-align: center;
  padding: 0.75rem;
}

.pkg-modal-additional-text {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.25;
}

.pkg-modal-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pkg-modal-monitor,
.pkg-modal-control {
  position: relative;
  background: #12b3b6;
  color: #fff;
  border-radius: 1.35rem;
  box-shadow: 0 12px 28px rgba(18, 179, 182, 0.22);
}

.pkg-modal-monitor {
  padding: 1rem 1rem 1rem 1.25rem;
}

.pkg-modal-control {
  padding: 1rem 1rem 1rem 1.1rem;
}

.pkg-modal-plus {
  position: absolute;
  left: -0.9rem;
  top: 50%;
  width: 1.9rem;
  height: 1.9rem;
  transform: translateY(-50%);
  object-fit: contain;
}

.pkg-modal-monitor-row {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
}

.pkg-modal-icon-circle {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkg-modal-guard {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.pkg-modal-card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.pkg-modal-card-copy {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.84rem;
  line-height: 1.55;
}

.pkg-modal-control-grid {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.pkg-modal-control-list {
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 0.84rem;
  line-height: 1.5;
}

.pkg-modal-control-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.42rem;
}

.pkg-modal-dot {
  width: 0.38rem;
  height: 0.38rem;
  margin-top: 0.45rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #fff;
}

.pkg-modal-phone-wrap {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 0.65rem;
}

.pkg-modal-phone {
  width: 100%;
  height: 8.25rem;
  object-fit: contain;
}

.pkg-modal-disclaimer {
  margin: 1.15rem 0 0;
  color: #64748b;
  font-size: 0.74rem;
  line-height: 1.45;
  text-align: center;
}

.pkg-modal-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.pkg-modal-cta {
  min-width: 11rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #12b3b6;
  color: #fff;
  padding: 0.72rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(18, 179, 182, 0.2);
  transition: background 0.2s ease;
}

.pkg-modal-cta:hover {
  background: #0f999c;
}

@media (min-width: 900px) {
  .pkg-modal-body {
    padding: 1.7rem 1.9rem 1.5rem;
  }

  .pkg-modal-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .pkg-modal-control-grid {
    grid-template-columns: minmax(0, 1fr) 8.6rem;
  }
}

@media (max-width: 899px) {
  .pkg-modal-shell {
    width: min(700px, calc(100vw - 1rem));
    max-height: calc(100vh - 1rem);
  }

  .pkg-modal-body {
    max-height: calc(100vh - 1rem);
    padding: 1rem;
  }

  .pkg-modal-detail {
    min-height: 15rem;
  }

  .pkg-modal-detail-list {
    padding-right: 0;
  }

  .pkg-modal-additional {
    position: static;
    margin-top: 1rem;
    width: 100%;
    height: auto;
    min-height: 5rem;
  }
}
