/* === International Automotive Association - Custom Theme === */

/* Tailwind v4 Custom Theme - Custom color palette */
@import "tailwindcss";

@theme {
  --font-sans: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Primary - Deep Navy Blue */
  --color-primary-400: #01255b;
  --color-primary-300: #002e74;
  --color-primary-200: #143e7f;
  --color-primary-100: #0066c7;
  --color-primary-50: #e0e6ee;
  --color-primary-25: #ebf3fb;
  --color-primary-0: #f2f7fc;

  /* Secondary - Green */
  --color-secondary-300: #015a3d;
  --color-secondary-200: #00e599;
  --color-secondary-100: #9fefa4;
  --color-secondary-50: #59eebd;
  --color-secondary-25: #a6f6db;
  --color-secondary-0: #d9fbf0;

  --color-background: #ffffff;
  --color-foreground: #111827;
}

/* === Custom Utility Classes === */

/* Text styles */
.text-body-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-body-sm-medium {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}
.text-body-md {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-body-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

/* Container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) { .container { max-width: 640px; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }
@media (min-width: 1536px) { .container { max-width: 1400px; } }

/* Margins */
.px-margin {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .px-margin {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1280px) {
  .px-auto-xl {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Hero background */
.ida-hero__bg {
  background: linear-gradient(180deg, #01255b 0%, #002e74 100%);
}

/* Hero globe */
.ida-hero__globe {
  opacity: 0.08;
}
.ida-hero__globe-img {
  width: 800px;
  height: auto;
}

/* Hero layout grid */
.ida-hero-layout-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .ida-hero-layout-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Features cards */
.ida-features-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
}
.ida-features-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}
.ida-features-card__desc {
  font-size: 0.938rem;
  color: #6b7280;
  line-height: 1.5;
}

/* Pricing cards */
.pricing-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 2px solid #e5e7eb;
  text-align: left;
  transition: all 0.3s ease;
}
.pricing-card.featured {
  border-color: #0066c7;
  background: linear-gradient(180deg, #f2f7fc 0%, #ffffff 100%);
}
.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111827;
}
.pricing-card .price .original {
  font-size: 1.125rem;
  color: #9ca3af;
  text-decoration: line-through;
  margin-right: 0.5rem;
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer.open {
  max-height: 500px;
}
.faq-answer-content {
  padding-bottom: 1.25rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Country grid */
.country-card-link:hover img {
  transform: scale(1.05);
}
.country-card-link img {
  transition: transform 0.2s ease;
}

.country-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.2s ease;
}
.country-card:hover {
  border-color: #0066c7;
  box-shadow: 0 4px 12px rgba(0, 102, 199, 0.1);
}

/* Review cards */
.review-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
}
.review-stars {
  color: #00b67a;
}

/* Blog cards */
.blog-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}
.blog-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Blog article body */
.prose-body,
.prose-content .prose-body {
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.75;
}
.prose-body h2,
.prose-content > article > h2,
.prose-body > h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}
.prose-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 2rem 0 0.75rem;
  line-height: 1.35;
}
.prose-body h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  margin: 1.5rem 0 0.5rem;
}
.prose-body p {
  margin: 0 0 1.25rem;
  color: #374151;
  line-height: 1.75;
}
.prose-body a {
  color: #0066c7;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose-body a:hover {
  color: #01255b;
}
.prose-body ul,
.prose-body ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}
.prose-body ul { list-style: disc; }
.prose-body ol { list-style: decimal; }
.prose-body li {
  margin-bottom: 0.5rem;
  color: #374151;
}
.prose-body strong { color: #111827; font-weight: 600; }
.prose-body blockquote {
  border-left: 4px solid #0066c7;
  background: #f2f7fc;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
  color: #4b5563;
  font-style: italic;
}
.prose-body figure {
  margin: 1.5rem 0;
}
.prose-body figure img {
  border-radius: 1rem;
  width: 100%;
}
.prose-body figcaption {
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.prose-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.prose-body th,
.prose-body td {
  border: 1px solid #e5e7eb;
  padding: 0.75rem 1rem;
  text-align: left;
}
.prose-body th {
  background: #01255b;
  color: white;
  font-weight: 600;
}
.prose-body tr:nth-child(even) td { background: #f9fafb; }

/* Navigation */
.nav-bar-inner {
  max-width: 1400px;
}

/* Trustpilot widget */
.trustpilot-widget iframe {
  background: transparent !important;
}
.trustpilot-widget > a {
  visibility: hidden;
}

/* Mobile menu */
.mobile-menu {
  background: #01255b;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, #01255b 0%, #002e74 100%);
  border-radius: 2rem;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Button styles */
.btn-primary {
  background-color: #0066c7;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.938rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover {
  background-color: #0052a3;
}
.btn-primary-lg {
  padding: 1rem 2rem;
  font-size: 1.063rem;
}
.btn-secondary {
  background-color: #00e599;
  color: #015a3d;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.938rem;
  transition: all 0.2s ease;
}
.btn-secondary:hover {
  background-color: #00cc89;
}
.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.938rem;
  transition: all 0.2s ease;
  background: transparent;
}
.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Check icon lists */
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.check-list li::before {
  content: "✓";
  color: #00e599;
  font-weight: 700;
  flex-shrink: 0;
}

/* Home page pricing cards (matches target site style) */
.hp-pricing-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid #e5e7eb;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.hp-pricing-card:hover {
  box-shadow: 0 8px 24px rgba(1, 37, 91, 0.06);
}
.hp-pricing-card-featured {
  border: 2px solid #0066c7;
  background: #f2f7fc;
  padding-top: 2.25rem;
}
.hp-pricing-card-compare {
  text-align: center;
  align-items: center;
  justify-content: center;
}

.hp-most-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #01255b;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hp-pricing-image {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.hp-pricing-image-featured {
  height: 100px;
}

.hp-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  line-height: 1.45;
}
.hp-check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 999px;
  background: #00c47a;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M4 8.5l2.5 2.5L12 5.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.hp-plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  margin-top: auto;
}
.hp-plan-btn-primary {
  background: #0066c7;
  color: #ffffff;
}
.hp-plan-btn-primary:hover {
  background: #01255b;
}
.hp-plan-btn-outline {
  background: transparent;
  color: #0066c7;
  border: 1.5px solid #0066c7;
}
.hp-plan-btn-outline:hover {
  background: #ebf3fb;
}

