/* =====================================================
   NOW加速 — 全站样式表 v2.0  「Cloud Morning」主题
   纯原生 CSS · 无外部框架依赖
   ===================================================== */

/* ---------- 设计变量 ---------- */
:root {
  --cream:         #FFF6ED;
  --tangerine:     #FF8A3D;
  --tangerine-d:   #E5721E;
  --tangerine-l:   #FFD4B2;
  --navy:          #1E2A4A;
  --navy-light:    #4A5A80;
  --sky:           #7FB5FF;
  --sky-l:         #C8DEFF;
  --white:         #FFFFFF;
  --text-muted:    #7A8CAE;
  --green:         #34D399;
  --red:           #F87171;
  --font-display:  'Baloo 2', -apple-system, BlinkMacSystemFont, cursive;
  --font-body:     'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:        24px;
  --radius-sm:     16px;
  --radius-pill:   999px;
  --shadow:        0 8px 32px rgba(30,42,74,0.08);
  --shadow-hover:  0 16px 48px rgba(30,42,74,0.14);
  --shadow-orange: 0 8px 28px rgba(255,138,61,0.28);
  --shadow-sky:    0 8px 28px rgba(127,181,255,0.28);
  --max-w:         1100px;
  --transition:    .22s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--tangerine); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: .82; }
ul { list-style: none; }

/* ---------- Container ---------- */
.container {
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.btn:active {
  transform: scale(0.93) !important;
  transition: transform 0.1s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.btn-pill  { border-radius: var(--radius-pill); }
.btn-lg    { padding: 16px 40px; font-size: 1.1rem; }
.btn-block { display: flex; width: 100%; }

/* Primary — Tangerine */
.btn-primary {
  background: var(--tangerine);
  color: var(--white);
  border-color: var(--tangerine);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--tangerine-d);
  border-color: var(--tangerine-d);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255,138,61,0.38);
}

/* Outline — Tangerine border */
.btn-outline {
  background: transparent;
  color: var(--tangerine);
  border-color: var(--tangerine);
}
.btn-outline:hover {
  background: var(--tangerine);
  color: var(--white);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

/* Sky — family plan */
.btn-sky {
  background: var(--sky);
  color: var(--white);
  border-color: var(--sky);
  box-shadow: var(--shadow-sky);
}
.btn-sky:hover {
  background: #5B99F0;
  border-color: #5B99F0;
  opacity: 1;
  transform: translateY(-2px);
}

/* White — on orange bg */
.btn-white {
  background: var(--white);
  color: var(--tangerine);
  border-color: var(--white);
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}
.btn-white:hover {
  background: var(--cream);
  border-color: var(--cream);
  opacity: 1;
  transform: translateY(-2px);
}

/* Nav button */
.btn-nav {
  padding: 9px 22px;
  font-size: .88rem;
}

/* =====================================================
   HEADER / NAV
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,246,237,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,138,61,0.12);
  box-shadow: 0 2px 16px rgba(30,42,74,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--navy);
}
.logo-cloud {
  width: 40px;
  height: 28px;
  flex-shrink: 0;
}
.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-accent { color: var(--tangerine); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy-light);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--tangerine); opacity: 1; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes cloudFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(0.4deg); }
  66%       { transform: translateY(-5px) rotate(-0.4deg); }
}
@keyframes cloudFloatSlow {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes cloudFloatMed {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.cloud-float      { animation: cloudFloat 5s ease-in-out infinite; }
.cloud-float-slow { animation: cloudFloatSlow 7s ease-in-out infinite; }
.cloud-float-med  { animation: cloudFloatMed 4s ease-in-out infinite; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  background: var(--cream);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 80% 50%, rgba(255,212,178,0.5) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 15% 20%, rgba(200,222,255,0.35) 0%, transparent 60%);
  pointer-events: none;
}
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 40px;
}
.hero-text { max-width: 560px; }
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tangerine-l);
  color: var(--tangerine-d);
  font-size: .82rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 18px;
}
.text-orange { color: var(--tangerine); }
.hero-sub {
  font-size: clamp(.95rem, 2.2vw, 1.1rem);
  color: var(--navy-light);
  line-height: 1.85;
  margin-bottom: 32px;
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* Blog dofollow link — no nofollow, pure dofollow */
.hero-blog-ref { margin-bottom: 32px; }
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--sky);
  border-bottom: 2px dashed rgba(127,181,255,0.5);
  padding-bottom: 2px;
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition);
}
.blog-link:hover {
  color: #3A80D8;
  border-color: #3A80D8;
  opacity: 1;
}

