:root {
  --yellow-50: #fffcf0;
  --yellow-100: #fef3c7;
  --yellow-200: #fde68a;
  --yellow-300: #fcd34d;
  --yellow-400: #fbbf24;
  --yellow-500: #f59e0b;
  --yellow-600: #d97706;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green-600: #16a34a;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 16px 34px rgba(245, 158, 11, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--gray-900);
  background: #fff;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

input,
button {
  font: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--yellow-200);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--yellow-400), var(--yellow-600));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
}

.brand-text {
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.brand-text span {
  color: var(--yellow-600);
}

.desktop-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--gray-700);
}

.desktop-links a,
.mobile-nav a,
.footer-grid a {
  transition: color 0.2s ease;
}

.desktop-links a:hover,
.mobile-nav a:hover,
.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--yellow-600);
}

.desktop-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  height: 44px;
  padding: 0 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn .icon {
  font-size: 18px;
}

.btn-lg {
  height: 50px;
  padding: 0 28px;
  font-size: 18px;
}

.btn-primary {
  background: var(--yellow-500);
  color: var(--gray-900);
}

.btn-primary:hover {
  background: var(--yellow-600);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
}

.btn-ghost:hover {
  background: var(--yellow-50);
}

.btn-outline {
  border-color: var(--yellow-300);
  background: #fff;
  color: var(--gray-900);
}

.btn-outline:hover {
  background: var(--yellow-50);
  border-color: var(--yellow-500);
}

.btn-dark {
  background: var(--gray-900);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
}

.btn-light {
  background: #fff;
  border-color: var(--gray-900);
  color: var(--gray-900);
}

.btn-light:hover {
  background: var(--gray-100);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--gray-700);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle:hover {
  background: var(--yellow-50);
}

.menu-toggle .icon {
  font-size: 24px;
}

.icon-close {
  display: none;
}

.menu-toggle.open .icon-menu {
  display: none;
}

.menu-toggle.open .icon-close {
  display: block;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--yellow-200);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-inner {
  padding: 16px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-actions {
  border-top: 1px solid var(--yellow-200);
  margin-top: 8px;
  padding-top: 14px;
  display: grid;
  gap: 10px;
}

.hero {
  background: linear-gradient(145deg, var(--yellow-50), #fff, var(--yellow-50));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 56px;
  padding: 88px 0;
}

.hero-content {
  display: grid;
  gap: 26px;
}

.hero-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-100);
  color: #854d0e;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
}

.hero-badge .icon {
  font-size: 16px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--yellow-600);
}

.hero p {
  font-size: 20px;
  color: var(--gray-600);
  max-width: 660px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: auto 1px auto 1px auto;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
}

.stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.stat.solo {
  display: block;
}

.icon-green {
  color: var(--green-600);
}

.stat .icon {
  font-size: 20px;
}

.stat-value {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
}

.stat-label {
  color: var(--gray-600);
  font-size: 14px;
}

.stat-divider {
  width: 1px;
  height: 46px;
  background: var(--yellow-200);
}

.hero-image-wrap {
  position: relative;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  transform: rotate(3deg);
  background: linear-gradient(145deg, var(--yellow-200), var(--yellow-400));
}

.hero-image {
  position: relative;
  border-radius: 24px;
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.section {
  padding: 88px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 54px;
}

.section-head h2 {
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-head p {
  max-width: 760px;
  margin-inline: auto;
  color: var(--gray-600);
  font-size: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  border: 1px solid var(--yellow-200);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #fff, var(--yellow-50));
  padding: 28px;
  transition: all 0.25s ease;
}

.feature-card:hover {
  border-color: var(--yellow-400);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--yellow-100);
  border-radius: 12px;
  color: #854d0e;
  margin-bottom: 18px;
}

.feature-icon .icon {
  font-size: 24px;
}

.feature-card h3 {
  font-size: 25px;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--gray-600);
}

