:root {
  --bg: #fffdf8;
  --surface: #ffffff;
  --surface-2: #fff8e8;
  --surface-3: #f8f4ea;
  --text: #171717;
  --muted: #5c5c5c;
  --line: #e9dfc8;
  --gold: #c89b2a;
  --gold-dark: #9f7718;
  --shadow: 0 18px 40px rgba(21, 21, 21, 0.08);
  --radius: 24px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(200, 155, 42, 0.14),
      transparent 32%
    ),
    linear-gradient(180deg, #fffdf8 0%, #fff 26%, #fff 100%);
}

/* Colours */

.highlight-gold {
  color: var(--gold);
}

/* -- Colours */

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
p {
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}
h1 {
  font-size: clamp(2.2rem, 6vw, 5rem);
  letter-spacing: -0.04em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
}
h3 {
  font-size: 1.15rem;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}
.section {
  padding: 88px 0;
}
.alt {
  background: linear-gradient(
    180deg,
    rgba(255, 248, 232, 0.7),
    rgba(255, 255, 255, 0.95)
  );
}
.center {
  text-align: center;
}
.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
}
.section-heading p {
  margin-top: 14px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(200, 155, 42, 0.24);
  background: rgba(255, 248, 232, 0.95);
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.2s ease;
  cursor: pointer;
}
.btn:hover {
  background: #fed867;
  color: #000000;
}
.btn-primary {
  background: #febf04;
  color: #19140a;
}
.btn-secondary {
  background: #fff;
  border-color: var(--line);
}
.full-width {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 253, 248, 0.82);
  border-bottom: 1px solid rgba(233, 223, 200, 0.7);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}
.logo {
  display: flex;
  justify-content: start;
  align-items: start;
}
.logo-img {
  width: 200px;
  height: auto;
}
.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.desktop-nav a {
  color: #343434;
  font-weight: 500;
}
.desktop-nav a:hover {
  color: #000;
  font: bold;
}
.desktop-cta {
  /* margin-left: auto; */
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: #222;
  margin: 5px 0;
  border-radius: 999px;
}
.mobile-nav {
  display: none;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0 16px 16px;
  border-top: 1px solid rgba(233, 223, 200, 0.75);
}
.mobile-nav.open {
  display: grid;
}
.mobile-nav a {
  padding: 12px 0;
  font-weight: 600;
}

