/* =======================HERO SLIDER ====================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  min-height: 600px;
  overflow: hidden;
  background: #eff2f6;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 41%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  z-index: 2;
  color: #fff;
}

.carousel-fade .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: block;
  z-index: 1;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
  position: relative;
  z-index: 2;
}

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

.hero-content {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 520px;
  color: #2c353b;
}

.hero-title {
  font-family: var(--font-toyota);
  font-size: 64px;
  line-height: 80px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-text {
  font-family: var(--font-toyota);
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-buy {
  text-decoration: none;
  font-family: var(--font-toyota);
  background: #00708d;
  color: #eeeff0;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 8px 20px;
  border: none;
}

.btn-buy:hover {
  background: #005d75;
  color: #fff;
}

.btn-know {
  background: #fff;
  text-decoration: none;
  font-family: var(--font-toyota);
  border: 1px solid #2c353b;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  padding: 8px 20px;
  color: #2c353b;
}

.btn-know:hover {
  background: #2c353b;
  color: #fff;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 42px;
    line-height: 50px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-content {
    left: 25px;
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 100%;
  }

  .carousel-item img {
    height: 500px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-text {
    font-size: 16px;
    line-height: 26px;
  }

  .hero-buttons {
    flex-direction: row;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    min-height: 100%;
  }

  .carousel-item img {
    height: 300px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    max-width: 100%;
  }

  .hero-title {
    font-size: 28px;
    line-height: 36px;
  }
}

.carousel-indicators {
  bottom: 25px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-indicators button {
  width: 24px;
  height: 6px;
  border-radius: 8px;
  background-color: white;
  border: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  width: 60px;
  background-color: #00708d;
  border-radius: 8px;
}

.btn-buy,
.btn-know {
  font-size: 12px;
}

/* =========================
SECTION : KINTO GLOBAL PRESENCE
========================= */

.kinto-global {
  position: relative;

  padding: 50px 0px 180px;

  background: #fffaf2;

  text-align: center;

  overflow: hidden;
}

.kinto-global h2 {
  font-family: "Inter", sans-serif;

  font-weight: 600;

  font-size: 45px;

  line-height: 80px;

  margin-bottom: 32px;

  color: #000;
}

.kinto-stats {
  display: flex;

  justify-content: center;

  gap: 20px;

  padding: 15px 05px;

  max-width: 675px;

  margin: auto;

  background: #fafafacc;

  border-radius: 32px;

  border: 1px solid #000;
}

.stat-box {
  flex: 1;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 0px;

  padding: 16px 24px;
}

.stat-number {
  font-family: "Inter", sans-serif;

  font-weight: 600;

  font-size: 60px;

  line-height: 1.3em;

  color: #00708d;
}

.stat-text {
  font-family: var(--font-toyota);
  font-weight: 400;

  font-size: 25px;

  line-height: 1.3em;

  color: #2c353b;
}

.flag-group {
  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 100%;

  text-align: center;
}

.flag-group img {
  max-width: 100%;

  height: auto;
}