.soft-bg {
  background: linear-gradient(180deg, var(--yellow-50), #fff);
}

.how-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 54px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 30px;
}

.step {
  display: flex;
  gap: 16px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--yellow-400), var(--yellow-600));
  color: #fff;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}

.step-icon .icon {
  font-size: 30px;
}

.step-no {
  margin-bottom: 4px;
  color: var(--yellow-600);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.step h3 {
  font-size: 32px;
  margin-bottom: 6px;
}

.step p {
  color: var(--gray-600);
}

.how-image-wrap {
  position: relative;
}

.how-glow {
  position: absolute;
  inset: -16px;
  border-radius: 26px;
  background: linear-gradient(145deg, var(--yellow-200), var(--yellow-300));
  opacity: 0.55;
  filter: blur(18px);
}

.how-image {
  position: relative;
  min-height: 500px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.rate-card {
  border: 1px solid var(--yellow-200);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all 0.25s ease;
}

.rate-card:hover {
  border-color: var(--yellow-400);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.card-brand {
  border-radius: 12px;
  height: 94px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 22px;
  display: grid;
  place-items: center;
}

.c-amazon { background: linear-gradient(145deg, #fb923c, #ea580c); }
.c-itunes { background: linear-gradient(145deg, #a78bfa, #7c3aed); }
.c-steam { background: linear-gradient(145deg, #60a5fa, #2563eb); }
.c-google { background: linear-gradient(145deg, #4ade80, #16a34a); }
.c-visa { background: linear-gradient(145deg, #818cf8, #4f46e5); }
.c-mastercard { background: linear-gradient(145deg, #f87171, #dc2626); }
.c-sephora { background: linear-gradient(145deg, #f472b6, #db2777); }
.c-ebay { background: linear-gradient(145deg, #facc15, #ca8a04); }

.rate-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rate-meta p {
  color: var(--gray-600);
  font-size: 14px;
}

.rate-meta h3 {
  font-size: 30px;
  line-height: 1.1;
}

.rate-meta .icon {
  font-size: 20px;
}

.section-cta {
  margin-top: 38px;
  display: flex;
  justify-content: center;
}

.blog-bg {
  background: linear-gradient(180deg, #fff, var(--yellow-50));
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  border: 1px solid var(--yellow-200);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: all 0.25s ease;
}

.blog-card:hover {
  border-color: var(--yellow-400);
  box-shadow: var(--shadow-hover);
}

.blog-image-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.blog-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-image-wrap img {
  transform: scale(1.05);
}

.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 999px;
  background: var(--yellow-500);
  color: var(--gray-900);
  padding: 6px 12px;
  font-size: 13px;
}

.blog-body {
  padding: 22px;
}

.blog-body h3 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-body h3 {
  color: var(--yellow-600);
}

.blog-body p {
  color: var(--gray-600);
  margin-bottom: 14px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-meta .icon {
  font-size: 15px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow-600);
  font-weight: 500;
}

.blog-link:hover {
  color: #b45309;
}

.cta-band {
  background: linear-gradient(145deg, var(--yellow-400), var(--yellow-500), var(--yellow-600));
  padding: 82px 0;
}

.cta-box {
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta-box p {
  color: rgba(17, 24, 39, 0.88);
  max-width: 760px;
  margin: 0 auto 26px;
  font-size: 20px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--gray-900);
  color: #d1d5db;
  padding: 74px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 22px;
  padding-bottom: 44px;
}

.footer-brand p {
  color: #9ca3af;
  max-width: 360px;
  margin: 14px 0 18px;
}

.footer-brand .brand-text {
  color: #fff;
}

.footer-brand .brand-text span {
  color: var(--yellow-400);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #1f2937;
  color: #e5e7eb;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.socials a:hover {
  background: var(--yellow-500);
  color: var(--gray-900);
}

.footer-grid h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 20px;
}

.footer-grid ul {
  display: grid;
  gap: 8px;
}

.footer-grid a {
  color: #9ca3af;
}

.newsletter {
  border-top: 1px solid #1f2937;
  border-bottom: 1px solid #1f2937;
  padding: 30px 0;
}

.newsletter h3 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 24px;
}

.newsletter p {
  color: #9ca3af;
  margin-bottom: 16px;
}

.newsletter-form {
  max-width: 580px;
  display: flex;
  gap: 10px;
}

.newsletter-input-wrap {
  flex: 1;
  border-radius: 12px;
  background: #1f2937;
  color: var(--gray-400);
  height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
}

.newsletter-input-wrap input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  min-width: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  font-size: 14px;
  color: #9ca3af;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom a {
  color: #9ca3af;
}

.footer-grid-simple {
  grid-template-columns: 2fr 1fr 1fr;
}

.trust-bg {
  background: linear-gradient(180deg, var(--yellow-50), #fff);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust-card {
  border: 1px solid var(--yellow-200);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.trust-card .icon {
  color: var(--green-600);
  margin-top: 2px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--yellow-200);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 18px 20px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin-top: 10px;
  color: var(--gray-600);
}

.page-hero {
  padding: 64px 0 24px;
}

.hero-card {
  border: 1px solid var(--yellow-200);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--yellow-50), #fff);
  padding: 26px 28px;
}

.breadcrumbs {
  font-size: 14px;
  color: var(--gray-500);
}

.breadcrumbs a {
  color: var(--yellow-600);
}

.hero-card h1 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.02em;
  margin-top: 10px;
}

.hero-card p {
  margin-top: 12px;
  color: var(--gray-600);
  font-size: 18px;
}

.blog-grid-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-pages {
  margin-top: 32px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-link,
.news-pages .pagination a,
.news-pages .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--yellow-200);
  background: #fff;
  color: var(--gray-700);
}

.news-pages .pagination .active,
.news-pages .pagination .current {
  background: var(--yellow-500);
  color: var(--gray-900);
  border-color: var(--yellow-500);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 24px;
  align-items: start;
}

.article-main {
  border: 1px solid var(--yellow-200);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
}

.article-cover {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  padding: 24px;
  line-height: 1.85;
  color: var(--gray-700);
}

.article-content img {
  margin: 18px auto;
  border-radius: 10px;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
  margin: 20px 0 10px;
  line-height: 1.35;
}

.article-content p {
  margin: 10px 0;
}

.article-aside {
  display: grid;
  gap: 16px;
}

.aside-card {
  border: 1px solid var(--yellow-200);
  border-radius: var(--radius-md);
  padding: 18px;
  background: #fff;
}

.aside-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.aside-card p {
  color: var(--gray-600);
  margin-bottom: 14px;
}

.related-list {
  display: grid;
  gap: 10px;
}

.related-item {
  border: 1px solid var(--yellow-200);
  border-radius: 10px;
  padding: 10px;
  display: block;
}

.related-item strong {
  display: block;
  font-size: 15px;
}

.related-item span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--gray-500);
}

.cta-band-sm {
  padding: 56px 0;
}

@media (max-width: 1120px) {
  .desktop-links,
  .desktop-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-grid,
  .how-grid,
  .rates-grid,
  .blog-grid,
  .feature-grid,
  .blog-grid-list,
  .trust-grid,
  .article-layout,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid,
  .footer-grid-simple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .section,
  .cta-band {
    padding: 64px 0;
  }

  .hero-grid {
    padding: 64px 0;
  }

  .hero-grid,
  .how-grid,
  .rates-grid,
  .blog-grid,
  .feature-grid,
  .blog-grid-list,
  .trust-grid,
  .article-layout,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid-simple {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-divider {
    display: none;
  }

  .step h3,
  .blog-body h3 {
    font-size: 26px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero {
    padding-top: 38px;
  }

  .hero-card,
  .article-content {
    padding: 18px;
  }
}
