:root {
  --bg: #faf9f6;
  --surface: #ffffff;
  --surface-soft: #f4edd9;
  --ink: #07111f;
  --muted: #535f6e;
  --line: #e5d9c5;
  --teal: #b5862c;
  --emerald: #dbb85a;
  --gold: #c49938;
  --blue: #16243a;
  --rose: #a55a43;
  --dark: #07111f;
  --shadow: 0 10px 30px rgba(7, 17, 31, 0.04), 0 1px 3px rgba(7, 17, 31, 0.02);
  --shadow-hover: 0 20px 40px rgba(196, 153, 56, 0.12), 0 1px 6px rgba(196, 153, 56, 0.04);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(219, 227, 234, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-img {
  width: 168px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--dark), var(--gold));
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(198, 154, 60, 0.24);
}

.brand strong, .brand small { display: block; }
.brand strong { font-size: 15px; line-height: 1.1; }
.brand small { margin-top: 2px; color: var(--muted); font-size: 12px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #344054;
  font-size: 14px;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.btn-primary {
  color: #07111f;
  background: linear-gradient(135deg, #efd88e, var(--gold));
  box-shadow: 0 16px 34px rgba(198, 154, 60, 0.26);
}

.btn-dark {
  color: #fff;
  background: var(--dark);
  box-shadow: 0 14px 32px rgba(16, 24, 40, 0.18);
}

.btn-light {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 70px;
  background:
    linear-gradient(180deg, #fffdf8 0%, #f8f5ef 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(198, 154, 60, 0.11) 1px, transparent 1px),
    linear-gradient(180deg, rgba(198, 154, 60, 0.11) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(470px, 1.05fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  color: var(--teal);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 900;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 5vw, 78px);
  line-height: 0.98;
  font-weight: 900;
  font-family: "Playfair Display", Georgia, serif;
}

.page-hero h1 { max-width: 900px; }

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  font-weight: 900;
  font-family: "Playfair Display", Georgia, serif;
}

h3 { line-height: 1.2; }

p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.lead {
  max-width: 720px;
  color: #475467;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.product-board {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.board-top {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c8d2dc;
}

.board-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 14px;
}

.camera-panel,
.builder-panel,
.metric,
.module-card,
.solution-card,
.price-card,
.resource-card,
.stat-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.camera-panel {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background:
    linear-gradient(155deg, rgba(8, 17, 31, 0.9), rgba(53, 39, 18, 0.82)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 44px);
}

.customer-figure {
  position: absolute;
  left: 50%;
  top: 44px;
  width: 220px;
  height: 330px;
  transform: translateX(-50%);
}

.hair {
  position: absolute;
  left: 50%;
  top: 0;
  width: 172px;
  height: 214px;
  transform: translateX(-50%);
  border-radius: 48% 48% 30% 30%;
  background: #182234;
}

.face {
  position: absolute;
  left: 50%;
  top: 48px;
  width: 138px;
  height: 178px;
  transform: translateX(-50%);
  border-radius: 46%;
  background: linear-gradient(#dca386, #bd735f);
}

.necklace {
  position: absolute;
  left: 50%;
  top: 232px;
  width: 142px;
  height: 66px;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: #f0c86c;
  border-radius: 50%;
  filter: drop-shadow(0 0 18px rgba(240, 200, 108, 0.55));
}

.earring {
  position: absolute;
  top: 150px;
  width: 18px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(#fff7c8, #c89b3c);
  box-shadow: 0 0 22px rgba(240, 200, 108, 0.52);
}

.earring.left { left: 24px; }
.earring.right { right: 24px; }

.scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 48%;
  height: 2px;
  background: var(--teal);
  box-shadow: 0 0 28px var(--teal);
  animation: scan 3s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { transform: translateY(-145px); opacity: 0.28; }
  50% { transform: translateY(145px); opacity: 1; }
}

.status-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(153, 246, 228, 0.34);
  border-radius: 999px;
  color: #ccfbf1;
  background: rgba(0, 167, 165, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.builder-panel { padding: 18px; }
.builder-panel h3 { margin-bottom: 18px; }

.field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.field-row strong { color: var(--ink); }

.swatches { display: flex; gap: 10px; }

.swatch {
  width: 32px;
  height: 32px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.rose { background: var(--rose); }
.gold { background: var(--gold); }
.white { background: #e7edf3; }

.bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7edf3;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
}

.bar.blue span { background: var(--blue); }

.quote {
  margin-top: 22px;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--dark);
}

.quote small, .quote strong, .quote span { display: block; }
.quote small { color: rgba(255,255,255,0.62); }
.quote strong { margin: 4px 0; font-size: 31px; }
.quote span { color: #99f6e4; font-size: 12px; font-weight: 900; }

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.metric { padding: 16px; }
.metric strong { display: block; font-size: 26px; }
.metric span { color: var(--muted); font-size: 12px; font-weight: 800; }

.logo-band {
  padding: 22px 0;
  background: #fff;
  border-block: 1px solid var(--line);
}

.logo-grid {
  display: grid;
  grid-template-columns: 0.7fr repeat(5, 1fr);
  gap: 14px;
  align-items: center;
}

.logo-grid span { color: var(--muted); font-weight: 850; }

.logo-grid strong {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  color: #344054;
  font-size: 13px;
  text-align: center;
}

.section { padding: 92px 0; }
.section-soft { background: var(--surface-soft); }
.section-dark { color: #fff; background: var(--dark); }
.section-dark p { color: rgba(255,255,255,0.72); }
.section-dark .stat-card h3 { color: var(--ink); }
.section-dark .stat-card p { color: var(--muted); }

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.module-card,
.solution-card,
.resource-card,
.stat-card {
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.module-card:hover,
.solution-card:hover,
.resource-card:hover,
.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #fff;
  background: var(--dark);
  font-size: 12px;
  font-weight: 900;
}

.module-card p,
.solution-card p,
.resource-card p { font-size: 15px; }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.16);
}

.process div {
  min-height: 174px;
  padding: 22px;
  background: #121d2e;
}

.process span {
  display: block;
  margin-bottom: 26px;
  color: #99f6e4;
  font-weight: 900;
}

.process strong { line-height: 1.42; }

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #344054;
  font-weight: 750;
  list-style: none;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.page-hero {
  padding: 82px 0 60px;
  background:
    linear-gradient(135deg, #fffdf8 0%, #f8f1e3 58%, #efe3c9 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero .lead { margin-bottom: 0; }

.price-card {
  position: relative;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.05);
}

.price-card.featured {
  border-color: rgba(0,167,165,0.46);
  box-shadow: 0 22px 56px rgba(0,167,165,0.18);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 999px;
  color: #065f5b;
  background: #ccfbf1;
  font-size: 12px;
  font-weight: 900;
}

.price {
  display: block;
  margin: 20px 0;
  font-size: 34px;
  font-weight: 900;
}

.price-card ul { min-height: 190px; margin: 0; padding: 0; list-style: none; }
.price-card li { margin: 12px 0; color: #475467; }
.price-card .btn { width: 100%; margin-top: 18px; }

.resource-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--teal);
  font-weight: 900;
}

.form-card {
  padding: 28px;
  box-shadow: var(--shadow);
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: 13px;
  font-weight: 850;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: #fbfcfe;
}

.demo-form textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.demo-form .full,
.demo-form button { grid-column: 1 / -1; }

.cta-band {
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8,17,31,0.98), rgba(68,49,21,0.96)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 58px);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-inner p { color: rgba(255,255,255,0.72); }

.site-footer {
  padding: 58px 0;
  color: rgba(255,255,255,0.72);
  background: #08111f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 32px;
}

.footer-grid p { max-width: 360px; color: rgba(255,255,255,0.68); font-size: 15px; }
.site-footer .brand strong { color: #fff; }
.site-footer .brand-img {
  padding: 6px;
  border-radius: 8px;
  background: #fffdf8;
  mix-blend-mode: normal;
}
.site-footer h4 { margin: 0 0 16px; color: #fff; }
.site-footer a:not(.brand) { display: block; margin: 10px 0; font-size: 14px; }

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) 360px;
  gap: 42px;
  align-items: end;
}

.hero-note {
  padding: 26px;
  border: 1px solid rgba(198, 154, 60, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 50px rgba(8, 17, 31, 0.08);
}

.hero-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 34px;
  font-family: "Playfair Display", Georgia, serif;
}

.inner-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.side-rail {
  position: sticky;
  top: 100px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.side-rail span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 900;
}

.side-rail a {
  display: block;
  padding: 12px 10px;
  border-top: 1px solid var(--line);
  color: #2b3545;
  font-weight: 800;
}

.inner-stack {
  display: grid;
  gap: 18px;
}

.wide-panel {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(8,17,31,0.06);
}

.wide-panel p { margin-bottom: 0; }

.lux-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.lux-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  padding: 24px;
  border-top: 1px solid var(--line);
}

.lux-row:first-child { border-top: 0; }
.lux-row strong { font-size: 18px; }
.lux-row p { margin-bottom: 0; font-size: 15px; }

.premium-card {
  border: 1px solid rgba(198,154,60,0.38);
  background: linear-gradient(180deg, #fff, #fffaf0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .product-board { max-width: 760px; }
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-hero-grid,
  .inner-layout,
  .wide-panel {
    grid-template-columns: 1fr;
  }
  .side-rail { position: static; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav { min-height: 68px; }
  .menu-toggle { display: block; }
  .nav-links, .nav-actions .btn-light { display: none; }
  .nav.open .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav.open .nav-links a { padding: 14px; }
  .nav-actions .btn-primary { min-height: 42px; padding: 0 14px; }
  .brand-img { width: 132px; height: 44px; }

  .hero { padding: 54px 0; }
  h1 { font-size: 43px; }
  h2 { font-size: 36px; }
  .lead { font-size: 17px; }
  .board-grid,
  .metric-row,
  .grid-2,
  .grid-3,
  .grid-4,
  .process,
  .logo-grid,
  .demo-form,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .camera-panel { min-height: 380px; }
  .section { padding: 68px 0; }
  .cta-inner { display: grid; }
  .lux-row { grid-template-columns: 1fr; }
}

/* Modern Background Glows */
.glow-wrapper {
  position: relative;
  overflow: hidden;
}
.glow-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 153, 56, 0.08) 0%, rgba(196, 153, 56, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.glow-blob-1 { top: -10%; left: -10%; }
.glow-blob-2 { bottom: -10%; right: -10%; }

/* Pricing Toggle Switch */
.pricing-toggle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px 0 50px;
  position: relative;
  z-index: 10;
}

.toggle-switch-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f4edd9;
  padding: 4px;
  border-radius: 99px;
  border: 1px solid var(--line);
}

.toggle-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 8px 20px;
  border-radius: 99px;
  border: none;
  background: transparent;
}

.toggle-label.active {
  color: #07111f;
  background: #fff;
  box-shadow: 0 2px 10px rgba(7, 17, 31, 0.08);
}

.toggle-label span.discount-badge {
  font-size: 10px;
  font-weight: 850;
  color: #fff;
  background: var(--rose);
  padding: 2px 8px;
  border-radius: 99px;
  margin-left: 6px;
}

/* Pricing Grid & Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 28px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: var(--shadow);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, #ffffff 0%, #fffbf2 100%);
  box-shadow: 0 20px 40px rgba(196, 153, 56, 0.08);
}

.pricing-card.featured::before {
  content: "RECOMMENDED";
  position: absolute;
  top: 18px;
  right: -32px;
  background: linear-gradient(135deg, #efd88e, var(--gold));
  color: #07111f;
  font-size: 8px;
  font-weight: 900;
  padding: 4px 30px;
  transform: rotate(45deg);
  letter-spacing: 0.1em;
  box-shadow: 0 2px 4px rgba(7, 17, 31, 0.08);
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 850;
  color: var(--ink);
}

.pricing-card .plan-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  min-height: 48px;
  line-height: 1.5;
}

.pricing-card .price-container {
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.pricing-card .price-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  align-self: flex-start;
  margin-top: 4px;
}

.pricing-card .price-amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-card .price-period {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 4px;
}

.pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.pricing-card .features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #344054;
  line-height: 1.45;
}

.pricing-card .features-list svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
  justify-content: center;
  transition: all 0.25s ease;
}

.pricing-card.featured .btn-primary {
  box-shadow: 0 8px 22px rgba(196, 153, 56, 0.25);
}

.pricing-card.featured .btn-primary:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  box-shadow: 0 8px 22px rgba(7, 17, 31, 0.2);
}

@media (max-width: 1080px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Status Alerts */
.alert {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
  display: flex;
  align-items: center;
  gap: 12px;
}

.alert-success {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.alert-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}
