/* ================================================================
   pages.css — shared styles for all inner pages
   Extends styles.css (always load styles.css first)
   ================================================================ */

/* ── Page header (inner-page hero) ─────────────────────────── */
.page-header {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(62vh, 560px);
  padding: calc(64px + clamp(60px, 8vw, 120px)) var(--gutter) clamp(56px, 7vw, 96px);
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 68% 28%, rgba(240, 112, 0, 0.18), transparent 34rem),
    radial-gradient(circle at 12% 78%, rgba(255, 183, 27, 0.07), transparent 22rem),
    linear-gradient(180deg, #000 0%, #0a0601 100%);
}

.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 30% 70%, black, transparent 60%);
}

.page-header-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.page-header h1 {
  margin: 0.35rem 0 0.9rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 780;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.page-header p.lead {
  max-width: 640px;
  margin: 0;
  color: rgba(250, 250, 250, 0.72);
  font-size: 1.05rem;
  line-height: 1.64;
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem 0.5rem;
  margin-bottom: 1.2rem;
  color: rgba(250, 250, 250, 0.38);
  font-size: 0.76rem;
  font-weight: 500;
}

.breadcrumb a {
  color: rgba(250, 250, 250, 0.55);
  transition: color 200ms;
}

.breadcrumb a:hover { color: var(--yellow); }

.breadcrumb-sep { opacity: 0.3; }

/* ── Section layout helpers ─────────────────────────────────── */
.inner-section {
  padding: clamp(72px, 9vw, 120px) var(--gutter);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.8rem;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 0.9rem;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 760;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-body {
  max-width: 660px;
  color: rgba(250, 250, 250, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

/* ── Store action buttons ───────────────────────────────────── */
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  color: var(--white);
  transition: background 220ms, border-color 220ms;
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.store-btn-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  gap: 0.04rem;
  text-align: left;
}

.store-btn-sub {
  font-size: 0.64rem;
  opacity: 0.56;
  font-weight: 400;
}

.store-btn-main {
  font-size: 0.84rem;
  font-weight: 680;
}

/* ── Pricing / Plan cards ───────────────────────────────────── */
.plan-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.plan-toggle-btn {
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(250, 250, 250, 0.62);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms, border-color 200ms, color 200ms;
}

.plan-toggle-btn.active {
  border-color: rgba(255, 183, 27, 0.45);
  background: rgba(255, 183, 27, 0.1);
  color: var(--yellow);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  max-width: 980px;
  margin: 0 auto 3.5rem;
  align-items: start;
}

.plan-card {
  position: relative;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 1.7rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 280ms, background 280ms, transform 280ms var(--ease);
}

.plan-card:hover {
  border-color: rgba(255, 183, 27, 0.28);
  background: rgba(255, 183, 27, 0.04);
}

.plan-card.featured {
  border-color: rgba(255, 183, 27, 0.44);
  background: rgba(255, 183, 27, 0.06);
}

.plan-card.featured:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 183, 27, 0.6);
}

.plan-badge {
  position: absolute;
  top: -1px;
  right: 1.4rem;
  padding: 0.22rem 0.75rem;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #111;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.plan-name {
  margin: 0 0 0.25rem;
  font-size: 0.74rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.plan-card.featured .plan-name { color: var(--yellow); }

.plan-tagline {
  margin: 0 0 1.2rem;
  font-size: 0.9rem;
  color: rgba(250, 250, 250, 0.66);
  line-height: 1.45;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.35rem;
  font-weight: 800;
  line-height: 1;
}

.plan-price-amount {
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.plan-price-period {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.plan-saving {
  display: inline-block;
  margin-bottom: 1.4rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 183, 27, 0.14);
  border: 1px solid rgba(255, 183, 27, 0.3);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 720;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(250, 250, 250, 0.78);
  line-height: 1.45;
}

.plan-features li::before {
  content: "✓";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 183, 27, 0.14);
  border: 1px solid rgba(255, 183, 27, 0.3);
  display: grid;
  place-items: center;
  color: var(--yellow);
  font-size: 0.66rem;
  font-weight: 800;
  margin-top: 0.1em;
}

.plan-free-features li::before { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: var(--muted); }

.plan-cta { margin-top: auto; }

.plan-note {
  margin-top: 0.55rem;
  font-size: 0.74rem;
  color: var(--subtle);
  text-align: center;
}

/* ── Feature comparison table ───────────────────────────────── */
.comparison-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2.5rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.87rem;
  min-width: 540px;
}

.comparison-table thead th {
  padding: 1rem 1.3rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.comparison-table thead th:not(:first-child) { text-align: center; }

.comparison-table thead th.col-optimised { color: var(--yellow); }

.comparison-table tbody td {
  padding: 0.85rem 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(250, 250, 250, 0.76);
  vertical-align: middle;
}

.comparison-table tbody td:not(:first-child) { text-align: center; }
.comparison-table tbody tr:last-child td { border-bottom: none; }

.check-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 183, 27, 0.14);
  border: 1px solid rgba(255, 183, 27, 0.32);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
}