@media (max-width: 992px) {
  .kinto-global h2 {
    font-size: 48px;

    line-height: 60px;
  }

  .stat-number {
    font-size: 60px;
  }

  .stat-text {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .kinto-stats {
    flex-direction: column;
    padding: 15px;
    gap: 10px;
  }

  .stat-box {
    padding: 0px 20px;
  }

  .stat-number {
    height: 60px;
    font-size: 50px;
  }

  .stat-text {
    font-size: 20px;

    line-height: 30px;
  }
}

@media (max-width: 480px) {
  .kinto-global {
    padding: 40px 20px 140px;
  }

  .kinto-global h2 {
    font-size: 32px;

    line-height: 40px;
  }

  .stat-number {
    font-size: 42px;
  }

  .stat-text {
    font-size: 18px;
  }
}

/* ========================= CAR LEASING SLIDER SECTION ========================= */

.car-lease-section {
  position: relative;
  background: #2c353b;
  border-radius: 80px;
  padding: 60px 0px;
  color: #fff;
  margin-top: -380px;
}

.car-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.car-header h2 {
  font-family: var(--font-toyota);
  font-size: 45px;
  font-weight: 600;
  line-height: 60px;
}

.explore-btn {
  font-family: var(--font-toyota);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 20px;
  border-radius: 50px;
  color: #00708d;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  border: 1px solid #00708d;
  background: #fff;
}

/* SLIDER */

.car-slider-wrapper {
  position: relative;
}

.car-slider-track {
  overflow: hidden;
}

.car-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.car-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  width: calc((100% - 48px) / 3);
  flex: 0 0 calc((100% - 48px) / 3);
  flex-shrink: 0;
  color: #000;
  box-sizing: border-box;
  overflow: hidden;
  /* important */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.car-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.car-card:hover .car-image img {
  transform: scale(1.15);
}

.car-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.car-info h3 {
  font-family: var(--font-toyota);
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.car-info h3 img {
  width: 28px;
}

.price {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  margin: 10px 0;
  text-align: start;
}

.price span {
  color: #00708d;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3em;
}

.fuel {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.fuel span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

.fuel img {
  width: 55px;
}

.lease-btn {
  font-family: var(--font-toyota);
  text-decoration: none;
  display: block;
  background: #00708d;
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 100px;
  font-weight: 600;
  transition: background 0.3s;
}

.lease-btn:hover {
  background: #005a73;
  color: #fff;
}

/* ARROWS */

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #000000;
  border: 1px solid #000;
  font-size: 32px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.3s, opacity 0.3s;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.35);
}

.slider-arrow.disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

#prevSlide {
  right: auto;
  left: -90px;
}

#nextSlide {
  right: -90px;
  left: auto;
}

@media (max-width: 992px) {
  .car-header h2 {
    font-size: 36px;
  }

  .car-card {
    min-width: calc((100% - 24px) / 2);
  }

  #prevSlide {
    left: -10px;
  }

  #nextSlide {
    right: -10px;
  }
}

@media (max-width: 600px) {
  .car-lease-section {
    margin-top: -180px;
  }

  .car-header {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .car-header h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .car-card {
    min-width: 260px;
  }

  #prevSlide {
    left: 0px;
  }

  #nextSlide {
    right: 0px;
  }
}

/* =========================    OUR OFFERINGS SLIDER ========================= */
.offerings-section {
  overflow-x: hidden;
  background: #f5f0e8;
  padding: 80px 0 100px;
}

.offerings-section .section-title {
  font-family: var(--font-toyota);
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 48px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: center;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 100px;
}

.offerings-slider-outer {
  position: relative;
  width: 100%;
}

.offerings-stage {
  position: relative;
  width: 100%;
}

.offerings-white-row {
  margin: auto;
  display: flex;
  gap: 20px;
  width: 85%;
}

.offering-white-card {
  flex: 1;
  background: #fff;
  border-radius: 28px;
  padding: 40px 32px 36px;
  box-sizing: border-box;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  cursor: pointer;
  transition: box-shadow 0.3s;
}

.offering-white-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
}

.offering-dark-card {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 45%;
  min-height: 450px;
  background: #2c353b;
  border-radius: 40px;
  padding: 44px 36px 38px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.4);
  z-index: 5;
}

.offering-logo {
  margin-bottom: 16px;
}

.kinto-logo-img {
  width: 55%;
  height: 38px;
  object-fit: contain;
  display: block;
}

.offering-logo-text {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.5px;
}

.offering-logo-text .kinto-teal {
  color: #00708d;
}

.offering-logo-text .kinto-light {
  color: #a6cdd7;
}

.offering-logo-text .sub {
  width: 57%;
  display: flex !important;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin-top: 6px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  justify-content: flex-end;
}

.offering-white-card .offering-logo-text .kinto-teal {
  color: #00708d;
}

.offering-white-card .offering-logo-text .kinto-light {
  color: #a6cdd7;
}

.offering-white-card .offering-logo-text .sub {
  color: #aaa;
}

.offering-dark-card .offering-logo-text .kinto-teal {
  color: #fff;
}

.offering-dark-card .offering-logo-text .kinto-light {
  color: #a6cdd7;
}

