/* 
Theme Name: Yomi S Landing Page
Template: page-yomi-lp
*/

/* ========================================
   RESET & BASE STYLES
======================================== */

@font-face {
  font-family: "Prometo";
  src: url("library/fonts/Prometo.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Prometo";
  src: url("library/fonts/Prometo-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand Colors */
  --orange-primary: #ff8c42;
  --orange-light: #fff5ef;
  --teal-dark: #0a4b5c;
  --teal-medium: #1a6b7d;
  --navy-dark: #002b3d;
  --navy-blue: #003d5c;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --black: #000000;

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.5;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--gray-900);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.main-container {
  width: 100%;
  margin: 0 auto;
}

/* .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
} */

@media screen and (max-width: 992px) {
  .main-container .container {
    max-width: none;
    width: calc(100% - 40px);
    padding: 0;
  }
}

@media (max-width: 480px) {
  .main-container .container {
    max-width: none;
    width: calc(100% - 40px);
    padding: 0;
  }
}

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

/* ========================================
   TYPOGRAPHY
======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--spacing-md);
}

/* ========================================
   BUTTONS
======================================== */

button,
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--orange-primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #e67a2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--gray-900);
  border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
  border-color: var(--orange-primary);
  color: var(--orange-primary);
}

.btn-cta {
  background-color: var(--orange-primary);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-submit {
  background-color: var(--orange-primary);
  color: var(--white);
  padding: 1rem 3rem;
  font-size: 1.125rem;
}

/* ========================================
   HEADER
======================================== */

.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--spacing-md) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
}

.logo {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: var(--spacing-lg);
}

.main-nav a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--orange-primary);
}

.header-actions {
  display: flex;
  gap: var(--spacing-sm);
}

/* ========================================
   HERO SECTION
======================================== */

.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  text-align: center;
  color: var(--white);
  h4 {
    color: var(--white);
    margin-top: 20px;
  }
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 0;
}

/* ========================================
   GLANCE SECTION
======================================== */

.glance-section {
  padding: var(--spacing-3xl) 0 0 0;
  background-color: var(--gray-50);
}

.section-title {
  text-align: center;
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-2xl) auto;
  color: var(--gray-600);
  font-size: 1.125rem;
  line-height: 1.6;
}

.product-showcase {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.product-showcase-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.product-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
}

.product-image-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .product-image-desktop {
    display: none;
  }

  .product-image-mobile {
    display: block;
  }
}

.mobile-tooltip-container {
  display: none;
  width: 100%;
  max-width: 325px;
  margin: -35px auto 0;
}

.product-hotspot {
  position: absolute;
}

.hotspot-trigger {
  width: 36px;
  height: 36px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.product-hotspot.active .hotspot-trigger {
  background-color: #f57e20 !important;
}

.hotspot-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.hotspot-label {
  position: absolute;
  left: 50px;
  top: 100%;
  transform: translateY(-50%);
  font-family: "Prometo", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  color: #414042;
  white-space: normal;
  pointer-events: none;
  z-index: 1;
  width: 200px;
  word-wrap: break-word;
}

.hotspot-label-highlight {
  color: #f57e20;
  font-weight: 500;
}

.hotspot-label-left {
  left: auto;
  right: 80px;
  text-align: right;
  max-width: 200px;
}

.hotspot-tooltip {
  position: absolute;
  left: 20px;
  top: 5px;
  background-color: var(--white);
  border-radius: 15px;
  padding: 20px;
  width: 325px;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 100;
  pointer-events: none;
  isolation: isolate;
  will-change: transform, opacity;
}

.hotspot-tooltip.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hotspot-tooltip-left {
  left: auto;
  right: 20px;
}

/* Hotspot 5 - position tooltip from bottom to prevent cutoff */
.product-hotspot[data-hotspot="5"] .hotspot-tooltip {
  top: auto;
  bottom: 20px;
}

/* Hotspot 5 - prevent left tooltip from going off left edge */
.product-hotspot[data-hotspot="5"] .hotspot-tooltip-left {
  right: auto;
  left: 20px;
}

/* Hotspot 4 - prevent left tooltip from going off left edge */
.product-hotspot[data-hotspot="4"] .hotspot-tooltip-left {
  right: auto;
  left: 20px;
}

/* Hotspot 2 - prevent left tooltip from going off left edge */
.product-hotspot[data-hotspot="2"] .hotspot-tooltip-left {
  right: auto;
  left: 20px;
}

.tooltip-title {
  margin-bottom: 15px;
  border-bottom: none;
}

.tooltip-title p {
  font-family: "Prometo", sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
  color: #f57e20;
  letter-spacing: -0.25px;
  margin: 0;
}

.tooltip-highlight {
  font-weight: 500;
  color: #f57e20;
}

.tooltip-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tooltip-feature-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.tooltip-feature-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tooltip-feature-icon svg {
  width: 28px;
  height: 28px;
}

.tooltip-feature-icon svg image {
  width: 26px;
  height: 26px;
}

.tooltip-feature-item p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #414042;
  letter-spacing: -0.16px;
  margin: 0;
  flex: 1 0 0;
}