.cross-icon {
  color: rgba(250, 250, 250, 0.2);
  font-size: 1.1rem;
}

/* ── All-plans included list ────────────────────────────────── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.included-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: rgba(250, 250, 250, 0.78);
  line-height: 1.5;
}

.included-grid li::before {
  content: "✓";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 183, 27, 0.12);
  border: 1px solid rgba(255, 183, 27, 0.28);
  display: grid;
  place-items: center;
  color: var(--yellow);
  font-size: 0.67rem;
  font-weight: 800;
  margin-top: 0.08em;
}

/* ── How it Works — steps ───────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.step-card {
  position: relative;
  padding: 1.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  transition: background 220ms, border-color 220ms, transform 280ms var(--ease);
}

.step-card:hover {
  background: rgba(255, 183, 27, 0.04);
  border-color: rgba(255, 183, 27, 0.22);
  transform: translateY(-4px);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 183, 27, 0.18), rgba(240, 112, 0, 0.12));
  border: 1px solid rgba(255, 183, 27, 0.32);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--yellow);
}

.step-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.step-card p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(250, 250, 250, 0.68);
  line-height: 1.65;
}

/* ── Review / testimonial cards ─────────────────────────────── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.1rem;
  margin-top: 2.5rem;
}

.review-card {
  padding: 1.55rem 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 220ms, border-color 220ms;
}

.review-card:hover {
  background: rgba(255, 183, 27, 0.04);
  border-color: rgba(255, 183, 27, 0.18);
}

.review-stars {
  display: flex;
  gap: 2px;
  color: var(--yellow);
  font-size: 0.82rem;
  letter-spacing: 1px;
}

.review-card blockquote {
  margin: 0;
  font-size: 0.91rem;
  color: rgba(250, 250, 250, 0.82);
  line-height: 1.68;
  font-style: italic;
  flex: 1;
}

.review-card cite {
  font-size: 0.79rem;
  font-style: normal;
  color: var(--muted);
  font-weight: 640;
}

/* ── Guide sticky navigation ────────────────────────────────── */
.guide-nav {
  position: sticky;
  top: 64px;
  z-index: 80;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0 var(--gutter);
}

.guide-nav-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: var(--max);
  margin: 0 auto;
}

.guide-nav-inner::-webkit-scrollbar { display: none; }

.guide-nav-link {
  flex: 0 0 auto;
  padding: 0.9rem 1rem;
  color: rgba(250, 250, 250, 0.5);
  font-size: 0.79rem;
  font-weight: 580;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 200ms, border-color 200ms;
}

.guide-nav-link:hover,
.guide-nav-link.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

/* ── Guide section ──────────────────────────────────────────── */
.guide-section {
  scroll-margin-top: 120px;
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.guide-step {
  display: grid;
  grid-template-columns: 70px 44px 1fr;
  gap: 0 1.1rem;
  align-items: center;
  padding: 1rem 1.4rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  transition: background 200ms;
}

.guide-step:hover { background: rgba(255, 255, 255, 0.05); }

.guide-step-num {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 183, 27, 0.18), rgba(240, 112, 0, 0.12));
  border: 1px solid rgba(255, 183, 27, 0.3);
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--yellow);
  flex-shrink: 0;
}

.guide-step-preview {
  width: 70px;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
  flex-shrink: 0;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.guide-step:hover .guide-step-preview {
  transform: scale(1.04);
  box-shadow: 0 0 0 2px rgba(240, 112, 0, 0.25);
}

.guide-step-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.guide-step-body { min-width: 0; }

.guide-step-body h3 {
  margin: 0 0 0.4rem;
  font-size: 0.94rem;
  font-weight: 680;
  line-height: 1.35;
}

.guide-step-body p {
  margin: 0;
  font-size: 0.87rem;
  color: rgba(250, 250, 250, 0.68);
  line-height: 1.66;
}

.guide-step-body p strong {
  color: var(--white);
  font-weight: 660;
}

.guide-step-body p a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.guide-note {
  margin-top: 0.7rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 183, 27, 0.07);
  border: 1px solid rgba(255, 183, 27, 0.2);
  border-radius: 10px;
  font-size: 0.82rem;
  color: rgba(250, 250, 250, 0.72);
  line-height: 1.58;
}

