.tf-wizard {
  --tf-bg: #0a0614;
  --tf-card: rgba(255,255,255,0.05);
  --tf-border: rgba(255,255,255,0.10);
  --tf-purple: #7c3aed;
  --tf-purple-light: #c084fc;
  --tf-gold: #d4a017;
  --tf-green: #10b981;
  --tf-text: rgba(255,255,255,0.85);
  --tf-muted: rgba(255,255,255,0.45);
  --tf-radius: 16px;
  --tf-shadow: 0 8px 32px rgba(124,58,237,0.15);
}

html,
body {
  background: #0a0614;
}

body,
.wp-site-blocks,
.site,
#page,
main,
.site-main,
.woocommerce,
.product,
.site-footer,
#site-footer {
  background:
    radial-gradient(circle at 18% 4%, rgba(124,58,237,0.28), transparent 34%),
    radial-gradient(circle at 75% 18%, rgba(212,160,23,0.16), transparent 28%),
    radial-gradient(circle at 50% 70%, rgba(124,58,237,0.18), transparent 34%),
    linear-gradient(180deg, #140721 0%, #080311 48%, #0a0614 100%) !important;
  color: rgba(255,255,255,0.85);
}

.wp-site-blocks,
.site,
#page,
main,
.site-main,
.woocommerce,
.product,
.site-footer,
#site-footer {
  background-color: transparent !important;
}

.tf-wizard {
  background:
    radial-gradient(circle at 20% 8%, rgba(124,58,237,0.18), transparent 34%),
    radial-gradient(circle at 80% 100%, rgba(192,132,252,0.12), transparent 36%);
  min-height: auto;
  padding: 10px 20px 132px;
  margin-bottom: 100px;
  font-family: inherit;
  color: var(--tf-text);
}

.tf-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 30px;
}

.tf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--tf-muted);
  text-align: center;
}

.tf-step-num {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(248,214,109,0.20);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 32px rgba(0,0,0,0.22);
}

.tf-step-label {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.62);
}

.tf-step.active .tf-step-num {
  background: linear-gradient(135deg, #ffe88d 0%, #f0bd3f 48%, #c78a14 100%);
  border-color: transparent;
  color: #140818;
  box-shadow: 0 16px 42px rgba(212,160,23,0.30), inset 0 1px 0 rgba(255,255,255,0.42);
}

.tf-step.active {
  color: #fff;
}

.tf-step.active .tf-step-label {
  color: #f8d66d;
}

.tf-step.done .tf-step-num {
  background: linear-gradient(135deg, #34d399 0%, #d4a017 100%);
  border-color: rgba(248,214,109,0.34);
  color: #0b1710;
  font-size: 0;
}

.tf-step.done .tf-step-num::before {
  content: "✓";
  font-size: 20px;
}

.tf-step-line {
  flex: 1 1 180px;
  max-width: 260px;
  min-width: 60px;
  height: 3px;
  margin: 29px 18px 0;
  background: linear-gradient(90deg, rgba(248,214,109,0.54), rgba(192,132,252,0.30));
  border-radius: 999px;
}

.tf-panel {
  display: none;
  max-width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.tf-panel.active {
  display: block;
}

.tf-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  border: 1px solid rgba(248,214,109,0.18);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 34px 110px rgba(0,0,0,0.34), 0 14px 46px rgba(124,58,237,0.16);
  backdrop-filter: blur(18px);
}

.tf-card-title {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.12;
  font-weight: 800;
}

#tfPanel1 .tf-card-title {
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.08;
}

.tf-card-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--tf-purple-light), #fff, var(--tf-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tf-card-sub {
  margin: 0 0 28px;
  color: var(--tf-muted);
  font-size: 15px;
  line-height: 1.7;
}

.tf-label {
  display: block;
  margin-bottom: 8px;
  color: var(--tf-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tf-input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: var(--tf-radius);
  border: 1px solid var(--tf-border);
  background: rgba(0,0,0,0.24);
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tf-input:focus {
  border-color: var(--tf-purple-light);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.18);
}

.tf-voice-box {
  margin: 20px 0 28px;
  padding: 18px;
  border-radius: var(--tf-radius);
  border: 1px solid var(--tf-border);
  background: rgba(0,0,0,0.24);
}

.tf-voice-preview-line {
  margin-bottom: 14px;
  color: var(--tf-text);
}

.tf-fairy-name {
  color: var(--tf-purple-light);
  font-style: italic;
}

.tf-voice-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.tf-play-btn {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(248,214,109,0.20);
  background: linear-gradient(135deg, rgba(124,58,237,0.88), rgba(212,160,23,0.62));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(124,58,237,0.20);
}

.tf-previews-count {
  color: var(--tf-muted);
  font-size: 13px;
}

#tfAudioWrap {
  margin-top: 14px;
}

