/* ===========================
   GOOGLE FONTS
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ===========================
   CSS VARIABLES
   =========================== */
:root {
  --ink: #0f0e0c;
  --ink-soft: #1c1b18;
  --slate: #2e2d2a;
  --teal: #1a6b6b;
  --teal-light: #2b9090;
  --teal-pale: #e8f4f4;
  --amber: #c7892a;
  --amber-light: #e0a84a;
  --cream: #f7f4ef;
  --warm-white: #fdfcf9;
  --warm-white-2: #faf8f4;
  --border: #e4dfd5;
  --border-light: #ede9e2;
  --muted: #6b6560;
  --muted-light: #9a948c;
  --text: #1c1b18;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 12px rgba(15, 14, 12, 0.07);
  --shadow: 0 8px 32px rgba(15, 14, 12, 0.09);
  --shadow-lg: 0 20px 56px rgba(15, 14, 12, 0.13);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max-w: 1080px;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--teal);
  transition: color 0.2s;
}

a:hover {
  color: var(--teal-light);
}

/* ===========================
   AD LABEL — Taboola Required
   =========================== */
.ad-label {
  background: #f0f0ee;
  border-bottom: 1px solid #ddd;
  text-align: center;
  padding: 7px 20px;
}

.ad-label span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
}

/* ===========================
   HEADER
   =========================== */
header {
  background: var(--ink);
  background-image:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(26, 107, 107, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 30% at 80% 100%, rgba(199, 137, 42, 0.08) 0%, transparent 60%);
  color: #fff;
  padding: 110px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Ccircle cx='40' cy='40' r='1.5'/%3E%3Ccircle cx='0' cy='0' r='1.5'/%3E%3Ccircle cx='80' cy='0' r='1.5'/%3E%3Ccircle cx='0' cy='80' r='1.5'/%3E%3Ccircle cx='80' cy='80' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

header.legal-header {
  padding: 90px 24px 72px;
}

.header-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.header-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid rgba(43, 144, 144, 0.35);
  border-radius: 40px;
}

.header-eyebrow i {
  margin-right: 6px;
}

header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

header p {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 24px;
}

.header-disclaimer {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: 40px;
  letter-spacing: 0.3px;
  margin-top: 8px;
}

.header-disclaimer i {
  margin-right: 6px;
  color: var(--teal-light);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  display: flex;
  align-items: center;
  gap: 72px;
  padding: 96px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  flex-wrap: wrap;
}

.hero-img-wrap {
  position: relative;
  flex-shrink: 0;
}

.hero-img-wrap img {
  max-width: 310px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), -8px 8px 0 var(--teal);
  transform: rotate(-1.5deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
}

.hero-img-wrap img:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: var(--shadow-lg), -4px 4px 0 var(--teal-light);
}

.hero-badge {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: var(--amber);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

.hero-info {
  flex: 1;
  min-width: 280px;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-pale);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
}

.hero-info h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.hero-info p {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 24px 0 16px;
  flex-wrap: wrap;
}

.price-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted-light);
}

.price-value {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.price-note {
  font-size: 13px;
  color: var(--muted-light);
  font-weight: 300;
}

.edu-note {
  display: block;
  font-size: 13px;
  color: var(--muted-light);
  font-weight: 400;
}

.edu-note i {
  margin-right: 5px;
  color: var(--teal);
}

/* ===========================
   CTA STRIP
   =========================== */
.cta-strip {
  text-align: center;
  padding: 64px 20px;
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 17px 52px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(26, 107, 107, 0.25);
}

.btn-primary i {
  margin-left: 8px;
}

.btn-primary:hover {
  background: var(--teal-light);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26, 107, 107, 0.3);
}

.cta-sub {
  font-size: 13px;
  color: var(--muted-light);
  margin-top: 14px;
  font-weight: 300;
}

/* ===========================
   SECTION BASE
   =========================== */
