@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500&display=swap');

:root {
  --sun: #f59e0b;
  --sun-bright: #fbbf24;
  --sun-deep: #d97706;
  --sun-hot: #ea580c;
  --sun-glow: #fef3c7;
  --sun-pale: #fffbeb;
  --orange: #f97316;
  --orange-deep: #c2410c;

  --bg: #ffffff;
  --bg2: #fffbeb;
  --bg3: #fef3c7;
  --bg4: #fde68a;
  --border: #fde68a;
  --border-dark: #f59e0b;

  --text: #1c1005;
  --text-muted: #78614a;
  --text-dim: #b8966a;
  --white: #ffffff;

  --radius: 10px;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 1px 3px rgba(245,158,11,0.12);
  --shadow-md: 0 4px 16px rgba(245,158,11,0.18);
  --shadow-lg: 0 8px 32px rgba(245,158,11,0.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--sun-deep); text-decoration: none; }
a:hover { color: var(--orange); }

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.03em;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--sun), var(--orange));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(245,158,11,0.4);
}

.logo span { color: var(--sun-deep); }
.logo .domain { color: var(--text-dim); font-weight: 500; font-size: 0.85rem; }

nav { display: flex; align-items: center; gap: 2px; }

nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

nav a:hover, nav a.active {
  color: var(--sun-deep);
  background: var(--bg3);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  font-size: 1.4rem;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, var(--bg3) 0%, var(--bg2) 50%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
  padding: 96px 24px 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '☀';
  position: absolute;
  top: -60px;
  right: -40px;
  font-size: 280px;
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sun-deep), var(--sun), var(--sun-bright), var(--orange), var(--sun-deep));
}

.hero-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sun-deep);
  background: var(--bg4);
  border: 1px solid var(--border-dark);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: normal;
  color: var(--sun-deep);
}

.hero p {
  max-width: 540px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sun-deep), var(--sun));
  color: white;
  box-shadow: 0 4px 16px rgba(217,119,6,0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-deep), var(--sun-hot));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,119,6,0.45);
}

.btn-outline {
  background: white;
  color: var(--sun-deep);
  border: 2px solid var(--border-dark);
}

.btn-outline:hover {
  background: var(--bg3);
  color: var(--orange-deep);
  transform: translateY(-1px);
}

.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}

.trust-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
}

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-alt { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sun-deep);
  margin-bottom: 10px;
}

.section-header { margin-bottom: 44px; }

.section-header h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-header p { margin-top: 10px; color: var(--text-muted); max-width: 520px; font-size: 0.95rem; }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }

.step {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.step:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--sun); }

.step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
  -webkit-text-stroke: 2px var(--sun);
  color: transparent;
}

.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 8px; }
.step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ── PRODUCT CARDS ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }

.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--sun); }

.product-card.featured {
  border-color: var(--sun);
  border-width: 2px;
  background: linear-gradient(160deg, var(--white), var(--bg2));
  box-shadow: var(--shadow-md);
}

.product-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.badge-recommended { background: var(--sun); color: white; }
.badge-new { background: var(--bg3); color: var(--sun-deep); border: 1px solid var(--border-dark); }
.badge-budget { background: #f3f4f6; color: var(--text-muted); border: 1px solid #e5e7eb; }

.product-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--text); letter-spacing: -0.02em; margin-bottom: 6px; }
.product-tagline { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 20px; }

.spec-list { list-style: none; margin-bottom: 24px; flex: 1; }
.spec-list li { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.spec-list li:last-child { border-bottom: none; }
.spec-key { color: var(--text-muted); }
.spec-val { color: var(--text); font-weight: 600; }
.spec-val.amber { color: var(--sun-deep); }

.price-row { margin-bottom: 16px; }
.price-from { font-size: 0.72rem; color: var(--text-dim); font-family: var(--font-display); }
.price { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--text); letter-spacing: -0.03em; }

.referral-link {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, var(--sun-deep), var(--sun));
  color: white;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  padding: 13px 20px;
  border-radius: var(--radius);
  box-shadow: 0 3px 12px rgba(217,119,6,0.3);
  transition: all 0.2s;
}

.referral-link:hover {
  background: linear-gradient(135deg, var(--orange-deep), var(--sun-hot));
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(217,119,6,0.4);
}

/* ── GUIDE CARDS ── */
.guides-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

.guide-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  display: flex; flex-direction: column; gap: 10px;
}