.hero {
  padding-top: 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.hero-copy p {
  font-size: 1.08rem;
  max-width: 640px;
  margin-top: 20px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.hero-badges span {
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  color: #4a4a4a;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}
.device-card {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(233, 223, 200, 0.9);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.phone {
  inset: 22px 118px 52px 0;
  padding: 24px;
  background: linear-gradient(180deg, #fffdf7 0%, #fff 100%);
}
.screen-top {
  width: 36%;
  height: 10px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: #1f1f1f;
}
.review-bubble {
  background: linear-gradient(180deg, #fff7df, #fff);
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 24px;
}
.stars {
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 1rem;
}
.review-bubble strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.05rem;
}
.message-row {
  height: 14px;
  border-radius: 999px;
  background: #efefef;
  margin-top: 14px;
}
.message-row.short {
  width: 72%;
}
.analytics {
  right: 0;
  bottom: 0;
  width: 290px;
  padding: 20px;
}
.metric {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.metric-label {
  font-size: 0.92rem;
  color: var(--muted);
}
.metric strong {
  font-size: 2rem;
}
.chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 140px;
  margin: 22px 0;
}
.chart span {
  flex: 1;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, #e2bb5a 0%, #ba8b1c 100%);
}
.trust-card {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface-2);
}
.trust-card p {
  margin-top: 8px;
  font-size: 0.95rem;
}

.logo-strip {
  padding-top: 20px;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.strip-card {
  text-align: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  padding: 18px 14px;
  font-weight: 700;
  color: #544631;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card,
.feature-card,
.step-card,
.pricing-card,
.stat-card,
.about-feature,
.faq-item,
.owner-panel,
.cta-panel {
  background: #fff;
  border: 1px solid rgba(233, 223, 200, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.testimonial-card {
  padding: 24px;
}
.testimonial-grid article:nth-child(4),
.testimonial-grid article:nth-child(5) {
  grid-column: span 1;
}
.testimonial-highlight {
  margin: 10px 0 18px;
  color: #2a2a2a;
  font-weight: 600;
}
.proof-card {
  min-height: 140px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff8e8 0%, #fff 100%);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
}
.proof-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-dark);
}
.action-row {
  margin-top: 34px;
}

.feature-stack {
  display: grid;
  gap: 24px;
}
.feature-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}
.feature-copy {
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #fff9eb 100%);
  border: 1px solid rgba(233, 223, 200, 0.9);
  box-shadow: var(--shadow);
}
.feature-copy p {
  margin: 16px 0 24px;
}
.mini-lines span {
  display: block;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d8af47, #6f5414);
  margin: 16px 0;
}
.mini-lines span:nth-child(2) {
  width: 82%;
}
.mini-lines span:nth-child(3) {
  width: 68%;
}

.feature-duo {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1.1fr;
  gap: 24px;
}
.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}
.feature-card p {
  margin: 12px 0 18px;
}
.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--surface-2);
  color: var(--gold-dark);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.link-arrow {
  font-weight: 700;
  color: var(--gold-dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step-card {
  padding: 28px;
}
.step-num {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffe4a0, #f3c55b);
  color: #19140a;
  font-weight: 800;
  margin-bottom: 18px;
}
.step-card p {
  margin-top: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pricing-card {
  position: relative;
  padding: 28px;
}
.pricing-card.featured {
  background: linear-gradient(180deg, #fff8e5 0%, #fff 100%);
  transform: translateY(-8px);
}
.badge {
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #151515;
  color: #fff;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.plan-name {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-dark);
}
.price {
  font-size: 3rem;
  font-weight: 800;
  margin: 14px 0 18px;
}
.price span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}
.pricing-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid #f0eadb;
  color: #404040;
}
.pricing-card ul li::before {
  content: "✓";
  color: var(--gold-dark);
  font-weight: 800;
  margin-right: 10px;
}
.pricing-card .btn {
  margin-top: 22px;
}
.trial {
  text-align: center;
  margin-top: 14px;
  font-size: 0.92rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stat-card {
  padding: 26px;
  text-align: center;
}
.stat-card strong {
  display: block;
  font-size: 3rem;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.cta-panel {
  margin-top: 26px;
  padding: 34px;
  text-align: center;
  background: linear-gradient(180deg, #fff8e5, #fff);
}
.cta-panel p {
  max-width: 760px;
  margin: 14px auto 24px;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
.faq-item {
  padding: 0 22px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-weight: 700;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item p {
  padding: 0 0 22px;
  border-top: 1px solid #f2ebdb;
  padding-top: 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.about-copy {
  padding: 8px 4px;
}
.about-copy p {
  margin: 16px 0 24px;
}
.about-panels {
  display: grid;
  gap: 18px;
}
.about-feature {
  padding: 24px;
}
.about-feature p {
  margin-top: 10px;
}

.owner-heading {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.owner-panel {
  max-width: 900px;
  margin: 0 auto;
  padding: 36px;
}
.owner-panel p {
  margin: 14px 0;
  text-align: center;
}

.site-footer {
  background: #111111;
  color: #e7e7e7;
  padding: 70px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 28px;
}
.footer-logo {
  display: flex;
  flex: 1;
  color: #fff;
}
.footer-copy {
  margin-top: 16px;
  max-width: 460px;
  color: #bdbdbd;
}
.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}
.footer-links {
  display: grid;
  gap: 12px;
}
.footer-links a {
  color: #cfcfcf;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #1f1f1f;
}

@media (max-width: 1100px) {
  .strip-grid,
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-duo {
    grid-template-columns: 1fr 1fr;
  }
  .feature-card.tall {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero-grid,
  .feature-split,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 500px;
  }
  .phone {
    inset: 12px 90px 60px 0;
  }
  .analytics {
    width: 260px;
  }
  .steps-grid,
  .stats-grid,
  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 68px 0;
  }
  .hero {
    padding-top: 40px;
  }
  .testimonial-grid,
  .pricing-grid,
  .steps-grid,
  .feature-duo,
  .stats-grid,
  .strip-grid {
    grid-template-columns: 1fr;
  }
  .feature-card.tall {
    grid-column: auto;
  }
  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 18px;
  }
  .device-card {
    position: relative;
    inset: auto;
    width: 100%;
  }
  .phone,
  .analytics {
    padding: 18px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    min-height: 70px;
  }
  .logo-img {
    max-width: 500px;
    height: auto;
  }
}

/* Privacy Policy Page */

.policy-hero {
  padding-top: 72px;
  padding-bottom: 24px;
}

.policy-section {
  padding-top: 20px;
}

.policy-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}

.policy-sidebar-card,
.policy-card {
  background: #fff;
  border: 1px solid rgba(233, 223, 200, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.policy-sidebar-card {
  padding: 20px;
}

.policy-sidebar-card a {
  color: var(--gold-dark);
  font-weight: 600;
  word-break: break-word;
}

.policy-label {
  margin-bottom: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  font-weight: 800;
}

.policy-card {
  padding: 34px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 248, 232, 0.42) 0%,
      rgba(255, 255, 255, 1) 180px
    ),
    #fff;
}

.policy-intro {
  padding-bottom: 24px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f0e7d4;
}

.policy-intro p {
  font-size: 1.04rem;
  color: #424242;
}

.policy-block + .policy-block {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #f0e7d4;
}

.policy-block h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  margin-bottom: 14px;
}

.policy-block p + p,
.policy-block ul + p,
.policy-block p + ul {
  margin-top: 14px;
}

.policy-card a {
  color: var(--gold-dark);
  font-weight: 600;
}

.policy-list {
  margin-top: 14px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.policy-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.65;
}

.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d8af47, #bc8f25);
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(200, 155, 42, 0.12);
}

/* active footer link if you want it visually clearer */
.footer-links a[aria-current="page"] {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 900px) {
  .policy-shell {
    grid-template-columns: 1fr;
  }

  .policy-sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .policy-hero {
    padding-top: 44px;
    padding-bottom: 8px;
  }

  .policy-card {
    padding: 24px 18px;
  }

  .policy-sidebar {
    grid-template-columns: 1fr;
  }

  .policy-block + .policy-block {
    margin-top: 24px;
    padding-top: 24px;
  }
}

/* Checkout Page */

.checkout-page {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top left,
      rgba(200, 155, 42, 0.12),
      transparent 30%
    ),
    linear-gradient(180deg, #fffdf8 0%, #fff 100%);
  padding: 32px 16px;
}

.checkout-shell {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.checkout-card {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(233, 223, 200, 0.95);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(21, 21, 21, 0.1);
  padding: 32px;
  overflow: hidden;
}

.checkout-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #e2bb5a 0%, #ba8b1c 100%);
}

.checkout-back {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  box-shadow: 0 8px 20px rgba(21, 21, 21, 0.06);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.checkout-back:hover {
  transform: translateX(-2px);
  background: var(--surface-2);
  border-color: rgba(200, 155, 42, 0.35);
}

.checkout-back svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.checkout-header {
  margin-top: 20px;
  text-align: center;
}

.checkout-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid rgba(200, 155, 42, 0.24);
  background: rgba(255, 248, 232, 0.95);
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  font-weight: 800;
  margin-bottom: 16px;
}

.checkout-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
  margin: 0;
}

.checkout-subtitle {
  max-width: 500px;
  margin: 14px auto 0;
  font-size: 1rem;
  color: var(--muted);
}

.checkout-plan {
  margin-top: 28px;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(233, 223, 200, 0.95);
  background: linear-gradient(180deg, #fffaf0 0%, #fff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.checkout-plan-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.checkout-plan-name {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.checkout-price {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}

.checkout-price span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
  margin-left: 6px;
}

.checkout-trial-badge {
  flex-shrink: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-trial-copy {
  margin-top: 14px;
  font-size: 0.98rem;
  color: #4d4536;
}

.checkout-features {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.checkout-features li {
  position: relative;
  padding-left: 34px;
  color: #2f2f2f;
  font-weight: 500;
  line-height: 1.5;
}

.checkout-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #d8af47, #bc8f25);
  box-shadow: 0 0 0 4px rgba(200, 155, 42, 0.14);
}

.checkout-features li::after {
  content: "";
  position: absolute;

  /* center inside circle */
  left: 9px;
  top: 50%;
  transform: translate(-50%, -60%) rotate(45deg);

  /* smaller tick */
  width: 5px;
  height: 9px;

  border-right: 2px solid #19140a;
  border-bottom: 2px solid #19140a;
}

.checkout-actions {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.checkout-btn {
  min-height: 56px;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  font-size: 1rem;
  background: black;
  color: white;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  box-shadow: 0 14px 28px rgba(200, 155, 42, 0.22);
}

.checkout-btn:hover {
  background: #e7ad00;
  transform: translateY(-1px);
}

.checkout-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.checkout-meta {
  display: grid;
  gap: 8px;
  text-align: center;
}

.checkout-meta p {
  font-size: 0.94rem;
}

.checkout-meta strong {
  color: var(--text);
}

.checkout-error {
  margin-top: 10px;
  text-align: center;
  color: #b42318;
  font-weight: 700;
}

@media (max-width: 640px) {
  .checkout-page {
    padding: 18px 12px;
  }

  .checkout-card {
    padding: 20px;
    border-radius: 22px;
  }

  .checkout-header {
    margin-top: 16px;
  }

  .checkout-plan {
    padding: 20px;
    border-radius: 20px;
  }

  .checkout-plan-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkout-trial-badge {
    margin-top: 2px;
  }

  .checkout-features li {
    padding-left: 30px;
    font-size: 0.96rem;
  }

  .checkout-btn {
    min-height: 54px;
  }
}

/* Success Page */

.success-page {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top left,
      rgba(200, 155, 42, 0.12),
      transparent 30%
    ),
    linear-gradient(180deg, #fffdf8 0%, #fff 100%);
  padding: 32px 16px;
}

.success-shell {
  min-height: calc(100vh - 64px);
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.success-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(233, 223, 200, 0.95);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(21, 21, 21, 0.1);
  padding: 40px 32px 32px;
  text-align: center;
  overflow: hidden;
}

.success-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #e2bb5a 0%, #ba8b1c 100%);
}

.success-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff8e8 0%, #fff 100%);
  border: 1px solid rgba(233, 223, 200, 0.95);
  box-shadow: 0 14px 28px rgba(200, 155, 42, 0.16);
}

.success-icon svg {
  width: 30px;
  height: 30px;
  stroke: #19140a;
}

.success-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid rgba(200, 155, 42, 0.24);
  background: rgba(255, 248, 232, 0.95);
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  font-weight: 800;
  margin-bottom: 18px;
}

.success-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  letter-spacing: -0.04em;
  margin: 0;
}

.success-copy {
  max-width: 460px;
  margin: 16px auto 0;
  font-size: 1rem;
  color: var(--muted);
}

.success-note {
  margin: 22px auto 0;
  max-width: 420px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff8e8 0%, #fff 100%);
  border: 1px solid rgba(233, 223, 200, 0.95);
  color: #4d4536;
  font-weight: 600;
  line-height: 1.5;
}

.success-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.success-actions .btn {
  min-width: 190px;
}

@media (max-width: 640px) {
  .success-page {
    padding: 18px 12px;
  }

  .success-shell {
    min-height: calc(100vh - 36px);
  }

  .success-card {
    padding: 30px 20px 24px;
    border-radius: 22px;
  }

  .success-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }

  .success-icon svg {
    width: 26px;
    height: 26px;
  }

  .success-note {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .success-actions .btn {
    width: 100%;
    min-width: 0;
  }
}

/* Owner Carousel */

.owner-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.owner-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #f4f4f4;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 2;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.72);
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.carousel-dots .dot.active {
  background: #fff;
  transform: scale(1.15);
}

.owner-content {
  width: 100%;
}

@media (max-width: 900px) {
  .owner-layout {
    grid-template-columns: 1fr;
  }

  .owner-carousel {
    order: -1;
  }

  .carousel-track {
    aspect-ratio: 1 / 1.15;
  }
}

@media (max-width: 640px) {
  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .carousel-btn.prev {
    left: 0.75rem;
  }

  .carousel-btn.next {
    right: 0.75rem;
  }

  .carousel-dots {
    bottom: 0.75rem;
  }
}