.offering-dark-card .offering-logo-text .sub {
  color: #eeeff0;
}

.offering-desc {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.65;
  font-family: var(--font-toyota);
  font-weight: 400;
  font-style: Semi Bold;
  flex-grow: 1;
  margin: 16px 0 28px;
}

.offering-white-card .offering-desc {
  color: #555;
  font-family: var(--font-toyota);
  font-weight: 400;
  font-style: Semi Bold;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: left;
}

.offering-dark-card .offering-desc {
  color: #ddd;
}

.offering-learn-btn {
  font-family: var(--font-toyota);
  display: block;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  padding: 15px;
  border-radius: 100px;
  transition: background 0.3s;
}

.offering-white-card .offering-learn-btn {
  background: #00708d;
  color: #fff;
}

.offering-white-card .offering-learn-btn:hover {
  background: #005a73;
}

.offering-dark-card .offering-learn-btn {
  background: #fff;
  color: #2c353b;
}

.offering-dark-card .offering-learn-btn:hover {
  background: #e8e8e8;
}

.offerings-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(180, 180, 180, 0.55);
  border: none;
  color: #444;
  font-size: 28px;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  transition: background 0.3s, opacity 0.3s;
  line-height: 1;
}

.offerings-arrow:hover {
  background: rgba(200, 200, 200, 0.9);
}

.offerings-arrow.disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

#offeringPrev {
  left: 0px;
}

#offeringNext {
  right: 0px;
}

.offerings-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 52px;
}

.offerings-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  border: none;
  padding: 0;
}

.offerings-dot.active {
  background: #00708d;
  width: 28px;
  border-radius: 4px;
}

@keyframes darkIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(16px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.offering-dark-card.anim {
  animation: darkIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@media (max-width: 1100px) {
  .offering-dark-card {
    width: 60%;
  }
}

@media (max-width: 860px) {
  .offering-dark-card {
    width: 72%;
  }

  #offeringPrev {
    left: -40px;
  }

  #offeringNext {
    right: -40px;
  }
}

@media (max-width: 640px) {
  .offerings-white-row {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  #whiteRight {
    display: none;
  }

  #whiteLeft {
    flex: none;
    width: 85%;
  }

  #whiteLeft {
    width: 80%;
    margin: auto;
  }

  .offering-dark-card {
    width: 86%;
    top: 50px;
  }

  .offering-white-card {
    min-height: 320px;
    padding: 26px 16px 22px;
  }

  .offering-dark-card {
    min-height: 380px;
    padding: 32px 22px 28px;
  }

  .offering-desc {
    font-size: 15px;
  }

  .offering-logo-text {
    font-size: 20px;
  }

  #offeringPrev {
    left: 0px;
  }

  #offeringNext {
    right: 0px;
  }
}

/* =========================
SECTION : Steps Slider 
========================= */
.process-video::-webkit-media-controls,
.process-video::-webkit-media-controls-panel,
.process-video::-webkit-media-controls-play-button,
.process-video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.process-wrapper {
  height: 500vh;
  /* 5 steps scroll */
  position: relative;
}