#tfAudio {
  width: 100%;
}

.tf-voice-note {
  margin: 12px 0 0;
  color: var(--tf-muted);
  font-size: 12px;
  font-style: italic;
}

.tf-photo-info {
  max-width: 760px;
  margin: 0 auto 26px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(212,160,23,0.28);
  background: linear-gradient(135deg, rgba(212,160,23,0.11), rgba(124,58,237,0.10));
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.tf-photo-info strong {
  color: #f8d66d;
}

.tf-photo-info span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
}

.tf-photos-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.tf-photo-slot {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
}

.tf-circle-preview {
  width: 100%;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 24px;
  border: 1.5px dashed rgba(248,214,109,0.34);
  background:
    radial-gradient(circle at 50% 18%, rgba(248,214,109,0.12), transparent 32%),
    rgba(11,5,24,0.42);
  color: rgba(255,255,255,0.76);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tf-circle-preview:hover {
  border-color: rgba(248,214,109,0.70);
  background:
    radial-gradient(circle at 50% 18%, rgba(248,214,109,0.18), transparent 36%),
    rgba(35,16,64,0.48);
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(124,58,237,0.20);
}

.tf-circle-preview.done {
  border-style: solid;
  border-color: rgba(52,211,153,0.72);
  background: rgba(11,5,24,0.48);
  position: relative;
  justify-content: center;
  gap: 12px;
}

.tf-circle-preview img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.tf-circle-preview.done img {
  width: 162px;
  height: 162px;
  border-radius: 50%;
  border: 4px solid rgba(248,214,109,0.88);
  box-shadow: 0 16px 38px rgba(212,160,23,0.24), 0 0 0 1px rgba(255,255,255,0.10);
}

.tf-circle-preview.done::before {
  content: "✓";
  position: absolute;
  left: calc(50% + 50px);
  top: calc(50% + 31px);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #34d399, #d4a017);
  color: #09120d;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
  z-index: 2;
  pointer-events: none;
}

#tfCircle1.done::after,
#tfCircle2.done::after {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,0.74);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  white-space: pre-line;
}

#tfCircle1.done::after {
  content: "Photo 1 ready\\A Change photo";
}

#tfCircle2.done::after {
  content: "Photo 2 ready\\A Change photo";
}

.tf-circle-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(248,214,109,0.32);
  background: rgba(248,214,109,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.tf-circle-icon::before,
.tf-circle-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  background: #f8d66d;
  transform: translate(-50%, -50%);
}

.tf-circle-icon::before {
  width: 24px;
  height: 2px;
}

.tf-circle-icon::after {
  width: 2px;
  height: 24px;
}

.tf-circle-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  line-height: 1.35;
}