/* Flag icons */
.flag {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

/* Section padding */
.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 1024px) {
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/* Tighter top spacing for FEATURES so the gap to the module above reads more compact */
#features.section-padding {
  padding-top: 1rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  #features.section-padding {
    padding-top: 1.25rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 1024px) {
  #features.section-padding {
    padding-top: 1.5rem;
    padding-bottom: 6rem;
  }
}

/* Same tightened top spacing applied to PRICING and FAQ for a consistent, compact page */
#pricing.section-padding,
#faq.section-padding {
  padding-top: 1rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  #pricing.section-padding,
  #faq.section-padding {
    padding-top: 1.25rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 1024px) {
  #pricing.section-padding,
  #faq.section-padding {
    padding-top: 1.5rem;
    padding-bottom: 6rem;
  }
}

/* How it works steps */
.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #f2f7fc;
  color: #0066c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Divider */
.section-divider {
  height: 1px;
  background: #e5e7eb;
  width: 100%;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* === Hero Application Card (Start your application) === */
/* Card container uses Tailwind classes directly: rounded-[2rem] border border-primary-200 bg-primary-300 p-8 */

.ida-plan-radio {
  width: 1.167rem;
  height: 1.167rem;
  border-radius: 50%;
  background: #002e74;
  box-shadow: 0px 1.167px 2.333px 0px rgba(164,172,185,0.4), 0px 0px 0px 1.167px #dfe1e7;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.ida-plan-radio.checked {
  background: #00e599;
  box-shadow: none;
}
.ida-plan-radio.checked::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background: #ffffff;
}

