@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

:root {
  --ocean: #0a4f6e;
  --ocean-deep: #063348;
  --ocean-mid: #1a6b8a;
  --coral: #e8694a;
  --coral-light: #f28c72;
  --sand: #f7f2eb;
  --sand-dark: #ede6db;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #3a3a3a;
  --text-light: #666;
  --border: #d4cec6;
  --gold-star: #f0a500;
  --shadow: 0 2px 14px rgba(6,51,72,0.10);
  --shadow-lg: 0 6px 30px rgba(6,51,72,0.16);
  --radius: 8px;
  --radius-lg: 16px;
  --ff-head: 'Montserrat', Arial, sans-serif;
  --ff-body: 'Source Serif 4', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); background: var(--sand); color: var(--text-dark); line-height: 1.75; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
a { color: var(--ocean-mid); text-decoration: none; }
a:hover { color: var(--ocean-deep); }
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  background: linear-gradient(90deg, var(--ocean-deep) 0%, var(--ocean) 100%);
  border-bottom: 3px solid var(--coral);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; max-width: 1080px; margin: 0 auto; gap: 16px;
}
.site-logo img { height: 44px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.site-nav a {
  color: rgba(255,255,255,0.82); font-family: var(--ff-head); font-size: 0.78rem;
  font-weight: 600; padding: 6px 11px; border-radius: 5px;
  letter-spacing: 0.01em; transition: background 0.2s, color 0.2s;
}
.site-nav a:hover, .site-nav a.active { background: rgba(255,255,255,0.12); color: var(--white); }
.btn-cta-nav {
  background: var(--coral) !important; color: var(--white) !important;
  font-weight: 700 !important; padding: 8px 16px !important;
  border-radius: 6px !important; white-space: nowrap;
}
.btn-cta-nav:hover { background: var(--coral-light) !important; }

/* Breadcrumb */
.breadcrumb {
  background: var(--sand-dark); padding: 10px 0;
  font-size: 0.8rem; color: var(--text-light); border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--ocean-mid); }
.breadcrumb span { margin: 0 6px; }

/* Hero */
.page-hero {
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-mid) 60%, #1a7fa0 100%);
  padding: 56px 20px 46px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='%23e8694a' stroke-width='0.5' stroke-opacity='0.12'/%3E%3Ccircle cx='30' cy='30' r='10' fill='none' stroke='%23e8694a' stroke-width='0.5' stroke-opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--ff-head); font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; color: var(--white); line-height: 1.15;
  margin-bottom: 14px; position: relative; letter-spacing: -0.01em;
}
.page-hero .subtitle {
  color: rgba(255,255,255,0.78); font-size: 1rem; font-family: var(--ff-body);
  max-width: 600px; margin: 0 auto 22px; font-style: italic;
}
.rating-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(232,105,74,0.5);
  border-radius: 50px; padding: 8px 22px; color: rgba(255,255,255,0.9);
  font-size: 0.88rem; font-weight: 600; font-family: var(--ff-head);
}
.stars { color: var(--gold-star); letter-spacing: 2px; }

/* Layout */
.page-layout {
  display: grid; grid-template-columns: 1fr 300px; gap: 36px;
  padding: 40px 20px; max-width: 1080px; margin: 0 auto; align-items: start;
}
.page-content { min-width: 0; }
.sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 22px; }

/* Typography */
.page-content h2 {
  font-family: var(--ff-head); font-size: 1.45rem; font-weight: 800;
  color: var(--ocean-deep); margin: 40px 0 14px;
  padding-bottom: 10px; border-bottom: 3px solid var(--coral);
  line-height: 1.25; letter-spacing: -0.01em;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700;
  color: var(--ocean-mid); margin: 26px 0 10px;
}
.page-content p { margin-bottom: 18px; color: var(--text-mid); font-size: 0.95rem; }
.page-content ul, .page-content ol { margin: 0 0 18px 22px; color: var(--text-mid); font-size: 0.95rem; }
.page-content li { margin-bottom: 7px; }
.page-content strong { color: var(--text-dark); font-weight: 600; }

