:root {
  --primary: #175252;
  --success: #10b981;
  --bg-soft: #f8fafc;
  --border: #e2e8f0;
  --text-main: #fec928;
  --text-muted: #fec928;
  --rule-bg: #ffffff;
  --rule-border: #f1f5f9;
  --accent-amber: #d97706;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --border-color: #fec928;
  --studio-dark: #0f172a;
  --studio-accent: #fec928; /* Modern Indigo */
  --studio-text: #334155;
  --studio-bg: #ffffff;
  --header-bg: #ffffff;
  --text-main: #1e293b;
  --text-dim: #64748b;
  --accent-star: #fbbf24;
  --border-color: #f1f5f9;
  --pb-hero-bg: #0f4c4c; /* Rich dark slate */
  --pb-text-light: #f1f5f9;
  --pb-text-dim: #94a3b8;
  --pb-accent-teal: #0f4c4c; /* Modern Teal */
  --pb-teal-light: #ccfbf1;
  --pb-teal-hover: #0f766e;
}

.feature-container {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.feature-card {
  width: 100%;

  background: white;
  border-radius: 24px;
  box-shadow:
    0 10px 25px -5px rgba(0, 0, 0, 0.05),
    0 8px 10px -6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid var(--border);
}

.feature-header {
  background: var(--primary);
  padding: 32px;
  color: white;
}

.feature-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #94a3b8;
}

.feature-body {
  padding: 32px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  transition: all 0.2s ease;
}

.feature-item.included {
  background: #f0fdf4;
  border: 1px solid #dcfce7;
}

.feature-item.included:hover {
  transform: translateY(-2px);
  background: #dcfce7;
}

.icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.included .icon-circle {
  background: var(--success);
  color: white;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.icon-circle svg {
  width: 18px;
  height: 18px;
}

.feature-item span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.feature-item.excluded {
  background: #f1e2dc;
  border: 1px dashed #f6631f;
  opacity: 0.8;
}

.x-icon {
  background: red;
  color: white;
}

.text-group {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.text-group .label {
  color: #0f4c4c;
  font-weight: 600;
}

.text-group small {
  font-size: 12px;
  color: #94a3b8;
  font-style: italic;
}

.rules-container {
  font-family: "Inter", sans-serif;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.rules-box {
  width: 100%;
  background: var(--rule-bg);
  padding: 40px;
  border-radius: 2px; /* Sharp, modern edges */
  border-left: 4px solid #fec928;
}

.rules-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.header-icon {
  color: var(--accent-amber);
  width: 24px;
  height: 24px;
}

.rules-header h2 {
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dark);
}

.rules-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-border);
}

.rule-number {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-amber);
  margin-top: 0px;
}

.rule-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
}

.rule-item strong {
  color: #000;
  font-weight: 600;
}

/* Highlight the financial/damage rule */
.rule-item.warning {
  border-bottom: none;
  background-color: #f1e2dc;
  padding: 16px;
  margin-top: 8px;
  border-radius: 4px;
}
.rule-item.warning p {
  color: red;
}

.rules-footer {
  text-align: center;
  position: relative;
  margin-top: 20px;
}

.rules-footer p {
  font-size: 14px;
  font-style: italic;
  color: var(--text-light);
  background: white;
  display: inline-block;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.footer-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rule-border);
  z-index: 1;
}

.about-section {
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}
.about-content {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.about-container {
  position: relative;
  background: var(--studio-bg);
  padding: 60px;
  border-radius: 40px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.02),
    0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.quote-mark {
  position: absolute;
  top: -20px;
  left: 40px;
  font-size: 120px;
  font-family: serif;
  color: var(--studio-accent);
  opacity: 0.15;
  line-height: 1;
}

.about-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--studio-accent);
  margin-bottom: 16px;
}

.studio-name {
  font-size: 36px;
  font-weight: 800;
  color: var(--studio-dark);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.about-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--studio-text);
  margin-bottom: 20px;
  text-align: left;
}

.about-text strong {
  color: var(--studio-dark);
}

.about-text.secondary {
  font-size: 16px;
  color: #64748b;
}

.highlight {
  border-bottom: 2px solid var(--studio-accent);
  color: var(--studio-dark);
  font-weight: 600;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.pill {
  background: #175252;
  color: var(--studio-accent);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #e0e7ff;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .about-container {
    padding: 40px 24px;
    border-radius: 24px;
  }
  .studio-name {
    font-size: 28px;
  }
  .quote-mark {
    font-size: 80px;
    left: 20px;
  }
}

.pod-meta-wrapper {
  /* Scoped Variables to prevent conflict */
  --pm-bg: #ffffff;
  --pm-text-dark: #1e293b;
  --pm-text-slate: #64748b;
  --pm-gold: #fbbf24;
  --pm-border: #f1f5f9;

  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  padding: 40px 20px;
  background-color: #f8fafc;
  display: flex;
  justify-content: center;
}

.pod-meta-card {
  width: 100%;
  max-width: 850px;
  background: var(--pm-bg);
  padding: 24px 32px;
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--pm-border);
}

.pod-meta-name {
  margin: 0 0 8px 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--pm-text-dark);
  letter-spacing: -0.03em;
}