/* Trust bar */
.trust-bar {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy-light);
}
.trust-icon { margin-right: 2px; }

/* Hero illustration */
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.cloud-main {
  width: min(340px, 90%);
  filter: drop-shadow(0 20px 40px rgba(255,138,61,0.22));
}
.cloud-sm {
  position: absolute;
  width: 120px;
  top: 10px;
  left: -10px;
}
.cloud-xs {
  position: absolute;
  width: 90px;
  bottom: 20px;
  right: 0;
}

/* Wave dividers */
.wave-bottom {
  line-height: 0;
  overflow: hidden;
  margin-top: 16px;
}
.wave-bottom svg {
  display: block;
  width: 100%;
  height: 72px;
}

/* =====================================================
   SECTION COMMON
   ===================================================== */
.section       { padding: 80px 0 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tangerine-d);
  background: var(--tangerine-l);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 40px;
}
.step-card {
  flex: 1;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid var(--tangerine-l);
  transition: all var(--transition);
}
.step-card:hover {
  border-color: var(--tangerine);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--tangerine-l);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon   { font-size: 2.4rem; margin-bottom: 14px; }
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-card p {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.72;
}
.step-connector {
  font-size: 1.8rem;
  color: var(--tangerine-l);
  font-weight: 700;
  padding-top: 80px;
  flex-shrink: 0;
}