.ida-plan-card {
  background: #002e74;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 1rem;
  transition: all 0.2s ease;
  position: relative;
  overflow: visible;
}
.ida-plan-card:hover {
  background: #143e7f;
}
.ida-plan-card.selected {
  background: #143e7f;
  border-color: #0066c7;
}
.ida-plan-card .recommended-badge {
  position: absolute;
  top: -11px;
  right: 1rem;
  background: #a6f6db;
  color: #015a3d;
  font-size: 9.91px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2.66px 12.743px;
  border-radius: 999px;
  z-index: 5;
  white-space: nowrap;
}

/* === Hero product bounce animations === */
.hero-products-illustration {
  overflow: visible;
}
.hero-products-illustration .hero-product-layer {
  transform-origin: bottom;
}
.hero-products-illustration #hero-product-booklet {
  transform-origin: 40% bottom;
}
.hero-products-illustration #hero-product-phone {
  transform-origin: 60% bottom;
}
.hero-limited-phone {
  transform-origin: bottom;
}

.ida-plan-card[data-hero-bounce="global"].hero-products-bouncing #hero-product-booklet,
.ida-plan-card[data-hero-bounce="global"].hero-products-bouncing #hero-product-phone {
  isolation: isolate;
}
.ida-plan-card[data-hero-bounce="global"].hero-products-bouncing #hero-product-paper {
  animation: 0.56s ease-in-out both hero-product-lift-paper;
}
.ida-plan-card[data-hero-bounce="global"].hero-products-bouncing #hero-product-booklet {
  animation: 0.56s ease-in-out 0.1s both hero-product-lift-booklet;
}
.ida-plan-card[data-hero-bounce="global"].hero-products-bouncing #hero-product-card {
  animation: 0.56s ease-in-out 0.2s both hero-product-lift-card;
}
.ida-plan-card[data-hero-bounce="global"].hero-products-bouncing #hero-product-phone {
  animation: 0.56s ease-in-out 0.3s both hero-product-lift-phone;
}
.ida-plan-card[data-hero-bounce="limited"].hero-products-bouncing .hero-limited-phone {
  isolation: isolate;
  animation: 0.56s ease-in-out both hero-product-lift-limited-phone;
}

@keyframes hero-product-lift-paper {
  0% { transform: translate(0) rotate(0); }
  50% { transform: translate(-5px, -9px) rotate(-3deg); }
  100% { transform: translate(0) rotate(0); }
}
@keyframes hero-product-lift-booklet {
  0% { transform: translate(0) rotate(0); }
  50% { transform: translate(-5px, -13px) rotate(-3deg); }
  100% { transform: translate(0) rotate(0); }
}
@keyframes hero-product-lift-card {
  0% { transform: translate(0) rotate(0); }
  50% { transform: translate(5px, -17px) rotate(3deg); }
  100% { transform: translate(0) rotate(0); }
}
@keyframes hero-product-lift-phone {
  0% { transform: translate(0) rotate(0); }
  50% { transform: translate(4px, -14px) rotate(6deg); }
  100% { transform: translate(0) rotate(0); }
}
@keyframes hero-product-lift-limited-phone {
  0%, 100% { transform: translate(0) rotate(0); }
  33% { transform: translate(-2px) rotate(-4deg); }
  66% { transform: translate(2px) rotate(4deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-products-illustration .hero-product-layer,
  .hero-limited-phone {
    animation: none !important;
  }
}

/* === Logo Carousel (inside hero) === */
.ida-logo-track {
  width: max-content;
  animation: idaLogoScroll 25s linear infinite;
}
.ida-logo-track:hover {
  animation-play-state: paused;
}
@keyframes idaLogoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ida-logo-track {
    animation: none !important;
  }
}

/* === Risk-free pricing: product switch + term cards === */
.hp-product-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #f4f6fb;
  border-radius: 20px;
  padding: 10px;
  position: relative;
}
.hp-product-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 12px;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #6b7280;
}
.hp-product-tab:hover {
  background: rgba(255, 255, 255, 0.6);
}
.hp-product-tab.is-active {
  background: #ffffff;
  border-color: #1f6feb;
  box-shadow: 0 6px 20px rgba(31, 111, 235, 0.12);
  color: #0b1a3b;
}
.hp-product-tab img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.hp-product-tab-label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.hp-product-tab.is-active .hp-product-tab-label {
  color: #0b1a3b;
}