/* ========================================
   FEATURES SECTION
======================================== */

.features-section {
  padding: 70px 40px;
  background-color: var(--white);
}

.features-grid {
  display: flex;
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  flex: 1 0 0;
  background-color: rgba(245, 126, 32, 0.1);
  padding: 40px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.feature-icon-img {
  width: 80px;
  height: 80px;
  display: block;
}

.feature-title {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: #f57e20;
  letter-spacing: -0.45px;
  margin: 0;
  margin-top: 0;
}

.feature-list {
  list-style: disc;
  padding: 0;
  margin: 0;
  margin-left: 24px;
}

.feature-list li {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #414042;
  letter-spacing: -0.16px;
  margin-bottom: 12px;
  padding: 0;
  padding-left: 0;
  position: relative;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-list li::before {
  display: none;
}

/* ========================================
   BEST CARE SECTION
======================================== */

.best-care-section {
  padding: 25px 50px;
  background-color: var(--white);
}

.best-care-content {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

.best-care-left {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.best-care-title {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  color: #414042;
  letter-spacing: -0.4px;
  margin-bottom: 25px;
  padding-bottom: 25px;
}

.best-care-benefit-item {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.benefit-icon-wrapper {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 203.226px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon-img {
  width: 56px;
  height: 56px;
  display: block;
}

.benefit-content {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.benefit-title {
  font-family: "Prometo", sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  color: #f57e20;
  letter-spacing: -0.25px;
  margin-bottom: 0;
}

.benefit-description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #414042;
  letter-spacing: -0.16px;
  margin-top: 0;
  margin-bottom: 0;
}

.best-care-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: 903.33px;
  background-color: var(--white);
  border-radius: 8px;
  overflow: visible;
  padding-top: 35px;
  gap: 10px;
}

.comparison-column {
  display: flex;
  flex-direction: column;
  background-color: #f5f5f5;
  padding: 20px 15px;
  padding-top: 48px;
  border-right: 1px solid #e0e0e0;
  position: relative;
  overflow: visible;
  border-radius: 24px;
}

.comparison-column:last-child {
  border-right: none;
}

.comparison-column-yomi {
  background-color: #fff5ef;
}

.comparison-header {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.comparison-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.comparison-icon-blue {
  background-color: transparent;
}

.comparison-icon-orange {
  background-color: transparent;
}

.comparison-icon svg,
.comparison-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
}

.comparison-title {
  font-family: "Prometo", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #6d6e71;
  text-align: center;
  margin: 0 0 8px 0;
}

.comparison-title-yomi {
  color: #f57e20;
}

.comparison-tagline {
  font-size: 14px;
  color: #414042;
  text-align: center;
  margin: 0 0 15px 0;
  font-weight: 400;
}

.comparison-pros {
  background-color: #e3f2fd;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 15px;
  min-height: 120px;
}

.comparison-pros-yomi {
  background-color: #fff5ef;
}

.pros-list,
.cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-list li,
.cons-list li {
  font-size: 12px;
  line-height: 1.6;
  color: #414042;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pros-list li:last-child,
.cons-list li:last-child {
  margin-bottom: 0;
}

.checkmark {
  color: #4caf50;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkmark-yomi {
  color: #4caf50;
}

.x-mark {
  color: #f44336;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-cons {
  padding: 0;
}

.cons-list li {
  font-size: 12px;
  line-height: 1.6;
  color: #414042;
  margin-bottom: 8px;
  padding-left: 0;
}

.cons-list li:last-child {
  margin-bottom: 0;
}

/* ========================================
   ACCURACY SECTION
======================================== */

.accuracy-section {
  padding: 25px 40px 70px;
  background-color: var(--white);
}

.accuracy-content {
  background-color: #003344;
  border-radius: 15px;
  padding: 50px 60px;
  max-width: 962px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
}

.accuracy-title {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  text-align: center;
  letter-spacing: -0.4px;
  margin: 0;
  width: 100%;
}

.accuracy-comparisons {
  display: flex;
  gap: 30px;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.accuracy-comparison-item {
  flex: 1 0 0;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.accuracy-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.accuracy-icon-img {
  width: 31.613px;
  height: 31.613px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accuracy-comparison-text {
  font-family: "Prometo", sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.25px;
  margin: 0;
  flex: 1 0 0;
}

.accuracy-highlight {
  font-family: "Prometo", sans-serif;
  font-weight: 500;
  color: #f57e20;
}

.btn-accuracy {
  background-color: #f57e20;
  color: var(--white);
  padding: 15px 25px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: -0.18px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  min-width: 200px;
  max-height: 54px;
  transition: background-color 0.3s ease;
}

.btn-accuracy:hover {
  background-color: #e67a2f;
}

/* ========================================
   SIGNUP FORM SECTION
======================================== */

.signup-section {
  padding: var(--spacing-3xl) 0;
  background-color: var(--white);
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
  background-color: var(--gray-900);
  color: var(--white);
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-logo {
  height: 40px;
  margin-bottom: var(--spacing-md);
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
  color: var(--white);
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-column a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--orange-primary);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--gray-700);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.social-links a:hover {
  background-color: var(--orange-primary);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: var(--spacing-lg);
  text-align: center;
  color: var(--gray-400);
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--gray-400);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--orange-primary);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1480px) {
  .best-care-content {
    flex-direction: column;
    gap: 40px;
  }

  .best-care-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .product-showcase {
    padding: var(--spacing-xl) 0;
  }

  .product-showcase-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-image-wrapper {
    position: relative;
    width: 100%;
  }

  .product-image {
    position: relative;
    width: 100%;
    max-width: 100%;
  }

  /* Hide desktop tooltips on mobile */
  .hotspot-tooltip {
    display: none;
  }

  /* Show mobile tooltip container */
  .mobile-tooltip-container {
    display: block;
  }

  .mobile-tooltip-container .hotspot-tooltip {
    display: block;
    position: static;
    width: 100%;
    max-width: 325px;
    margin: 0;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.15);
  }

  .mobile-tooltip-container .hotspot-tooltip.active {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .tooltip-title {
    margin-bottom: 0;
    padding-bottom: 25px;
  }

  .tooltip-title p {
    font-family: "Prometo", sans-serif;
    font-size: 18px;
    text-align: left;
  }

  .tooltip-feature-item p {
    font-size: 14px;
  }

  .hotspot-trigger {
    width: 36px;
    height: 36px;
  }

  .hotspot-icon {
    width: 20px;
    height: 20px;
  }

  .hotspot-label {
    display: none;
  }

  .features-section {
    padding: 50px 30px;
  }

  .features-grid {
    flex-direction: column;
    gap: 20px;
  }

  .feature-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .accuracy-section {
    padding: 25px 30px 50px;
  }

  .accuracy-content {
    padding: 40px 40px;
  }

  .accuracy-title {
    font-size: 32px;
  }

  .accuracy-comparisons {
    flex-direction: column;
    gap: 20px;
  }

  .accuracy-comparison-item {
    flex-direction: column;
    text-align: center;
  }

  .best-care-content {
    flex-direction: column;
    gap: 40px;
  }

  .best-care-right {
    width: 100%;
  }

  .comparison-chart {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 40px;
  }

  .comparison-column {
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 40px;
  }

  .comparison-column:nth-child(2n) {
    border-right: none;
  }

  .comparison-column:nth-child(n + 3) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
  }

  .main-nav {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .features-section {
    padding: 40px 20px;
  }

  .feature-card {
    padding: 40px 30px;
  }

  .feature-title {
    font-size: 32px;
  }

  .feature-icon-wrapper,
  .feature-icon-img {
    width: 80px;
    height: 80px;
  }

  .features-grid,
  .care-features-grid {
    grid-template-columns: 1fr;
  }

  .accuracy-stats {
    flex-direction: column;
    gap: var(--spacing-xl);
  }

  .accuracy-section {
    padding: 25px 20px 40px;
  }

  .accuracy-content {
    padding: 35px 30px;
  }

  .accuracy-title {
    font-size: 28px;
  }

  .accuracy-comparison-text {
    font-size: 20px;
  }

  .btn-accuracy {
    font-size: 16px;
    padding: 12px 20px;
  }

  .best-care-section {
    padding: 25px var(--spacing-lg);
  }

  .best-care-title {
    font-size: 32px;
  }

  .benefit-title {
    font-size: 20px;
  }

  .benefit-description {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-lg: 1rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  /* .container {
    padding: 0 var(--spacing-md);
  } */

  .best-care-section {
    padding: 20px 0;
  }

  .best-care-content {
    gap: 30px;
  }

  .best-care-title {
    font-size: 28px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .benefit-icon-wrapper,
  .benefit-icon-img {
    width: 48px;
    height: 48px;
  }

  .benefit-title {
    font-size: 18px;
  }

  .benefit-description {
    font-size: 14px;
    line-height: 20px;
  }

  .product-showcase {
    padding: var(--spacing-lg) 0;
  }

  .hotspot-trigger {
    width: 36px;
    height: 36px;
  }

  .hotspot-icon {
    width: 28px;
    height: 28px;
  }

  .hotspot-tooltip {
    width: 250px;
    padding: 15px;
    left: 15px;
    top: 15px;
  }

  .hotspot-tooltip-left {
    right: 15px;
  }

  .tooltip-title {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .tooltip-title p {
    font-family: "Prometo", sans-serif;
    font-size: 18px;
  }

  .tooltip-feature-item {
    gap: 8px;
  }

  .tooltip-feature-icon {
    width: 24px;
    height: 24px;
  }

  .tooltip-feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .tooltip-feature-item p {
    font-size: 13px;
    line-height: 20px;
  }

  .features-section {
    padding: 30px 0;
  }

  .feature-card {
    padding: 30px 20px;
    gap: 25px;
  }

  .feature-title {
    font-size: 28px;
  }

  .feature-icon-wrapper,
  .feature-icon-img {
    width: 80px;
    height: 80px;
  }

  /* .feature-list li {
    font-size: 14px;
    line-height: 20px;
  } */

  .accuracy-section {
    padding: 20px 0 30px;
  }

  .accuracy-content {
    padding: 30px 20px;
  }

  .accuracy-title {
    font-size: 24px;
  }

  .accuracy-comparison-text {
    font-size: 18px;
  }

  .accuracy-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .accuracy-icon-img {
    width: 28px;
    height: 28px;
  }

  .btn-accuracy {
    font-size: 14px;
    padding: 10px 18px;
    min-width: 180px;
  }

  .comparison-chart {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .comparison-column {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 40px;
  }

  .comparison-column:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

  .comparison-column:nth-child(2n) {
    border-right: none;
  }

  .comparison-pros {
    min-height: auto;
  }
}