/* =====================================================
   REASSURANCE
   ===================================================== */
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 40px;
}
.reassure-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.reassure-card:hover {
  border-color: var(--tangerine-l);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.reassure-emoji  { font-size: 2.4rem; margin-bottom: 14px; }
.reassure-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.reassure-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* =====================================================
   PLATFORM PILLS
   ===================================================== */
.platform-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding-bottom: 20px;
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1.5px solid var(--tangerine-l);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  transition: all var(--transition);
  cursor: default;
}
.platform-pill:hover {
  background: var(--tangerine-l);
  border-color: var(--tangerine);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.plat-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.netflix    { background: #E50914; }
.youtube    { background: #FF0000; }
.chatgpt    { background: #10A37F; }
.tiktok     { background: linear-gradient(135deg, #69C9D0, #EE1D52); }
.spotify    { background: #1DB954; }
.disney     { background: #113CCF; }
.claude     { background: #C96442; }
.twitter    { background: #000; }
.instagram  { background: linear-gradient(135deg, #F09433, #DC2743, #BC1888); }
.midjourney { background: #000; }
.hulu       { background: #1CE783; }
.github     { background: #24292E; }
.plat-note {
  text-align: center;
  font-size: .82rem;
  color: var(--text-muted);
  padding-bottom: 24px;
}

/* =====================================================
   PRICING
   ===================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
  padding-bottom: 24px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 22px 28px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.price-popular {
  border-color: var(--tangerine);
  box-shadow: var(--shadow-orange);
}
.price-family {
  border-color: var(--sky);
  box-shadow: var(--shadow-sky);
}
.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tangerine);
  color: var(--white);
  font-size: .74rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255,138,61,0.35);
}
.price-icon { font-size: 2rem; margin-bottom: 10px; }
.price-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.price-main {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.1;
}
.price-num    { font-size: 2.7rem; }
.price-period { font-size: .82rem; color: var(--text-muted); font-weight: 400; }
.price-save   { font-size: .78rem; color: var(--green); font-weight: 800; margin-bottom: 14px; }
.price-desc   { font-size: .78rem; color: var(--text-muted); margin-bottom: 14px; }
.price-list {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-list li {
  font-size: .85rem;
  color: var(--navy-light);
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.pricing-pay-note {
  text-align: center;
  font-size: .87rem;
  color: var(--text-muted);
  padding-bottom: 24px;
}

/* =====================================================
   REVIEWS
   ===================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-bottom: 40px;
}
.review-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  border: 1.5px solid var(--tangerine-l);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.review-stars { color: #FBBF24; font-size: 1.1rem; margin-bottom: 12px; }
.review-body {
  font-size: .95rem;
  color: var(--navy-light);
  line-height: 1.8;
  margin-bottom: 18px;
  font-style: italic;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-meta strong { color: var(--navy); font-size: .95rem; display: block; }
.review-meta small  { color: var(--text-muted); font-size: .78rem; }

/* =====================================================
   FAQ
   ===================================================== */
.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 40px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--tangerine-l);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow-hover); }
.faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-size: .95rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--tangerine);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 14px 22px 18px;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.8;
  border-top: 1px solid var(--tangerine-l);
}
.faq-item a { color: var(--tangerine); font-weight: 600; }

/* =====================================================
   FINAL CTA
   ===================================================== */
.section-cta {
  background: linear-gradient(135deg, #FF8A3D 0%, #FF6B1A 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(255,255,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-cloud-deco { margin-bottom: 24px; }
.cta-cloud-deco svg { width: 80px; margin: 0 auto; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
}
.cta-inner p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--navy);
  padding: 52px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.footer-tagline {
  font-size: .84rem;
  color: rgba(255,255,255,0.45);
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: .9rem;
  font-weight: 600;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--tangerine); opacity: 1; }
.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: .78rem;
  line-height: 1.9;
}

/* =====================================================
   SUBPAGES (about, terms, privacy, sitemap, cloud-picks)
   ===================================================== */
.subpage-main {
  min-height: 65vh;
  background: var(--cream);
  padding: 72px 0 80px;
}
.subpage-main h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.subpage-main .lead {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--tangerine-l);
}
.subpage-main h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 12px;
}
.subpage-main h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tangerine);
  margin: 20px 0 8px;
}
.subpage-main p {
  color: var(--navy-light);
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: .95rem;
}
.subpage-main ul {
  list-style: disc;
  padding-left: 22px;
  color: var(--navy-light);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.subpage-main ul li { margin-bottom: 6px; }
.subpage-main a { color: var(--tangerine); font-weight: 600; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.info-box {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--tangerine-l);
  box-shadow: var(--shadow);
  padding: 24px;
}
.info-box .info-icon { font-size: 2rem; margin-bottom: 10px; }
.info-box h3 { color: var(--navy) !important; font-size: 1rem; margin: 0 0 8px !important; }
.info-box p  { margin: 0 !important; font-size: .88rem !important; color: var(--text-muted) !important; }

.alert-box {
  background: rgba(248,113,113,0.08);
  border: 1.5px solid rgba(248,113,113,0.3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: #DC2626;
  font-size: .9rem;
  margin: 16px 0;
  line-height: 1.7;
  font-weight: 600;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.sitemap-col h3 {
  color: var(--navy) !important;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--tangerine-l);
}
.sitemap-col ul { list-style: none; padding: 0; }
.sitemap-col li { margin-bottom: 8px; }
.sitemap-col a { color: var(--navy-light) !important; font-size: .9rem; font-weight: 600; }
.sitemap-col a:hover { color: var(--tangerine) !important; opacity: 1; }

/* 推荐资讯 page specific */
.picks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 28px 0;
}
.pick-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1.5px solid var(--tangerine-l);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.pick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pick-tag {
  display: inline-block;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--tangerine-l);
  color: var(--tangerine-d);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.pick-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.pick-card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.pick-score   { display: flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 700; color: var(--tangerine); }

/* =====================================================
   RESPONSIVE — TABLET (≤ 900px)
   ===================================================== */
@media (max-width: 900px) {
  .pricing-grid     { grid-template-columns: repeat(2, 1fr); }
  .reassurance-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-layout      { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero-text        { max-width: 100%; }
  .hero-art         { min-height: 200px; }
  .cloud-sm, .cloud-xs { display: none; }
  .hero-cta-group   { justify-content: center; }
  .trust-bar        { justify-content: center; }
  .hero-blog-ref    { text-align: center; }
  .steps-grid       { flex-direction: column; }
  .step-connector   { transform: rotate(90deg); padding: 0; text-align: center; }
  .info-grid        { grid-template-columns: 1fr; }
  .sitemap-grid     { grid-template-columns: repeat(2, 1fr); }
  .picks-grid       { grid-template-columns: 1fr; }
}

/* =====================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ===================================================== */
@media (max-width: 600px) {
  /* Nav */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: rgba(255,246,237,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    border-bottom: 2px solid var(--tangerine-l);
    box-shadow: 0 12px 32px rgba(30,42,74,0.1);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 24px;
    font-size: .98rem;
    border-bottom: 1px solid var(--tangerine-l);
  }
  .nav-links .btn-nav {
    margin: 12px 24px 0;
    border-radius: var(--radius-pill);
    text-align: center;
    justify-content: center;
  }

  /* Sections */
  .section { padding: 56px 0 0; }
  .section-header { margin-bottom: 36px; }

  /* Hero */
  .hero { padding: 64px 0 0; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn { justify-content: center; }
  .trust-bar { flex-direction: column; gap: 10px; }

  /* Steps */
  .step-card { padding: 24px 18px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card   { padding: 28px 18px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Reassurance */
  .reassurance-grid { grid-template-columns: 1fr; }

  /* Sitemap */
  .sitemap-grid { grid-template-columns: 1fr; }

  /* Picks */
  .picks-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-links { gap: 16px; }

  /* Touch-friendly buttons */
  .btn { min-height: 48px; }
}

/* SEO & New Features */
.breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--tangerine); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; opacity: 0.6; }

.next-article-box { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; padding: 20px; border-top: 2px dashed var(--tangerine-l); background: var(--cream); border-radius: var(--radius-sm); }
.next-article-box span { font-size: 0.85rem; font-weight: 700; color: var(--navy-light); text-transform: uppercase; }
.next-article-box a { font-size: 1.05rem; font-weight: 800; color: var(--tangerine); text-decoration: none; }
.next-article-box a:hover { opacity: 0.8; }

.fab-container { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 12px; z-index: 100; }
.fab-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--white); color: var(--navy); display: flex; justify-content: center; align-items: center; text-decoration: none; box-shadow: 0 4px 12px rgba(30,42,74,0.15); font-size: 1.2rem; border: 1.5px solid var(--tangerine-l); transition: all 0.3s; opacity: 0.9; cursor: pointer; }
.fab-btn:hover { background: var(--tangerine); color: var(--white); border-color: var(--tangerine); transform: translateY(-3px); opacity: 1; }
@media(max-width: 600px){ .fab-container { bottom: 20px; right: 20px; } .fab-btn { width: 40px; height: 40px; font-size: 1rem; } }

.hero-image-wrap { max-width: 440px; margin: 40px auto 0; position: relative; z-index: 2; border-radius: 32px; overflow: hidden; box-shadow: 0 20px 40px rgba(255,138,61,0.15); border: 4px solid var(--white); }
.hero-image-wrap img { width: 100%; display: block; object-fit: cover; }

/* Affiliate Disclosure & Pros/Cons */
.aff-disclosure { background: rgba(30,42,74,0.03); border-left: 4px solid var(--tangerine); padding: 14px 20px; font-size: 0.85rem; color: var(--navy-light); margin: 24px 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; line-height: 1.6; }
.aff-disclosure strong { color: var(--navy); font-weight: 800; }

/* Affiliate Disclosure & Pros/Cons */
.aff-disclosure { background: rgba(30,42,74,0.03); border-left: 4px solid var(--tangerine); padding: 14px 20px; font-size: 0.85rem; color: var(--navy-light); margin: 24px 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; line-height: 1.6; }
.aff-disclosure strong { color: var(--navy); font-weight: 800; }
