.dc-price-wrap *,
.dc-price-wrap *::before,
.dc-price-wrap *::after { box-sizing: border-box; }

.dc-price-wrap {
  --teal:        #5FC2BE;
  --teal-dark:   #4FAFB0;
  --navy:        #1F3F5B;
  --white:       #FFFFFF;
  --off-white:   #F5F7F8;
  --cta:         #00C2A8;
  --cta-dark:    #00a891;
  --text-main:   #1F3F5B;
  --text-muted:  #5a7388;
  --border:      #dce8ef;
  --shadow-soft: 0 4px 24px rgba(31,63,91,0.08);
  --gradient:    linear-gradient(135deg, #5FC2BE 0%, #1F3F5B 100%);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  font-family: var(--font-body);
  color: var(--text-main);
}

/* Reveal */
.dc-price-wrap [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.dc-price-wrap [data-reveal-delay="1"] { transition-delay: .1s; }
.dc-price-wrap [data-reveal-delay="2"] { transition-delay: .2s; }
.dc-price-wrap [data-reveal].visible   { opacity: 1; transform: none; }

/* Section */
.dc-price-wrap .dc-section {
  padding: 80px 0 100px;
  background: var(--white);
}
.dc-price-wrap .dc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Single-column centred layout */
.dc-price-wrap .dc-layout {
  display: block;
  max-width: 860px;
  margin: 0 auto;
}

/* Main card */
.dc-price-wrap .dc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* Pricing table */
.dc-price-wrap .dc-table {
  width: 100%;
  border-collapse: collapse;
}
.dc-price-wrap .dc-table thead { background: rgba(95,194,190,0.08); }
.dc-price-wrap .dc-table thead th {
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.dc-price-wrap .dc-table thead th:last-child { text-align: right; }
.dc-price-wrap .dc-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.dc-price-wrap .dc-table tbody tr:last-child { border-bottom: none; }
.dc-price-wrap .dc-table tbody tr:hover { background: rgba(95,194,190,0.04); }
.dc-price-wrap .dc-table tbody td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-main);
}
.dc-price-wrap .dc-table tbody td:first-child { font-weight: 500; }
.dc-price-wrap .dc-table tbody td:last-child {
  text-align: right;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.dc-price-wrap .dc-price-highlight { color: var(--cta) !important; }

/* Add-ons accordion */
.dc-price-wrap .dc-addons-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px 16px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.dc-price-wrap .dc-addons-header h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.dc-price-wrap .dc-addons-toggle {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--teal);
  transition: transform .25s;
  line-height: 1;
}
.dc-price-wrap .dc-addons-toggle.open { transform: rotate(180deg); }
.dc-price-wrap .dc-addons-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease;
}
.dc-price-wrap .dc-addons-body.open { max-height: 2000px; }

/* Section heading */
.dc-price-wrap .dc-section-heading {
  text-align: center;
  margin-bottom: 56px;
}
.dc-price-wrap .dc-section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(95,194,190,0.12);
  padding: 7px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.dc-price-wrap .dc-section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 16px;
}
.dc-price-wrap .dc-section-heading p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto;
}

/* Footer buttons */
.dc-price-wrap .dc-footer-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.dc-price-wrap .dc-btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cta);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,194,168,0.35);
  white-space: nowrap;
}
.dc-price-wrap .dc-btn-cta:hover {
  background: var(--cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,194,168,0.45);
  color: #fff;
  text-decoration: none;
}
.dc-price-wrap .dc-btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--border);
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.dc-price-wrap .dc-btn-call:hover {
  border-color: var(--teal);
  color: var(--teal);
  text-decoration: none;
}
.dc-price-wrap .dc-btn-call svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
  animation: dc-ring 2.5s ease-in-out infinite;
}
@keyframes dc-ring {
  0%,100%{ transform:rotate(0deg); }
  10%    { transform:rotate(-15deg); }
  20%    { transform:rotate(15deg); }
  30%    { transform:rotate(-10deg); }
  40%    { transform:rotate(10deg); }
  50%    { transform:rotate(0deg); }
}

/* Mobile */
@media (max-width: 640px) {
  .dc-price-wrap .dc-section       { padding: 48px 0 64px; }
  .dc-price-wrap .dc-container     { padding: 0 16px; }
  .dc-price-wrap .dc-table thead th,
  .dc-price-wrap .dc-table tbody td { padding: 12px 14px; }
  .dc-price-wrap .dc-footer-actions { flex-direction: column; align-items: stretch; }
  .dc-price-wrap .dc-btn-cta,
  .dc-price-wrap .dc-btn-call       { justify-content: center; }
}