.tf-circle-label strong {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.tf-circle-label span {
  color: #f8d66d;
  font-weight: 700;
}

.tf-circle-label small {
  color: rgba(255,255,255,0.56);
  font-size: 13px;
  font-weight: 500;
}

.tf-circle-preview.done .tf-circle-icon,
.tf-circle-preview.done .tf-circle-label {
  display: none;
}

.tf-slot-label {
  margin-top: 12px;
  color: var(--tf-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tf-btn-primary,
.tf-btn-secondary,
.tf-btn-cart {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.tf-btn-primary {
  background: linear-gradient(135deg, #ffe88d 0%, #f0bd3f 48%, #c78a14 100%);
  color: #130b22;
  box-shadow: 0 14px 34px rgba(212,160,23,0.26);
}

.tf-btn-secondary {
  border: 1px solid rgba(248,214,109,0.26);
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.86);
}

.tf-btn-cart {
  width: 100%;
  background: linear-gradient(135deg, #f8d66d, var(--tf-gold));
  color: #130b22;
  box-shadow: 0 10px 28px rgba(212,160,23,0.22);
}

.tf-btn-primary:hover,
.tf-btn-secondary:hover,
.tf-btn-cart:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.tf-btn-primary:disabled,
.tf-btn-secondary:disabled,
.tf-btn-cart:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.tf-panel-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.tf-panel-nav .tf-btn-primary,
.tf-panel-nav .tf-btn-secondary {
  min-width: 220px;
}

#tfNext1 {
  width: min(420px, 100%);
  margin-top: 2px;
}

.tf-summary {
  display: grid;
  gap: 16px;
}

.tf-summary-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid rgba(248,214,109,0.14);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    rgba(10,6,20,0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.tf-summary-copy {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.tf-summary-label {
  display: block;
  color: var(--tf-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tf-summary-value {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.tf-summary-edit {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(248,214,109,0.24);
  background: rgba(255,255,255,0.035);
  color: #f8d66d;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.tf-summary-edit:hover {
  border-color: rgba(248,214,109,0.48);
  background: rgba(248,214,109,0.08);
  transform: translateY(-1px);
}

.tf-summary-photos {
  display: flex;
  gap: 10px;
}

.tf-rev-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--tf-border);
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.tf-rev-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tf-summary-product {
  border-color: rgba(248,214,109,0.25);
  background:
    radial-gradient(circle at 92% 12%, rgba(248,214,109,0.11), transparent 30%),
    rgba(0,0,0,0.24);
}

.tf-summary-price {
  color: #f8d66d;
  font-size: 24px;
  font-weight: 900;
  white-space: nowrap;
}

.tf-total-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid rgba(248,214,109,0.18);
  background: rgba(0,0,0,0.24);
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tf-total-price {
  color: #f8d66d;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.tf-delivery-note {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.tf-review-actions {
  align-items: stretch;
}

.tf-review-actions .tf-btn-secondary,
.tf-review-actions .tf-btn-cart {
  flex: 1 1 0;
  width: auto;
}

.tf-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  padding: 20px;
  background: rgba(5,3,12,0.78);
  backdrop-filter: blur(10px);
}

.tf-modal-overlay.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tf-modal {
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 40px);
  border-radius: 28px;
  border: 1px solid rgba(248,214,109,0.28);
  background: linear-gradient(145deg, rgba(26,11,48,0.98), rgba(12,6,26,0.98));
  box-shadow:
    0 38px 120px rgba(0,0,0,0.58),
    0 18px 54px rgba(124,58,237,0.22),
    0 0 0 1px rgba(192,132,252,0.10),
    0 0 44px rgba(212,160,23,0.12);
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.tf-modal-header,
.tf-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
}

.tf-modal-header {
  color: #fff;
  font-weight: 900;
  border-bottom: 1px solid rgba(248,214,109,0.12);
}

.tf-modal-intro {
  max-width: 390px;
  margin: 6px 0 0;
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.tf-modal-footer {
  border-top: 1px solid rgba(248,214,109,0.12);
}

.tf-modal-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.tf-modal-body {
  padding: 22px;
  overflow: visible;
}

.tf-crop-container {
  height: min(430px, 56vh);
  border-radius: 22px;
  background: rgba(0,0,0,0.32);
  border: 1px solid rgba(248,214,109,0.12);
  overflow: hidden;
}

.tf-crop-container img {
  display: block;
  max-width: 100%;
}

.tf-crop-controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}

.tf-crop-ctrl {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(248,214,109,0.18);
  background: rgba(255,255,255,0.045);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tf-crop-ctrl:hover {
  border-color: rgba(248,214,109,0.42);
  background: linear-gradient(135deg, rgba(124,58,237,0.28), rgba(212,160,23,0.16));
  color: #f8d66d;
  transform: translateY(-1px);
}

.tf-crop-hint {
  margin: 12px 0 0;
  color: var(--tf-muted);
  font-size: 12px;
  text-align: center;
}

.cropper-view-box,
.cropper-face {
  border-radius: 50% !important;
}

.tf-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5,3,12,0.78);
  backdrop-filter: blur(16px);
}

.tf-success-overlay.show {
  display: flex;
}

.tf-success-content {
  width: min(420px, calc(100% - 32px));
  max-width: 420px;
  padding: 34px 30px;
  border-radius: 28px;
  border: 1px solid rgba(248,214,109,0.26);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035)),
    rgba(18,11,34,0.88);
  color: var(--tf-text);
  text-align: center;
  box-shadow:
    0 34px 110px rgba(0,0,0,0.48),
    0 0 0 1px rgba(124,58,237,0.18),
    0 18px 56px rgba(212,160,23,0.13);
  backdrop-filter: blur(18px);
}

.tf-success-content h2 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 400;
  line-height: 1.08;
}

.tf-success-content p {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.68);
  font-size: 14.5px;
  line-height: 1.58;
}

.tf-success-content .tf-btn-cart {
  width: 100%;
  min-height: 56px;
}

.tf-error {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(248,113,113,0.35);
  background: rgba(127,29,29,0.28);
  color: #fecaca;
  font-size: 14px;
}

.tf-spinner {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid rgba(19,11,34,0.24);
  border-top-color: #130b22;
  animation: tfSpin 0.8s linear infinite;
}

@keyframes tfSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 600px) {
  .tf-hero {
    padding: 96px 16px 18px;
  }

  .tf-hero-title {
    font-size: clamp(34px, 10vw, 42px);
  }

  .tf-wizard {
    padding: 10px 14px 84px;
    margin-bottom: 76px;
  }

  .tf-steps {
    width: 100%;
    gap: 0;
    margin-bottom: 22px;
  }

  .tf-step {
    gap: 7px;
  }

  .tf-step-num {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .tf-step-label {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .tf-step-line {
    min-width: 20px;
    margin: 22px 6px 0;
  }

  .tf-photos-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tf-circle-preview {
    min-height: 230px;
  }

  .tf-circle-preview.done img {
    width: 138px;
    height: 138px;
  }

  .tf-circle-preview.done::before {
    left: calc(50% + 38px);
    top: calc(50% + 19px);
  }

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

  .tf-modal {
    width: calc(100% - 32px);
    max-height: calc(100vh - 96px);
    border-radius: 24px;
  }

  .tf-modal-overlay {
    align-items: center;
    padding: 80px 16px 16px;
  }

  .tf-modal-header,
  .tf-modal-footer {
    padding: 15px 16px;
  }

  .tf-modal-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .tf-crop-container {
    height: min(320px, 46vh);
  }

  .tf-panel-nav,
  .tf-voice-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tf-panel-nav .tf-btn-secondary,
  .tf-panel-nav .tf-btn-primary {
    width: 100%;
  }

  .tf-summary-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .tf-summary-edit {
    width: 100%;
  }

  .tf-summary-price {
    margin-top: 4px;
  }
}

@media (min-width: 601px) and (max-width: 768px) {
  .tf-modal {
    width: calc(100% - 32px);
    max-height: calc(100vh - 96px);
  }

  .tf-modal-overlay {
    padding-top: 80px;
  }

  .tf-crop-container {
    height: min(390px, 50vh);
  }
}

/* ── HERO ───────────────────────────────── */
.tf-hero {
  padding: 108px 20px 14px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 8%, rgba(212,160,23,0.16), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(124,58,237,0.2), transparent 38%);
}

.tf-hero-inner {
  max-width: 920px;
  margin: 0 auto;
}

.tf-hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4a017;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.25);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 30px;
}