.process-section {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.process-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.process-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.process-content {
  position: relative;
  z-index: 3;
  max-width: 500px;
  margin-right: 120px;
  color: #fff;
}

.step-number {
  font-family: var(--font-toyota);
  font-size: 90px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-title {
  font-family: var(--font-toyota);
  font-size: 42px;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 18px;
  line-height: 1.6;
}

/* animation */

.slide-up {
  animation: slideUp 0.6s ease;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .process-content {
    margin-right: 60px;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

  }

  .step-title {

    font-size: 30px;

  }
}

/* =========================
SECTION : CUSTOMER TESTIMONIALS
========================= */

.testimonial-section {
  background: #2c353b;
  border-radius: 80px 80px 0 0;

  padding: 80px 40px;

  color: #fff;
}

.testimonial-container {
  max-width: 1400px;
  margin: auto;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 60px;
}

.testimonial-header h2 {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
}

.testimonial-nav {
  display: flex;
  gap: 16px;
}

.nav-btn {
  width: 64px;
  height: 64px;

  background: rgba(255, 255, 255, 0.2);

  border: none;
  border-radius: 40px;

  color: #fff;

  font-size: 28px;

  cursor: pointer;
}

/* CUSTOMER TESTIMONIALS */

.testimonial-slider {
  display: flex;

  gap: 24px;

  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 520px;

  background: rgba(255, 255, 255, 0.12);

  border-radius: 16px;

  padding: 24px;

  display: flex;
  flex-direction: column;

  gap: 16px;

  transition: all 0.35s ease;
  backdrop-filter: blur(6px);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.18);
}

.stars {
  color: #00c781;
  font-size: 20px;

  transition: transform 0.3s ease;
}

.testimonial-card:hover .stars {
  transform: scale(1.1);
}

.testimonial-card p {
  font-family: var(--font-toyota);
  font-size: 18px;
  line-height: 28px;
  color: #cccccc;
}

.user {
  display: flex;
  align-items: center;

  gap: 10px;
}

.user img {
  width: 56px;
  height: 56px;

  border-radius: 50%;

  transition: transform 0.3s ease;
}

.testimonial-card:hover .user img {
  transform: scale(1.1);
}

.user h4 {
  font-family: var(--font-toyota);
  font-size: 16px;
  margin: 0;
}

.user span {
  font-family: var(--font-toyota);
  font-size: 12px;
  color: #cccccc;
}

@media (max-width: 992px) {
  .testimonial-header h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .testimonial-card {
    min-width: 320px;
  }
}

@media (max-width: 768px) {
  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .testimonial-slider {
    gap: 16px;
  }

  .testimonial-card {
    min-width: 280px;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 60px 20px;
  }

  .testimonial-header h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .nav-btn {
    width: 48px;
    height: 48px;
  }
}

/* =========================
SECTION : PROMO NEWSLETTER
========================= */

.promo-section {
  position: relative;

  padding: 80px 20px;

  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
}

.promo-container {
  max-width: 640px;

  width: 100%;
}

.promo-container h2 {
  font-family: "Inter", sans-serif;

  font-weight: 600;

  font-size: 48px;

  line-height: 60px;

  margin-bottom: 10px;

  color: #000;
}

.promo-container p {
  font-family: "Inter", sans-serif;

  font-size: 20px;

  color: rgba(0, 0, 0, 0.8);

  margin-bottom: 30px;
}

.promo-form {
  display: flex;

  gap: 20px;

  justify-content: center;

  align-items: center;
}

.promo-form input {
  flex: 1;

  height: 56px;

  padding: 0 16px;

  border: 1px solid #79747e;

  border-radius: 4px;

  font-size: 16px;

  outline: none;
}

.promo-btn {
  height: 56px;
  font-family: var(--font-toyota);
  padding: 0 28px;
  background: #00708d;
  border: none;
  border-radius: 30px;
  color: #eeeff0;

  font-weight: 600;

  font-size: 16px;

  text-transform: uppercase;

  cursor: pointer;
}

.promo-btn:hover {
  background: #005c73;
}

@media (max-width: 992px) {
  .promo-container h2 {
    font-size: 36px;
    line-height: 46px;
  }
}

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

  .promo-form input {
    padding: 16px 16px;
    width: 100%;
  }

  .promo-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .promo-container h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .promo-container p {
    font-size: 16px;
  }
}

/* =========================
DISCLAIMER SECTION
========================= */

.disclaimer-section {
  padding: 40px 20px;

  background: #f5f5f5;
}

.container {
  max-width: 1400px;
  margin: auto;
}

.disclaimer-p p {
  font-family: var(--font-toyota);
  font-weight: 700;
  font-style: Bold;
  font-size: 12px;

  color: #404040;
  text-align: left;
}

/* ─────────────────────────────
   SECTION : KINTO ADVANTAGE 
───────────────────────────── */
.kinto-advantage {
  padding: 80px 124px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}

@media (max-width: 1400px) {
  .kinto-advantage {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .kinto-advantage {
    padding: 40px 16px;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .kinto-advantage {
    padding: 32px 12px;
    gap: 24px;
  }
}

/* ─────────────────────────────
   HEADER
───────────────────────────── */
.kinto-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.kinto-header h2 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.25;
  text-align: center;
  color: #000;
}

.kinto-header p {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 20px);
  line-height: 1.5;
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
}