/* Verdict Box */
.verdict-box {
  background: var(--white); border: 2px solid var(--ocean);
  border-radius: var(--radius-lg); padding: 26px; margin-bottom: 30px; box-shadow: var(--shadow);
}
.verdict-box .verdict-title {
  font-family: var(--ff-head); font-size: 1.15rem; font-weight: 800;
  color: var(--ocean-deep); margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.verdict-item .label { color: var(--text-light); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; font-family: var(--ff-head); font-weight: 600; }
.verdict-item .value { color: var(--text-dark); font-weight: 600; font-size: 0.92rem; }
.verdict-rating { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--border); }
.rating-number { font-family: var(--ff-head); font-size: 2.8rem; color: var(--ocean-deep); line-height: 1; font-weight: 800; }
.rating-stars-lg { font-size: 1.4rem; color: var(--gold-star); }
.rating-label { font-size: 0.8rem; color: var(--text-light); }

/* Offer Cards */
.offer-cards { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.offer-card {
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border);
  padding: 22px 24px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center;
  transition: box-shadow 0.2s; position: relative;
}
.offer-card:hover { box-shadow: var(--shadow-lg); }
.offer-card.featured { border-color: var(--coral); border-width: 2px; }
.offer-badge {
  position: absolute; top: -11px; left: 20px;
  background: var(--coral); color: var(--white);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; padding: 3px 12px; border-radius: 50px;
  font-family: var(--ff-head);
}
.offer-card-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 5px; font-weight: 700; font-family: var(--ff-head); }
.offer-amount { font-family: var(--ff-head); font-size: 1.1rem; color: var(--ocean-deep); line-height: 1.3; margin-bottom: 6px; font-weight: 700; }
.offer-note { font-size: 0.82rem; color: var(--text-light); font-style: italic; }

/* Buttons */
.btn {
  display: inline-block; padding: 12px 26px; border-radius: 8px;
  font-weight: 700; font-family: var(--ff-head); font-size: 0.88rem;
  text-align: center; white-space: nowrap; cursor: pointer;
  transition: all 0.2s; letter-spacing: 0.01em;
}
.btn-primary { background: var(--coral); color: var(--white); border: 2px solid var(--coral); }
.btn-primary:hover { background: #d45a3a; border-color: #d45a3a; color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,105,74,0.4); }
.btn-secondary { background: transparent; color: var(--ocean-deep); border: 2px solid var(--ocean); }
.btn-secondary:hover { background: var(--ocean); color: var(--white); }
.btn-full { width: 100%; display: block; text-align: center; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0; }

/* Info Box */
.info-box {
  background: #eef6fa; border-left: 4px solid var(--ocean-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px; margin: 24px 0; box-shadow: var(--shadow);
}
.info-box-title { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; color: var(--ocean-deep); margin-bottom: 8px; }

/* Coins Table */
.coins-table {
  width: 100%; border-collapse: collapse; margin: 24px 0;
  font-size: 0.9rem; background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.coins-table th { background: var(--ocean-deep); color: var(--white); padding: 13px 18px; text-align: left; font-family: var(--ff-head); font-weight: 700; font-size: 0.88rem; letter-spacing: 0.02em; }
.coins-table td { padding: 11px 18px; border-bottom: 1px solid var(--sand-dark); color: var(--text-mid); }
.coins-table tr:last-child td { border-bottom: none; }
.coins-table tr:nth-child(even) td { background: var(--sand); }

/* Pros Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0; }
.pros-box, .cons-box { background: var(--white); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow); }
.pros-box { border-top: 3px solid #2d8a4e; }
.cons-box { border-top: 3px solid var(--coral); }
.pros-box h3, .cons-box h3 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; font-family: var(--ff-head); font-weight: 700; }
.pros-box h3 { color: #2d8a4e; }
.cons-box h3 { color: var(--coral); }
.pros-box ul, .cons-box ul { list-style: none; margin: 0; padding: 0; }
.pros-box li::before { content: '✓  '; color: #2d8a4e; font-weight: 700; }
.cons-box li::before { content: '✗  '; color: var(--coral); font-weight: 700; }
.pros-box li, .cons-box li { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 9px; }

/* Steps */
.steps { margin: 24px 0; }
.step { display: flex; gap: 20px; margin-bottom: 24px; align-items: flex-start; }
.step-num { min-width: 42px; height: 42px; background: var(--coral); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ff-head); font-size: 1rem; font-weight: 800; flex-shrink: 0; }
.step-body h3 { margin-top: 0; color: var(--ocean-deep); }

/* FAQ */
.faq-section { background: var(--white); border-radius: var(--radius-lg); padding: 30px 28px; margin: 40px 0; box-shadow: var(--shadow); }
.faq-section h2 { border-bottom: none; margin-top: 0; margin-bottom: 22px; }
.faq-item { border-bottom: 1px solid var(--sand-dark); padding: 16px 0; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-q { font-family: var(--ff-head); font-size: 0.95rem; font-weight: 700; color: var(--ocean-deep); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--coral); flex-shrink: 0; font-family: sans-serif; font-weight: 300; }
.faq-a { font-size: 0.9rem; color: var(--text-mid); margin-top: 10px; line-height: 1.7; }

/* Related Pages */
.related-pages { background: var(--ocean-deep); border-radius: var(--radius-lg); padding: 26px; margin: 40px 0; }
.related-pages h3 { color: rgba(255,255,255,0.9); font-family: var(--ff-head); font-size: 0.95rem; font-weight: 700; margin: 0 0 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.related-pages a { display: block; color: rgba(255,255,255,0.68); font-size: 0.88rem; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.08); transition: color 0.2s; }
.related-pages a:hover { color: var(--coral-light); }
.related-pages a:last-child { border-bottom: none; }
.related-pages a::before { content: '→  '; color: var(--coral); }

/* Content Images */
.content-img { margin: 28px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.content-img img { border-radius: 0; width: 100%; }
.content-img figcaption { background: var(--sand-dark); padding: 9px 16px; font-size: 0.78rem; color: var(--text-light); font-style: italic; text-align: center; }

/* Highlight Strip */
.highlight-strip { background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-mid)); color: var(--white); padding: 34px 28px; border-radius: var(--radius-lg); margin: 32px 0; text-align: center; position: relative; overflow: hidden; }
.highlight-strip::after { content: ''; position: absolute; bottom: 0; right: 0; width: 200px; height: 200px; background: radial-gradient(circle, rgba(232,105,74,0.2) 0%, transparent 70%); pointer-events: none; }
.highlight-strip h3 { font-family: var(--ff-head); font-size: 1.4rem; font-weight: 800; color: var(--white); margin: 0 0 8px; }
.highlight-strip p { color: rgba(255,255,255,0.78); font-size: 0.9rem; margin-bottom: 20px; }