.tf-hero-title {
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(38px, 4.5vw, 54px);
  font-weight: 400;
  color: #fff;
  line-height: 1.04;
  margin: 0 0 20px;
}

.tf-hero-title em {
  font-style: italic;
  background: linear-gradient(90deg, #d4a017, #f0c040);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tf-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin: 0 auto 18px;
  max-width: 620px;
}

.tf-hero-btn {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(135deg, #d4a017, #f0c040);
  color: #0a0614;
  font-size: 16px;
  font-weight: 800;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: -0.01em;
}

.tf-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,160,23,0.4);
  color: #0a0614;
  text-decoration: none;
}

/* ── HOW IT WORKS ───────────────────────── */
.tf-how {
  padding: 96px 20px;
  background:
    radial-gradient(circle at 50% 16%, rgba(212,160,23,0.1), transparent 28%),
    radial-gradient(circle at 12% 92%, rgba(124,58,237,0.18), transparent 34%);
}

.tf-how-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.tf-section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4a017;
  margin: 0 0 12px;
}

.tf-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 56px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

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

@media (max-width: 700px) {
  .tf-how-grid { grid-template-columns: 1fr; }
}

.tf-how-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  border: 1px solid rgba(212,160,23,0.16);
  border-radius: 20px;
  padding: 42px 34px;
  text-align: left;
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.tf-how-card:hover {
  border-color: rgba(212,160,23,0.3);
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(124,58,237,0.18);
}

.tf-how-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: #d4a017;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.2);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.tf-how-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.tf-how-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.66);
  line-height: 1.65;
  margin: 0;
}

/* ── FAQ ────────────────────────────────── */
.tf-faq {
  padding: 0 20px 80px;
  background: transparent;
}

.tf-faq-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.tf-faq-list {
  margin-top: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tf-faq-item {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(212,160,23,0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.tf-faq-item[open] {
  border-color: rgba(212,160,23,0.25);
}

.tf-faq-q {
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.tf-faq-q::-webkit-details-marker { display: none; }

.tf-faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: #d4a017;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.2s;
}

.tf-faq-item[open] .tf-faq-q::after {
  transform: rotate(45deg);
}

.tf-faq-a {
  padding: 0 22px 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.66);
  line-height: 1.7;
}

/* ── FINAL CTA ──────────────────────────── */
.tf-cta {
  padding: 0 20px 100px;
  background: transparent;
}

.tf-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(212,160,23,0.14), transparent 42%),
    rgba(212,160,23,0.06);
  border: 1px solid rgba(212,160,23,0.18);
  border-radius: 24px;
  padding: 60px 40px;
}

@media (max-width: 500px) {
  .tf-cta-inner { padding: 40px 24px; }
}

.tf-cta-star {
  font-size: 28px;
  color: #d4a017;
  margin-bottom: 20px;
}

.tf-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.tf-cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  margin: 0 0 32px;
}

/* ── CONSENT CHECKBOX ───────────────────── */
.tf-consent-wrap {
  margin-bottom: 20px;
}

.tf-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.tf-consent-check {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: #7c3aed;
  cursor: pointer;
}
