body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f3f4f6;
  color: #111;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px;
}

.hero {
  background: linear-gradient(to bottom, #ffffff, #f8f9fb);
  border-bottom: 1px solid #e3e5e8;
}

.kicker {
  display: inline-block;
  padding: 7px 13px;
  border: 1px solid #d8dbe0;
  border-radius: 999px;
  font-size: 13px;
  background: #fff;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.2px;
}

h1 {
  font-size: 44px;
  line-height: 1.15;
  margin: 18px 0 14px;
  letter-spacing: -0.6px;
}

h2 {
  margin: 0 0 12px 0;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

h3 {
  margin: 0 0 12px 0;
  font-size: 22px;
  line-height: 1.3;
}

.intro {
  font-size: 19px;
  color: #4f5661;
  max-width: 860px;
}

.notice {
  background: #fffdf7;
  border: 1px solid #ece3c9;
  border-radius: 18px;
  padding: 15px 16px;
  color: #5f5a47;
  margin-top: 22px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.section {
  background: #ffffff;
  border: 1px solid #e3e5e8;
  border-radius: 28px;
  padding: 28px;
  margin-top: 30px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.section p:last-child {
  margin-bottom: 0;
}

.topbar {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #e3e5e8;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.logo {
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  color: #111;
  letter-spacing: -0.2px;
}

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

.nav a,
.dropbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  text-decoration: none;
  color: #444;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.dropbtn:hover {
  background: #f3f5f7;
  color: #111;
}

.dropdown {
  position: relative;
}

.dropbtn {
  cursor: pointer;
  user-select: none;
  gap: 8px;
}

.dropbtn::after {
  content: "▾";
  font-size: 12px;
  color: #6b7280;
  transition: transform 0.22s ease, color 0.22s ease;
}

.dropdown:hover .dropbtn::after,
.dropdown:focus-within .dropbtn::after {
  transform: rotate(180deg);
  color: #111;
}

.dropdown-content {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transform-origin: top right;
  transition:
    opacity 0.2s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-content a {
  display: flex;
  align-items: center;
  padding: 11px 12px;
  border-radius: 12px;
  color: #2f3742;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.dropdown-content a:hover {
  background: #f5f7f9;
  color: #111;
  transform: translateX(2px);
}

.dropdown-content a + a {
  margin-top: 4px;
}

@media (max-width: 700px) {
  .topbar-inner {
    padding: 12px 16px;
  }

  .logo {
    font-size: 17px;
  }

  .nav > a,
  .dropbtn {
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }

  .dropdown-content {
    right: 0;
    min-width: 190px;
  }
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  border: 1px solid #e2e5e9;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.compare-table th,
.compare-table td {
  border: 1px solid #e2e5e9;
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  background: #f7f8fa;
  font-weight: 700;
}

.top-picks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
  margin-top: 18px;
  align-items: stretch;
}

.card {
  background: linear-gradient(to bottom, #ffffff, #fcfcfd);
  border: 1px solid #e1e4e8;
  border-radius: 26px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: #cfd5dc;
}

.badge {
  display: inline-block;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: #111;
  color: #fff;
  margin-bottom: 18px;
  align-self: flex-start;
  letter-spacing: 0.2px;
}

.image-box {
  height: 260px;
  border: 1px solid #e1e4e8;
  border-radius: 22px;
  background: linear-gradient(145deg, #f4f5f7, #eceef1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #444;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.35;
}

.summary {
  color: #444b55;
  margin-bottom: 14px;
}

.bestfor {
  color: #555d68;
  margin-bottom: 18px;
}

.box {
  border: 1px solid #e6e8eb;
  border-radius: 18px;
  padding: 15px 16px;
  background: #fafbfc;
  margin-bottom: 14px;
}

.box h4 {
  margin: 0 0 10px 0;
  font-size: 17px;
}

.pros h4 {
  color: #1d6b3a;
}

.cons h4 {
  color: #9a1f1f;
}

.box ul {
  margin: 0;
  padding-left: 20px;
}

.box li + li {
  margin-top: 6px;
}

.card .button {
  margin-top: auto;
}

.button {
  display: inline-block;
  background: linear-gradient(to bottom, #ffb84d, #ff9900);
  color: #111;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 17px;
  border: 1px solid #e08a00;
  box-shadow: 0 8px 18px rgba(255, 153, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  align-self: flex-start;
}

.button:hover {
  background: linear-gradient(to bottom, #ffae36, #f08d00);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(255, 153, 0, 0.28);
}

.footer-links {
  margin-top: 44px;
  padding: 12px 0 44px;
  font-size: 14px;
  color: #555;
}

.footer-links a {
  color: #111;
  text-decoration: none;
  margin-right: 18px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.listlinks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.linkcard {
  background: #fff;
  border: 1px solid #e2e5e9;
  border-radius: 20px;
  padding: 18px;
  text-decoration: none;
  color: #111;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.linkcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  border-color: #d3d9e0;
}

@media (max-width: 700px) {
  .wrap {
    padding: 22px 16px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  .intro {
    font-size: 17px;
  }

  .section {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .card {
    padding: 20px;
    border-radius: 22px;
  }

  .image-box {
    height: 220px;
    font-size: 20px;
    border-radius: 18px;
  }

  .compare-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .footer-links a {
    display: inline-block;
    margin-bottom: 10px;
  }
}