.section {
  padding: 88px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section.alt-bg {
  background: var(--cream);
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.section.alt-bg > * {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-label.light {
  color: var(--teal-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.section-title.light {
  color: #fff;
}

.section-intro {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 52px;
}

/* ===========================
   FEATURED REVIEW
   =========================== */
.featured-review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 44px 48px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  margin-top: 36px;
  border-left: 4px solid var(--teal);
}

.review-quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--teal-pale);
  line-height: 0.7;
  flex-shrink: 0;
  margin-top: 8px;
}

.review-body p {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal-pale);
}

.review-author strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.review-author span {
  font-size: 13px;
  color: var(--muted-light);
}

.stars {
  margin-top: 4px;
}

.stars i {
  color: var(--amber);
  font-size: 13px;
}

/* ===========================
   TOPICS GRID
   =========================== */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 0;
}

.topic-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.topic-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--teal-pale);
}

.topic-icon {
  width: 46px;
  height: 46px;
  background: var(--teal-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.topic-icon i {
  color: var(--teal);
  font-size: 20px;
}

.topic-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.topic-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* ===========================
   PILLARS
   =========================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.pillar {
  padding: 32px 28px;
  border-top: 3px solid var(--teal);
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-sm);
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--teal-pale);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.pillar p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* ===========================
   TRUST ROW
   =========================== */
.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 44px;
}

.trust-item {
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.trust-item > i {
  font-size: 30px;
  color: var(--teal);
  margin-bottom: 16px;
  display: block;
}

.trust-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.trust-item p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ===========================
   MINI REVIEWS
   =========================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.review-mini {
  background: #fff;
  padding: 30px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--amber);
}

.mini-stars {
  margin-bottom: 14px;
}

.review-quote {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 16px;
}

.review-sig {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-light);
}

/* ===========================
   FAQ
   =========================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 44px;
  max-width: 780px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-q {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-light);
}

.faq-q i {
  color: var(--teal);
  font-size: 16px;
  flex-shrink: 0;
}

.faq-a {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  padding: 18px 24px;
}

/* ===========================
   FORM SECTION
   =========================== */
.form-section {
  background: var(--ink);
  background-image:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(26, 107, 107, 0.15) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 20%, rgba(199, 137, 42, 0.06) 0%, transparent 60%);
  max-width: 100%;
  padding-top: 96px;
  padding-bottom: 96px;
}

.form-section .section-title {
  color: #fff;
}

.form-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

.form-intro {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 640px;
}

.form-disclaimer {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 600px;
}

#form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

.success-icon {
  font-size: 52px;
  color: var(--teal-light);
  margin-bottom: 20px;
}

#form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

#form-success p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

#order-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 48px 48px 44px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 4px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 8px;
}

.form-group label .optional {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
}

#order-form input[type="text"],
#order-form input[type="email"],
#order-form input[type="tel"] {
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
}

#order-form input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

#order-form input:focus {
  border-color: var(--teal-light);
  background: rgba(26, 107, 107, 0.08);
  box-shadow: 0 0 0 3px rgba(26, 107, 107, 0.2);
}

.form-checkbox {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.42);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 8px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--teal);
  cursor: pointer;
}

.form-checkbox a {
  color: var(--teal-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.risk-disclaimer {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.26);
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.risk-disclaimer i {
  margin-right: 6px;
  color: var(--amber-light);
}

.btn-submit {
  margin-top: 24px;
  padding: 18px;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(26, 107, 107, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.btn-submit:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 107, 107, 0.4);
}

.form-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
}

.form-trust span i {
  margin-right: 5px;
  color: var(--teal-light);
}

.field-error {
  display: block;
  color: #e06060;
  font-size: 12px;
  margin: 4px 0 2px;
  min-height: 16px;
  font-family: var(--font-body);
}

#order-form input.invalid {
  border-color: #e06060 !important;
  background: rgba(224, 96, 96, 0.08) !important;
}