/* Disclaimer */
.disclaimer-banner { background: #eef6fa; border: 1px solid #b8d8e8; border-radius: var(--radius); padding: 14px 18px; font-size: 0.8rem; color: #063348; margin: 24px 0; line-height: 1.6; }

/* Sidebar */
.sidebar-widget { background: var(--white); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.sidebar-widget h3 { font-family: var(--ff-head); font-size: 0.95rem; font-weight: 800; color: var(--ocean-deep); margin: 0 0 16px; padding-bottom: 10px; border-bottom: 3px solid var(--coral); text-transform: uppercase; letter-spacing: 0.03em; }
.sidebar-widget p { font-size: 0.875rem; margin-bottom: 14px; }
.sidebar-widget .mini-offer { background: var(--sand); border-radius: var(--radius); padding: 12px 14px; margin-bottom: 10px; font-size: 0.85rem; }
.sidebar-widget .mini-offer strong { display: block; color: var(--ocean-deep); font-size: 0.88rem; margin-bottom: 3px; font-family: var(--ff-head); font-weight: 700; }
.quick-facts { list-style: none; padding: 0; margin: 0; }
.quick-facts li { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--sand-dark); font-size: 0.83rem; }
.quick-facts li:last-child { border-bottom: none; }
.quick-facts .fact-label { color: var(--text-light); }
.quick-facts .fact-val { color: var(--text-dark); font-weight: 600; font-family: var(--ff-head); }
.sidebar-widget.banner-widget { padding: 0; overflow: hidden; border: none; background: transparent; box-shadow: none; }
.sidebar-widget.banner-widget a { display: block; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); transition: transform 0.2s; }
.sidebar-widget.banner-widget a:hover { transform: translateY(-2px); }
.sidebar-widget.banner-widget img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); }

/* Footer */
.site-footer { background: var(--ocean-deep); color: rgba(255,255,255,0.72); padding: 48px 20px 28px; margin-top: 60px; }
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 28px; }
.footer-col h4 { color: rgba(255,255,255,0.9); font-family: var(--ff-head); font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); font-size: 0.83rem; margin-bottom: 7px; transition: color 0.2s; }
.footer-col a:hover { color: var(--coral-light); }
.footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom .copyright { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.age-badge { background: rgba(232,105,74,0.2); border: 1px solid var(--coral); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: var(--coral-light); flex-shrink: 0; font-family: var(--ff-head); }

@media (max-width: 860px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .verdict-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .site-nav { gap: 3px; }
  .site-nav a { font-size: 0.72rem; padding: 5px 8px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .offer-card { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .page-hero { padding: 38px 20px 30px; }
}