.pod-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--pm-text-dark);
  font-weight: 600;
  font-size: 14px;
}

.pod-meta-subtext {
  margin: 4px 0 0 0;
  font-size: 13px;
  color: var(--pm-text-slate);
  padding-left: 26px;
}

.pod-meta-svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pod-meta-pin {
  color: #f43f5e;
}

.pod-meta-divider {
  width: 1px;
  height: 60px;
  background: var(--pm-border);
  margin: 0 40px;
}

.pod-meta-metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}

.pod-meta-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.pod-meta-star {
  color: var(--pm-gold);
}
.pod-meta-bold {
  font-weight: 700;
  color: var(--pm-text-dark);
}
.pod-meta-dimmed {
  color: var(--pm-text-slate);
  font-size: 12px;
}

.pod-meta-pill {
  background: #f8fafc;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid var(--pm-border);
}

.pod-meta-users {
  width: 16px;
  height: 16px;
  color: var(--pm-text-slate);
}

/* Mobile Optimization */
@media (max-width: 650px) {
  .pod-meta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .pod-meta-divider {
    display: none;
  }
  .pod-meta-metrics {
    width: 100%;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--pm-border);
  }
}
.plan-section {
  /* max-width: 700px; */
  /* margin: 100px auto; */
  padding: 20px;
}

.plan-label {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #fec92a;
  padding-bottom: 15px;
}

.plan-name {
  font-size: 32px;
  font-weight: 600;
}

.plan-price {
  text-align: right;
}

.price {
  font-size: 28px;
  font-weight: bold;
}

.per {
  font-size: 14px;
  color: #666;
}

/* small accent line */
.plan-row::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: black;
  transform: translateY(-25px);
}

.plan-row {
  position: relative;
}

/* Container to wrap your existing plan-section and the new button */
.pod-book-container {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: "Inter", sans-serif;
}

/* Your existing styles (adjusted for layout) */
.plan-label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.plan-name {
  font-size: 24px;
  font-weight: 800;
}

.plan-price {
  text-align: right;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
}

.per {
  font-size: 12px;
  color: #94a3b8;
}

/* The New Booking Button */
.pod-book-btn {
  /* width: 100%; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #0f4c4c; /* Matching your 'Basic' color theme */
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(15, 76, 76, 0.3);
}

.pod-book-btn:hover {
  background-color: #0a3a3a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 76, 76, 0.4);
}

.pod-book-btn:active {
  transform: translateY(0);
}

.pod-book-btn svg {
  transition: transform 0.2s ease;
}

.pod-book-btn:hover svg {
  transform: scale(1.1);
}

.pod-booking-hero-container {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  background-color: var(--pb-hero-bg);
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  overflow: hidden; /* For mosaic layout */
  margin-top: 150px;
}

.pod-booking-hero-content {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.pod-booking-text-block {
  padding-right: 40px;
}

.pod-booking-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pb-accent-teal);
  margin-bottom: 20px;
}

.pod-booking-headline {
  font-size: 56px;
  font-weight: 900;
  color: var(--pb-text-light);
  line-height: 1.1;
  letter-spacing: -2px;
  margin: 0 0 24px 0;
}

.pod-booking-accent-highlight {
  color: var(--pb-accent-teal);
}

.pod-booking-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--pb-text-dim);
  margin-bottom: 40px;
  font-weight: 400;
}

.pod-booking-action-row {
  display: flex;
  gap: 16px;
}

.pod-booking-btn-primary {
  background-color: var(--pb-accent-teal);
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pod-booking-btn-primary:hover {
  background-color: var(--pb-teal-hover);
  transform: translateY(-2px);
  color: #fec92c;
}

.pod-booking-btn-secondary {
  background-color: transparent;
  color: var(--pb-text-light);
  border: 2px solid #fec92c;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pod-booking-btn-secondary:hover {
  border-color: var(--pb-text-light);
  background: rgba(255, 255, 255, 0.05);
  color: #fec92c;
}

/* Image Mosaic Styling */
.pod-booking-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  grid-auto-rows: minmax(180px, auto);
}

.mosaic-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.mosaic-item:hover {
  transform: scale(1.02);
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mosaic-lg {
  grid-column: 1 / -1;
  grid-row: 1 / 3;
}

.mosaic-md {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

.mosaic-sm {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .pod-booking-hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .pod-booking-text-block {
    padding-right: 0;
  }
  .pod-booking-headline {
    font-size: 40px;
  }
  .pod-booking-action-row {
    justify-content: center;
  }
  .pod-booking-mosaic {
    max-width: 500px;
    margin: 0 auto;
  }
}

.podmatrix-importance {
  background-color: #0f4c4c; /* Deep Forest Green */
  color: #ffffff;
  padding: 60px 20px;
  font-family: sans-serif;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-left: 8px solid #fec92c; /* Golden Yellow Accent */
  padding-left: 30px;
}

.podmatrix-importance h2 {
  color: #fec92c;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.podmatrix-importance h3 {
  margin-bottom: 20px;
  font-weight: 300;
}

.podmatrix-importance ul {
  list-style: none;
  padding: 0;
}

.podmatrix-importance ul li {
  margin-bottom: 15px;
  line-height: 1.6;
}

.podmatrix-importance ul li strong {
  color: #fec92c;
}