/* ===========================
   TRANSPARENCY BOX
   =========================== */
.transparency-section {
  max-width: 100%;
  padding: 56px 40px;
  background: var(--cream);
  border-top: 1px solid var(--border-light);
}

.transparency-box {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.transparency-box > i {
  font-size: 24px;
  color: var(--amber);
  margin-top: 2px;
  flex-shrink: 0;
}

.transparency-box h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.transparency-box p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-container {
  max-width: 1020px;
  margin: 60px auto;
  padding: 0 28px 80px;
}

.legal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 56px 64px;
}

.legal-section {
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 36px;
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section.intro-section {
  background: var(--teal-pale);
  border-radius: var(--radius);
  padding: 32px 36px;
  border-bottom: none;
  margin-bottom: 36px;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.3;
}

.legal-section h2 i {
  color: var(--teal);
  font-size: 22px;
}

.legal-section p {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-list {
  margin: 16px 0 20px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-list li {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.7;
}

.legal-list li i {
  color: var(--teal);
  font-size: 15px;
  margin-top: 3px;
  width: 18px;
  flex-shrink: 0;
}

.entity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0 12px;
  background: var(--cream);
  padding: 28px;
  border-radius: var(--radius);
  border-left: 3px solid var(--teal);
}

.entity-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.entity-item strong {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.entity-item strong i {
  margin-right: 6px;
  color: var(--teal);
}

.entity-item span, .entity-item a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}

.entity-item a:hover {
  color: var(--teal);
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.right-card {
  background: var(--cream);
  padding: 18px 20px;
  border-radius: var(--radius);
  border-left: 3px solid var(--teal);
  transition: transform 0.2s;
}

.right-card:hover {
  transform: translateY(-2px);
}

.right-card > i {
  color: var(--teal);
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
}

.right-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.right-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.6;
}

.risk-notice {
  background: rgba(199, 137, 42, 0.07);
  border-left: 4px solid var(--amber);
  padding: 22px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0 12px;
}

.risk-notice p {
  font-size: 14px;
  margin-bottom: 10px !important;
}

.risk-notice p:last-child {
  margin-bottom: 0 !important;
}

.risk-notice i {
  margin-right: 6px;
  color: var(--amber);
}

hr {
  margin: 32px 0;
  border: none;
  height: 1px;
  background: var(--border-light);
}

.back-link {
  text-align: center;
  margin-top: 52px;
}

.back-link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 14px 34px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s;
  border: 2px solid var(--ink);
}

.back-link a:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-2px);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--ink-soft);
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 52px 40px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
}

.footer p {
  max-width: 760px;
  margin: 0 auto 14px;
}

.footer p:last-child {
  margin-bottom: 0;
}

.footer-links {
  color: rgba(255, 255, 255, 0.22);
  margin-top: 20px !important;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 860px) {
  .legal-card {
    padding: 36px 28px;
  }

  .entity-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .featured-review {
    flex-direction: column;
    padding: 32px 28px;
  }

  .review-quote-mark {
    display: none;
  }
}

@media (max-width: 720px) {
  header {
    padding: 80px 20px 68px;
  }

  .hero {
    flex-direction: column;
    padding: 64px 24px;
    gap: 48px;
    align-items: center;
    text-align: center;
  }

  .hero-img-wrap img {
    max-width: 240px;
  }

  .hero-badge {
    right: 0;
  }

  .price-box {
    justify-content: center;
  }

  .section {
    padding: 64px 24px;
  }

  .section.alt-bg {
    padding: 64px 20px;
  }

  .cta-strip {
    padding: 52px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  #order-form {
    padding: 32px 24px 28px;
  }

  .legal-card {
    padding: 28px 20px;
  }

  .legal-container {
    padding: 0 16px 60px;
  }

  .transparency-box {
    flex-direction: column;
    padding: 24px 22px;
  }

  .footer {
    padding: 40px 20px;
  }
}
