:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --orange: #ff7a00;
  --pink: #ff3d6e;
  --gradient: linear-gradient(90deg, #ff7a00, #ff3d6e);
  --gray: #6f6f6f;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--white);
  font-family: 'Inter', sans-serif;
  color: var(--black);
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  gap: 12px;
  z-index: 10;
}
.logo {
  order: 1;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--black);
}
.logo .tag-i {
  display: inline-block;
  width: 14px;
  height: 20px;
  background: var(--gradient);
  border-radius: 3px 3px 8px 8px;
  position: relative;
  margin: 0 2px;
  top: 2px;
}
.logo .tag-i::before {
  content: '';
  position: absolute;
  top: -9px; left: 3px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--black);
}
.logo .tag-i::after {
  content: '';
  position: absolute;
  top: 5px; left: 4px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--white);
}
.main-nav { order: 2; }
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}
.main-nav a {
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--pink); }
.social-links {
  order: 3;
  display: flex;
  gap: 14px;
}
.social-links a {
  color: var(--black);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.social-links a:hover { color: var(--pink); }

@media (max-width: 900px) {
  .social-links { order: 2; }
  .main-nav {
    order: 3;
    flex-basis: 100%;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.06);
  }
}

/* INTRO / HOME */
.intro { padding: 40px 40px 8px; }
.intro h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 28px;
}
.intro p { color: var(--gray); font-size: 14px; margin-top: 6px; }

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 24px 40px 60px;
}
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); padding: 20px; }
  .site-header { padding: 14px 20px; }
  .main-nav ul { gap: 16px; }
  .intro { padding: 24px 20px 4px; }
}

.card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px 18px 18px 18px;
  clip-path: polygon(28px 0, 100% 0, 100% 100%, 0 100%, 0 28px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.15s ease;
  text-decoration: none;
  display: block;
}
.card:hover { transform: translateY(-4px); }
.card .hole {
  position: absolute; top: 9px; left: 9px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--black); z-index: 2;
}
.card .badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gradient); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 4px 9px; border-radius: 20px; z-index: 2;
}
.card .img {
  width: 100%; height: 160px; background: #f0f0f0;
  display: flex; align-items: center; justify-content: center;
  color: #c4c4c4; font-size: 12px; object-fit: cover;
}
.card .info { padding: 16px 16px 18px; }
.card .category {
  color: var(--pink); font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 8px;
}
.card .info h3 {
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700;
  line-height: 1.35; margin-bottom: 10px; height: 58px; overflow: hidden; color: var(--black);
}
.card .compared { color: var(--gray); font-size: 12px; margin-bottom: 12px; }
.card .compared strong { color: var(--black); }
.card .cta {
  display: inline-block; background: var(--black); color: #fff;
  font-size: 12px; font-weight: 600; padding: 9px 14px; border-radius: 8px;
  text-decoration: none; width: 100%; text-align: center;
}

/* ARTICLE (single post) */
article.post { max-width: 760px; margin: 0 auto; padding: 40px 24px 80px; }
.breadcrumb { color: var(--gray); font-size: 12px; margin-bottom: 16px; }
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb .current { color: var(--pink); font-weight: 600; }
.category-tag {
  display: inline-block; background: var(--gradient); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px; margin-bottom: 16px;
}
article.post h1 {
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 32px;
  line-height: 1.2; margin-bottom: 14px;
}
.post-meta { color: var(--gray); font-size: 13px; margin-bottom: 28px; display: flex; gap: 16px; flex-wrap: wrap; }
.post-meta strong { color: var(--black); }
.cover {
  width: 100%; height: 320px; background: #eee; border-radius: 4px 24px 24px 24px;
  clip-path: polygon(36px 0, 100% 0, 100% 100%, 0 100%, 0 36px);
  position: relative; overflow: hidden; margin-bottom: 32px; object-fit: cover;
}
.cover .hole {
  position: absolute; top: 12px; left: 12px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--white); border: 2px solid var(--black);
}
.intro-text { font-size: 16px; line-height: 1.7; color: #333; margin-bottom: 36px; }
.intro-text h2 {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 20px;
  margin: 32px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--black);
}
.intro-text h3 {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 17px;
  margin: 24px 0 10px;
}
.intro-text p { margin-bottom: 14px; }
.intro-text strong { color: var(--black); }
.intro-text ul, .intro-text ol {
  margin: 0 0 16px 20px;
}
.intro-text li { margin-bottom: 6px; }
.intro-text a { color: var(--pink); text-decoration: underline; }
.product-block div ul, .product-block div ol { margin: 0 0 12px 20px; }
.product-block div strong { color: var(--black); }
article.post h2 {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 20px;
  margin: 40px 0 20px; padding-bottom: 10px; border-bottom: 2px solid var(--black);
}

/* PRODUCT WRITE-UP */
.product-block { margin-bottom: 32px; }
.product-block-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.product-block-head .num {
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 15px;
  color: #fff; background: var(--black); width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.product-block.winner .num { background: var(--gradient); }
.product-block-head h3 { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700; }
.product-block-head .winner-badge {
  background: var(--gradient); color: #fff; font-size: 10px; font-weight: 700;
  padding: 3px 9px; border-radius: 10px; margin-left: 4px;
}
.product-block img.product-thumb {
  width: 100%; max-height: 280px; object-fit: cover; border-radius: 4px 16px 16px 16px;
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
  margin-bottom: 14px;
}
.product-block p { font-size: 15px; line-height: 1.7; color: #333; margin-bottom: 10px; }
.product-block .cta-small {
  display: inline-block; background: var(--black); color: #fff; font-size: 12px; font-weight: 600;
  padding: 9px 16px; border-radius: 8px; text-decoration: none; margin-top: 4px;
}

.verdict { background: var(--black); color: #fff; border-radius: 16px; padding: 28px; margin-top: 40px; }
.verdict h2 { color: #fff; border-bottom: 2px solid var(--pink); margin-top: 0; }
.verdict p { font-size: 14px; line-height: 1.7; color: #ddd; margin-bottom: 20px; }
.verdict .cta-final {
  display: inline-block; background: var(--gradient); color: #fff; font-weight: 700;
  font-size: 14px; padding: 14px 28px; border-radius: 10px; text-decoration: none;
}

/* EM BREVE */
.coming-soon {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  border: 1px dashed rgba(0,0,0,0.15);
  border-radius: 4px 24px 24px 24px;
  clip-path: polygon(28px 0, 100% 0, 100% 100%, 0 100%, 0 28px);
  position: relative;
}
.coming-soon .hole {
  position: absolute; top: 12px; left: 12px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--black);
}
.coming-soon .cs-tag {
  display: inline-block; background: var(--gradient); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 14px;
}
.coming-soon h3 {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 8px;
}
.coming-soon p { color: var(--gray); font-size: 14px; }

/* FOOTER */
.site-footer { background: var(--black); color: #fff; padding: 40px; margin-top: 20px; }
.footer-inner { max-width: 900px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 16px; color: #fff; }
.footer-nav ul { display: flex; gap: 24px; list-style: none; }
.footer-nav a { color: #cfcfcf; text-decoration: none; font-size: 13px; }
.footer-nav a:hover { color: var(--orange); }
.footer-copy { color: #777; font-size: 11px; text-align: center; margin-top: 24px; }

@media (max-width: 700px) {
  article.post { padding: 24px 16px 60px; }
  article.post h1 { font-size: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