.guide-section-divider {
  margin: 0 0 2rem;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Help / Resource cards ──────────────────────────────────── */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.help-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.75rem 1.55rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: background 220ms, border-color 220ms, transform 280ms var(--ease);
}

.help-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 183, 27, 0.24);
  transform: translateY(-3px);
}

.help-card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 183, 27, 0.1);
  border: 1px solid rgba(255, 183, 27, 0.22);
  font-size: 1.25rem;
}

.help-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 720;
}

.help-card p {
  margin: 0;
  flex: 1;
  font-size: 0.87rem;
  color: rgba(250, 250, 250, 0.65);
  line-height: 1.62;
}

.help-card .text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--yellow);
  font-size: 0.84rem;
  font-weight: 640;
  margin-top: auto;
  transition: gap 200ms;
}

.help-card .text-link:hover { gap: 0.5rem; }

.help-card .text-link::after { content: "→"; }

/* ── Contact info grid ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.contact-item { display: flex; flex-direction: column; gap: 0.3rem; }

.contact-label {
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--yellow);
}

.contact-value {
  font-size: 0.92rem;
  color: rgba(250, 250, 250, 0.78);
  line-height: 1.55;
}

.contact-value a { transition: color 200ms; }
.contact-value a:hover { color: var(--yellow); }

/* ── FAQ accordion ──────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 820px;
  margin: 2rem auto 0;
}

.faq-item {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: background 220ms, border-color 220ms;
}

.faq-item[open] {
  background: rgba(255, 183, 27, 0.05);
  border-color: rgba(255, 183, 27, 0.22);
}

.faq-question {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.35rem;
  background: none;
  border: none;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 630;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.faq-icon {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 300ms var(--ease), border-color 220ms;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--white);
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 9px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 9px;
  transition: transform 300ms var(--ease), opacity 300ms;
}

.faq-item[open] .faq-icon {
  border-color: var(--yellow);
  transform: rotate(45deg);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: var(--yellow); }

.faq-answer {
  padding: 0 1.35rem 1.25rem;
  color: rgba(250, 250, 250, 0.72);
  font-size: 0.91rem;
  line-height: 1.7;
  display: none;
}

.faq-item[open] .faq-answer { display: block; }

.faq-answer a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-category {
  margin: 2.5rem 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--yellow);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.faq-category:first-of-type { margin-top: 0; }

/* ── Inner CTA section ──────────────────────────────────────── */
.inner-cta {
  text-align: center;
}

.inner-cta .section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.inner-cta .section-body {
  margin: 0 auto;
  text-align: center;
}

.inner-cta .store-buttons {
  justify-content: center;
}

/* ── Site footer ─────────────────────────────────────────────── */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: clamp(52px, 7vw, 88px) var(--gutter) clamp(28px, 4vw, 44px);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(200px, 1.2fr) 1fr 1fr 1fr;
  gap: 2.5rem 3rem;
}

.footer-brand img {
  width: 144px;
  height: auto;
  margin-bottom: 1.1rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(250, 250, 250, 0.42);
  line-height: 1.62;
  max-width: 300px;
}

.footer-col h4 {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--yellow);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col li { font-size: 0.82rem; color: rgba(250, 250, 250, 0.52); }

.footer-col a {
  color: rgba(250, 250, 250, 0.52);
  transition: color 200ms;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.74rem;
  color: rgba(250, 250, 250, 0.3);
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(250, 250, 250, 0.5);
  transition: background 200ms, border-color 200ms, color 200ms;
}

.footer-social a:hover {
  background: rgba(255, 183, 27, 0.12);
  border-color: rgba(255, 183, 27, 0.32);
  color: var(--yellow);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-header h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .guide-step {
    grid-template-columns: 52px 36px 1fr;
    gap: 0 0.7rem;
    padding: 0.85rem 1rem 0.85rem 0.85rem;
  }

  .guide-step-preview {
    width: 52px;
    height: 90px;
    border-radius: 10px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-table {
    font-size: 0.8rem;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 0.75rem 0.9rem;
  }

  .inner-cta .store-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-list {
    max-width: 100%;
  }

  .section-title {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }
}

@media (max-width: 480px) {
  .plan-grid {
    max-width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-header p.lead {
    font-size: 0.96rem;
  }

  .guide-step {
    grid-template-columns: 44px 32px 1fr;
    gap: 0 0.55rem;
    padding: 0.75rem 0.75rem 0.75rem 0.75rem;
  }

  .guide-step-preview {
    width: 44px;
    height: 76px;
    border-radius: 8px;
  }
}