.guide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--sun); }
.guide-icon { font-size: 1.8rem; line-height: 1; }
.guide-tag { font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sun-deep); }
.guide-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--text); line-height: 1.3; }
.guide-card p { font-size: 0.875rem; color: var(--text-muted); flex: 1; line-height: 1.65; }
.guide-link { font-family: var(--font-display); font-size: 0.825rem; font-weight: 700; color: var(--sun-deep); }

/* ── POST PAGES ── */
.post-header {
  background: linear-gradient(160deg, var(--bg3), var(--bg2));
  border-bottom: 2px solid var(--border-dark);
  padding: 64px 24px;
}

.post-header .container { max-width: 820px; }
.post-meta { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sun-deep); margin-bottom: 14px; }
.post-header h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.9rem, 4vw, 3.2rem); color: var(--text); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.post-header .lead { color: var(--text-muted); font-size: 1.05rem; max-width: 580px; line-height: 1.75; }

.post-body { max-width: 820px; margin: 0 auto; padding: 52px 24px 80px; }
.post-body h2 { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--text); letter-spacing: -0.02em; margin: 48px 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--bg4); }
.post-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--sun-deep); margin: 28px 0 10px; }
.post-body p { margin-bottom: 18px; color: var(--text); line-height: 1.8; }
.post-body strong { color: var(--text); font-weight: 700; }
.post-body ul, .post-body ol { margin: 0 0 18px 22px; color: var(--text); }
.post-body li { margin-bottom: 7px; line-height: 1.75; }

.post-body table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin: 24px 0; }
.post-body th { font-family: var(--font-display); font-weight: 700; background: var(--bg3); padding: 12px 16px; text-align: left; border-bottom: 2px solid var(--border-dark); color: var(--text); }
.post-body td { padding: 10px 16px; border-bottom: 1px solid var(--border); color: var(--text); }
.post-body tr:hover td { background: var(--bg2); }

/* ── CALLOUT ── */
.callout {
  background: var(--bg3);
  border: 1.5px solid var(--border-dark);
  border-left: 4px solid var(--sun);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 28px 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
}

.callout strong { color: var(--sun-deep); }

/* ── PRODUCT SHORTCODE ── */
.product-box { background: var(--bg2); border: 1.5px solid var(--border-dark); border-radius: var(--radius); padding: 22px 26px; margin: 28px 0; display: flex; flex-direction: column; gap: 10px; box-shadow: var(--shadow-sm); }
.product-box-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text); }
.product-box-meta { font-size: 0.85rem; color: var(--text-muted); }
.product-box-price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--sun-deep); }

/* ── DISCLOSURE ── */
.disclosure { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 13px 18px; font-size: 0.78rem; color: var(--text-muted); margin: 24px 0; line-height: 1.6; }

/* ── COMPARE TABLE ── */
.compare-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.compare-table th { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--text); background: var(--bg3); padding: 16px 18px; text-align: left; border-bottom: 2px solid var(--sun); }
.compare-table th:first-child { color: var(--text-muted); font-size: 0.8rem; }
.compare-table td { padding: 12px 18px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: middle; background: white; }
.compare-table td:first-child { color: var(--text-muted); font-size: 0.85rem; }
.compare-table tr:hover td { background: var(--bg2); }
.compare-table .highlight { color: var(--sun-deep); font-weight: 700; }
.compare-table .tick { color: var(--sun-deep); font-weight: 600; }
.compare-table .cross { color: #9ca3af; }

/* ── FOOTER ── */
footer { background: var(--text); border-top: 3px solid var(--sun); padding: 52px 24px 32px; margin-top: 80px; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-brand .logo { margin-bottom: 14px; color: white; }
.footer-brand .logo span { color: var(--sun-bright); }
.footer-brand .logo .domain { color: #9ca3af; }
.footer-brand .logo-icon { background: linear-gradient(135deg, var(--sun-deep), var(--sun-bright)); }
.footer-brand p { font-size: 0.85rem; color: #9ca3af; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #6b7280; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.875rem; color: #9ca3af; margin-bottom: 9px; transition: color 0.2s; }
.footer-col a:hover { color: var(--sun-bright); }
.footer-bottom { border-top: 1px solid #2d2d2d; padding-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.footer-bottom p { font-size: 0.77rem; color: #6b7280; line-height: 1.7; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: absolute; top: 62px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 12px 16px; gap: 2px; box-shadow: var(--shadow-md); }
  .menu-toggle { display: block; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .products-grid, .guides-grid, .steps { grid-template-columns: 1fr; }
  .trust-inner { gap: 20px; }
}