/* ─────────────────────────────
   DIAGRAM
   --scale drives everything
───────────────────────────── */
.kinto-diagram {
  --scale: 1;
  --w: 1264px;
  --h: 578px;

  position: relative;
  width: calc(var(--w) * var(--scale));
  height: calc(var(--h) * var(--scale));
  margin: 0 auto;
  overflow: visible;
}

/* Scale breakpoints — goes all the way down to mobile */
@media (max-width: 1400px) {
  .kinto-diagram {
    --scale: 0.82;
  }
}

@media (max-width: 1100px) {
  .kinto-diagram {
    --scale: 0.64;
  }
}

@media (max-width: 900px) {
  .kinto-diagram {
    --scale: 0.50;
  }
}

@media (max-width: 768px) {
  .kinto-diagram {
    --scale: 0.38;
  }
}

@media (max-width: 540px) {
  .kinto-diagram {
    --scale: 0.30;
  }
}

@media (max-width: 420px) {
  .kinto-diagram {
    --scale: 0.24;
  }
}

@media (max-width: 360px) {
  .kinto-diagram {
    --scale: 0.20;
  }
}

/* ─────────────────────────────
   CONNECTORS
───────────────────────────── */
.connector {
  position: absolute;
  background: #EEEFF0;
  border-radius: 20px;
  pointer-events: none;
}

.conn-top {
  width: calc(8px * var(--scale));
  height: calc(88px * var(--scale));
  left: calc((632px - 4px) * var(--scale));
  top: calc(68px * var(--scale));
}

.conn-bottom {
  width: calc(8px * var(--scale));
  height: calc(88px * var(--scale));
  left: calc((632px - 4px) * var(--scale));
  top: calc(423px * var(--scale));
  background: #F2EEE2;
}

.conn-left {
  height: calc(8px * var(--scale));
  width: calc(87px * var(--scale));
  left: calc(201px * var(--scale));
  top: calc((289px - 4px) * var(--scale));
}

.conn-right {
  height: calc(8px * var(--scale));
  width: calc(88px * var(--scale));
  left: calc(941px * var(--scale));
  top: calc((289px - 4px) * var(--scale));
}

/* ─────────────────────────────
   RINGS
───────────────────────────── */
.ring {
  position: absolute;
  border-radius: 999px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ring-1 {
  width: calc(613px * var(--scale));
  height: calc(217px * var(--scale));
  border: calc(2px * var(--scale)) solid rgba(151, 147, 136, .80);
}

.ring-2 {
  width: calc(635px * var(--scale));
  height: calc(233px * var(--scale));
  border: calc(1px * var(--scale)) solid rgba(151, 147, 136, .70);
}

.ring-3 {
  width: calc(661px * var(--scale));
  height: calc(250px * var(--scale));
  border: calc(.5px * var(--scale)) solid rgba(151, 147, 136, .60);
}

.ring-4 {
  width: calc(688px * var(--scale));
  height: calc(267px * var(--scale));
  border: calc(.3px * var(--scale)) solid rgba(151, 147, 136, .50);
}

/* ─────────────────────────────
   LABELS
───────────────────────────── */
.label {
  font-family: "Inter", sans-serif;
  position: absolute;
  background: #EEEFF0;
  border-radius: calc(8px * var(--scale));
  font-weight: 600;
  text-align: center;
  color: #000;
  z-index: 4;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(20px * var(--scale));
  line-height: calc(30px * var(--scale));
  padding: calc(15px * var(--scale)) calc(30px * var(--scale));
  opacity: 0;
}

.label-top {
  width: calc(357px * var(--scale));
  left: calc((632px - 178.5px) * var(--scale));
  top: calc(8px * var(--scale));
}

.label-bottom {
  width: calc(202px * var(--scale));
  left: calc((632px - 101px) * var(--scale));
  bottom: calc(8px * var(--scale));
}

.label-left {
  width: calc(201px * var(--scale));
  left: calc(-1px * var(--scale));
  top: calc((289px - 45px) * var(--scale));
}

.label-right {
  width: calc(237px * var(--scale));
  right: calc(-1px * var(--scale));
  top: calc((289px - 45px) * var(--scale));
}

/* ─────────────────────────────
   PILL
───────────────────────────── */
.center-pill {
  position: absolute;
  width: calc(461px * var(--scale));
  height: calc(200px * var(--scale));
  top: 50%;
  transform: translateY(-50%);
  background: #F2EEE2;
  border: calc(4px * var(--scale)) solid #979388;
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  z-index: 5;
  transition: left 0.52s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
}

.center-pill {
  left: calc((632px - 230.5px) * var(--scale));
}

.center-pill.state-left {
  left: calc((632px - 230.5px - 76px) * var(--scale));
}

.center-pill.state-right {
  left: calc((632px - 230.5px + 76px) * var(--scale));
}

.center-pill:hover {
  box-shadow: 0 0 0 calc(7px * var(--scale)) rgba(151, 147, 136, 0.18);
}

.pill-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 999px;
}