/* Term cards */
.hp-term-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px 24px 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hp-term-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border-color: #d1d5db;
}
.hp-term-card-featured {
  border: 2px solid #1f6feb;
  padding-top: 44px;
  box-shadow: 0 16px 40px rgba(31, 111, 235, 0.15);
  transform: translateY(-8px);
}
.hp-term-card-featured:hover {
  transform: translateY(-10px);
}
.hp-term-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1f6feb;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(31, 111, 235, 0.35);
}
.hp-term-card-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hp-term-title {
  font-size: 22px;
  font-weight: 700;
  color: #0b1a3b;
  letter-spacing: -0.01em;
}
.hp-term-expires {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}
.hp-save-badge {
  display: inline-block;
  align-self: center;
  background: #dcfce7;
  color: #047857;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 4px;
}
.hp-term-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin: 4px 0 18px;
}
.hp-term-price {
  font-size: 32px;
  font-weight: 800;
  color: #0b1a3b;
  letter-spacing: -0.02em;
  line-height: 1;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .hp-term-price { font-size: 30px; }
}
.hp-term-price-strike {
  font-size: 16px;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 500;
}
.hp-term-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.hp-term-btn-primary {
  background: #1f6feb;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(31, 111, 235, 0.3);
}
.hp-term-btn-primary:hover {
  background: #1a5fd2;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(31, 111, 235, 0.35);
}
.hp-term-btn-outline {
  background: #ffffff;
  color: #0b1a3b;
  border: 1.5px solid #d1d5db;
}
.hp-term-btn-outline:hover {
  border-color: #1f6feb;
  color: #1f6feb;
}

/* Trustpilot star row */
.hp-trust-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.hp-star-cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #00b67a;
  border-radius: 3px;
}
.hp-star-cell svg {
  width: 14px;
  height: 14px;
}

/* Responsive tweaks for term-card grid */
@media (max-width: 768px) {
  .hp-term-card-featured {
    transform: none;
  }
  .hp-term-card-featured:hover {
    transform: translateY(-2px);
  }
}

/* === What's included comparison table === */
.hp-included-table {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}
.hp-included-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.6fr) 1fr 1fr;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid #eef1f5;
}
.hp-included-row:last-child {
  border-bottom: none;
}
.hp-included-head {
  padding-top: 22px;
  padding-bottom: 22px;
  background: #ffffff;
}
.hp-included-head .hp-included-cell {
  font-weight: 700;
  color: #0b1a3b;
  font-size: 15px;
}
.hp-included-cell {
  color: #374151;
  font-size: 15px;
  text-align: center;
}
.hp-included-label {
  text-align: left;
  color: #0b1a3b;
  font-weight: 500;
}
.hp-included-col {
  color: #0b1a3b;
}
.hp-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #eef2ff;
  color: #1f6feb;
}
.hp-mark svg {
  width: 16px;
  height: 16px;
}
.hp-mark-no {
  background: #f3f4f6;
  color: #9ca3af;
}

/* Info note below the table */
.hp-included-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #eef2f7;
  border-radius: 16px;
  padding: 18px 22px;
}
.hp-included-note-icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #22c55e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.35);
}
.hp-included-note-icon svg {
  width: 16px;
  height: 16px;
}
.hp-included-note-text {
  color: #1f2937;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
.hp-included-note-link {
  color: #1f6feb;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.hp-included-note-link:hover {
  color: #1a5fd2;
}

@media (max-width: 640px) {
  .hp-included-row {
    grid-template-columns: minmax(140px, 1.4fr) 1fr 1fr;
    padding: 14px 16px;
  }
  .hp-included-cell,
  .hp-included-label,
  .hp-included-col {
    font-size: 13px;
  }
  .hp-included-note {
    padding: 14px 16px;
  }
  .hp-included-note-text {
    font-size: 14px;
  }
}

/* Hide the IAA Baidu Translate container visually but keep DOM (the script
   reads from it; we just don't want it on screen). */
.iaa-gt-hidden { position: fixed !important; left: -9999px !important; top: 0 !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