.car-img {
  position: absolute;
  width: calc(500px * var(--scale));
  top: calc(-253px * var(--scale));
  left: calc(-19px * var(--scale));
  pointer-events: none;
  user-select: none;
}

.pill-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 999px;
}

.center-pill h3 {
  font-family: "Inter", sans-serif;
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: calc(60px * var(--scale));
  line-height: calc(73px * var(--scale));
  color: #fff;
  text-align: center;
  padding: 0 calc(24px * var(--scale));
  pointer-events: none;
}

/* dots */
.state-dots {

  position: absolute;
  bottom: calc(-36px * var(--scale));
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: calc(10px * var(--scale));
  z-index: 10;
}

.state-dot {
  width: calc(10px * var(--scale));
  height: calc(10px * var(--scale));
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}

.state-dot.active {
  background: #979388;
}

/* ─────────────────────────────
   ANIMATIONS
───────────────────────────── */
.label {
  opacity: 0;
  transform: scale(.6);
  transition: all .7s cubic-bezier(.2, .8, .2, 1);
}

.kinto-diagram.animate .label-top {
  animation: topIn .8s forwards;
}

.kinto-diagram.animate .label-left {
  animation: leftIn .8s forwards .15s;
}

.kinto-diagram.animate .label-right {
  animation: rightIn .8s forwards .3s;
}

.kinto-diagram.animate .label-bottom {
  animation: bottomIn .8s forwards .45s;
}

@keyframes topIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  from {
    opacity: 0;
    transform: translateY(-40px) scale(.6);
  }
}

@keyframes leftIn {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  from {
    opacity: 0;
    transform: translateX(-40px) scale(.6);
  }
}

@keyframes rightIn {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  from {
    opacity: 0;
    transform: translateX(40px) scale(.6);
  }
}

@keyframes bottomIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  from {
    opacity: 0;
    transform: translateY(40px) scale(.6);
  }
}

/* HEADER ANIMATION */
.kinto-header h2,
.kinto-header p {
  opacity: 0;
  transform: translateY(40px);
}

.kinto-advantage.animate .kinto-header h2 {
  animation: headerIn .9s forwards;
}

.kinto-advantage.animate .kinto-header p {
  animation: headerIn .9s forwards .25s;
}

@keyframes headerIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .label {
    font-size: 12px;
    line-height: 1.3em;
  }

  .label-top {
    width: calc(670px * var(--scale));
    left: calc((460px - 178.5px) * var(--scale));
    top: calc(-130px * var(--scale));
  }

  .label-right {
    width: calc(222px * var(--scale));
    right: calc(-47px * var(--scale));
    top: calc((200px - 45px) * var(--scale));
  }

  .label-left {
    width: calc(201px * var(--scale));
    left: calc(-30px * var(--scale));
    top: calc((210px - 45px) * var(--scale));
  }

  .label-bottom {
    width: calc(602px * var(--scale));
    left: calc((405px - 101px) * var(--scale));
    bottom: calc(-40px * var(--scale));
  }
}